1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

fix trim_array()

This commit is contained in:
Andrew Dolgov
2011-12-11 18:21:34 +04:00
parent f37e541a8f
commit 3415b07556

View File

@@ -4512,7 +4512,7 @@
function trim_array($array) {
$tmp = $array;
array_walk($tmp, 'trim_value');
array_walk($tmp, 'trim');
return $tmp;
}