Marius Cramer
2015-11-15 bc09783c350c49a1b85212a16a89d285da647781
- Fixed mysql library (server version)
1 files modified
2 ■■■ changed files
server/lib/classes/db_mysql.inc.php 2 ●●● patch | view | raw | blame | history
server/lib/classes/db_mysql.inc.php
@@ -648,7 +648,7 @@
        
        $old_rec = array();
        $index_value = $this->insertID();
        $new_rec = $this->queryOneRecord("SELECT * FROM ?? WHERE ? = ?", $tablename, $index_field, $index_value);
        $new_rec = $this->queryOneRecord("SELECT * FROM ?? WHERE ?? = ?", $tablename, $index_field, $index_value);
        $this->datalogSave($tablename, 'INSERT', $index_field, $index_value, $old_rec, $new_rec);
        return $index_value;