Skip to content
Snippets Groups Projects
Commit e559f3b6 authored by Marius Cramer's avatar Marius Cramer
Browse files

- fixed array merge

parent 363cb959
No related branches found
No related tags found
No related merge requests found
......@@ -141,7 +141,7 @@ class modules {
$f_params[] = $fieldname;
$params[] = $val;
}
$params = $f_params + $params;
$params = array_merge($f_params, $params);
unset($f_params);
$tmp_sql1 = substr($tmp_sql1, 0, -1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment