From: Andrew Dolgov Date: Sun, 11 Dec 2011 14:21:34 +0000 (+0400) Subject: fix trim_array() X-Git-Tag: 1.5.8~31^2~2 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=3415b07556407947ca50bb9aa2058601d0c98cf9;p=tt-rss.git fix trim_array() --- diff --git a/functions.php b/functions.php index cad0b21c..16672a9e 100644 --- a/functions.php +++ b/functions.php @@ -4512,7 +4512,7 @@ function trim_array($array) { $tmp = $array; - array_walk($tmp, 'trim_value'); + array_walk($tmp, 'trim'); return $tmp; }