Commit 8f36a33f authored by Jeffrey Way's avatar Jeffrey Way

Small bug fix

parent f4925894
...@@ -189,7 +189,6 @@ class MysqlDB { ...@@ -189,7 +189,6 @@ class MysqlDB {
} }
// Determine if is INSERT query // Determine if is INSERT query
if ($hasTableData && $this->_crudType == 'insert') { if ($hasTableData && $this->_crudType == 'insert') {
if ( $this->_crudType == 'insert' ) {
$keys = array_keys($tableData); $keys = array_keys($tableData);
$values = array_values($tableData); $values = array_values($tableData);
$num = count($keys); $num = count($keys);
...@@ -207,7 +206,6 @@ class MysqlDB { ...@@ -207,7 +206,6 @@ class MysqlDB {
$num--; $num--;
} }
} }
}
// Did the user set a limit // Did the user set a limit
if (isset($numRows)) { if (isset($numRows)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment