Skip to content

Commit d0f4343

Browse files
committed
Fixed: FS#898 - Replication problems in multiserver setup
1 parent 11faaac commit d0f4343

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
@@ -111,7 +111,7 @@ function processDatalog() {
111111
$tmp_sql2 = '';
112112
foreach($data['new'] as $fieldname => $val) {
113113
$tmp_sql1 .= "`$fieldname`,";
114-
$tmp_sql2 .= "'$val',";
114+
$tmp_sql2 .= "'".$app->db->quote($val)."',";
115115
}
116116
$tmp_sql1 = substr($tmp_sql1,0,-1);
117117
$tmp_sql2 = substr($tmp_sql2,0,-1);

0 commit comments

Comments
 (0)