aboutsummaryrefslogtreecommitdiffstats
path: root/include/dba.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/dba.php')
-rw-r--r--include/dba.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/dba.php b/include/dba.php
index 3cc41ebdd..09d07322c 100644
--- a/include/dba.php
+++ b/include/dba.php
@@ -131,8 +131,8 @@ function dbesc_array_cb(&$item, $key) {
if(! function_exists('dbesc_array')) {
-function dbesc_array(&$a) {
- if(is_array($a) && count($a)) {
- array_walk($a,'dbesc_array_cb');
+function dbesc_array(&$arr) {
+ if(is_array($arr) && count($arr)) {
+ array_walk($arr,'dbesc_array_cb');
}
}} \ No newline at end of file