Skip to content

Commit bc09783

Browse files
author
Marius Cramer
committed
- Fixed mysql library (server version)
1 parent 0e3df6c commit bc09783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/lib/classes/db_mysql.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ public function datalogInsert($tablename, $insert_data, $index_field) {
648648

649649
$old_rec = array();
650650
$index_value = $this->insertID();
651-
$new_rec = $this->queryOneRecord("SELECT * FROM ?? WHERE ? = ?", $tablename, $index_field, $index_value);
651+
$new_rec = $this->queryOneRecord("SELECT * FROM ?? WHERE ?? = ?", $tablename, $index_field, $index_value);
652652
$this->datalogSave($tablename, 'INSERT', $index_field, $index_value, $old_rec, $new_rec);
653653

654654
return $index_value;

0 commit comments

Comments
 (0)