truncate tags in tag editor dropbox to 20 chars

This commit is contained in:
Andrew Dolgov 2007-01-25 10:47:59 +01:00
parent 13f08f7534
commit e4609ea9a0
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@
array_push($found_tags, '');
while ($line = db_fetch_assoc($result)) {
array_push($found_tags, $line["tag_name"]);
array_push($found_tags, truncate_string($line["tag_name"], 20));
}
print "<td align='right'>";