Till Brehm
2016-07-06 3560c8d8e14e5ddc8a619844d9ab86d3b9d8d52e
Fixed issue in SQL lib.
1 files modified
2 ■■■ changed files
interface/lib/classes/db_mysql.inc.php 2 ●●● patch | view | raw | blame | history
interface/lib/classes/db_mysql.inc.php
@@ -563,7 +563,7 @@
        }
        
        $query = 'INSERT INTO ?? (' . $k_query . ') VALUES (' . $v_query . ')';
        return $this->query($query, true, $params + $v_params);
        return $this->query($query, true, array_merge($params, $v_params));
    }
    
    public function diffrec($record_old, $record_new) {