1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-21 14:21:28 +00:00

add tag dropbox to tag editor

This commit is contained in:
Andrew Dolgov
2006-12-07 10:27:34 +01:00
parent 3fd7138fc2
commit d62a3b6349
4 changed files with 63 additions and 3 deletions

View File

@@ -3039,4 +3039,14 @@
return $tags;
}
function trim_value(&$value) {
$value = trim($value);
}
function trim_array($array) {
$tmp = $array;
array_walk($tmp, 'trim_value');
return $tmp;
}
?>