mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-19 21:01:33 +00:00
truncate tags in tag editor dropbox to 20 chars
This commit is contained in:
@@ -306,7 +306,7 @@
|
|||||||
array_push($found_tags, '');
|
array_push($found_tags, '');
|
||||||
|
|
||||||
while ($line = db_fetch_assoc($result)) {
|
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'>";
|
print "<td align='right'>";
|
||||||
|
|||||||
Reference in New Issue
Block a user