Skip to content

Commit e559f3b

Browse files
author
Marius Cramer
committed
- fixed array merge
1 parent 363cb95 commit e559f3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/lib/classes/modules.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ function processDatalog() {
141141
$f_params[] = $fieldname;
142142
$params[] = $val;
143143
}
144-
$params = $f_params + $params;
144+
$params = array_merge($f_params, $params);
145145
unset($f_params);
146146

147147
$tmp_sql1 = substr($tmp_sql1, 0, -1);

0 commit comments

Comments
 (0)