tbrehm
2008-12-06 ba3cf0dc8b8cb4cd5ccc0d1c8e9d49f758ad5a39
Fixed y bug in replication that affected the deletion of data records.
1 files modified
2 ■■■ changed files
server/lib/classes/modules.inc.php 2 ●●● patch | view | raw | blame | history
server/lib/classes/modules.inc.php
@@ -129,7 +129,7 @@
            
                if($d["action"] == 'd') {
                    $idx = explode(":",$d["dbidx"]);
                    $sql = "DELETE FROM $d[dbtable] SET ";
                    $sql = "DELETE FROM $d[dbtable] ";
                    $sql .= " WHERE $idx[0] = $idx[1]";
                    $app->db->query($sql);
                    if($app->db->errorNumber > 0) {