From: Andrew Dolgov Date: Thu, 25 Jan 2007 09:47:59 +0000 (+0100) Subject: truncate tags in tag editor dropbox to 20 chars X-Git-Tag: 1.2.8~33 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=e4609ea9a0d428b8760590ececb5c6ba5b5e3e23;p=tt-rss.git truncate tags in tag editor dropbox to 20 chars --- diff --git a/modules/popup-dialog.php b/modules/popup-dialog.php index 5549a2d7..8a3478c8 100644 --- a/modules/popup-dialog.php +++ b/modules/popup-dialog.php @@ -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 "";