summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--codebase/db_common.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/codebase/db_common.php b/codebase/db_common.php
index 76ac179..4fe5f77 100644
--- a/codebase/db_common.php
+++ b/codebase/db_common.php
@@ -656,10 +656,10 @@ abstract class DBDataWrapper extends DataWrapper{
$id = $this->config->id["db_name"];
$idvalue = $action->get_new_id();
- $max = $this->queryOne("SELECT MAX($order) as maxvalue FROM $table");
- $maxvalue = $max["maxvalue"] + 1;
+ $max = $this->queryOne("SELECT MAX($order) as dhx_maxvalue FROM $table");
+ $dhx_maxvalue = $max["dhx_maxvalue"] + 1;
- $this->query("UPDATE $table SET $order = $maxvalue WHERE $id = $idvalue");
+ $this->query("UPDATE $table SET $order = $dhx_maxvalue WHERE $id = $idvalue");
}
}