summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-11 18:21:34 +0400
committerAndrew Dolgov <[email protected]>2011-12-11 18:21:34 +0400
commit3415b07556407947ca50bb9aa2058601d0c98cf9 (patch)
tree76b717e69066746bba66a712ea0785d1a25d91e0 /functions.php
parentf37e541a8f6ae5dc0955e0bf4e90e86dd7537e1d (diff)
fix trim_array()
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index cad0b21c3..16672a9ee 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;
}