Skip to content

Commit 91ece61

Browse files
committed
update fix
1 parent 073e3f4 commit 91ece61

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

src/DB.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public function query($sql, $bind = null, $args = null, $style = null) {
152152
public function update($sql_or_table = '', $info = [], $where = '', $bind = '') {
153153
if ($this->sql_is($sql_or_table, 'update')) {
154154
return $this->run($sql_or_table, $info);
155-
} else {
155+
} else if (is_array($info)) {
156156
$sql_or_table = $this->_prefix . $sql_or_table;
157157
$fields = $this->get_fields($sql_or_table, array_keys($info));
158158
$fieldSize = sizeof($fields);
@@ -174,6 +174,10 @@ public function update($sql_or_table = '', $info = [], $where = '', $bind = '')
174174
}
175175

176176
return $this->run($sql, $bind);
177+
} else {
178+
$this->_error = 'Invalid update parameters';
179+
$this->debug();
180+
return false;
177181
}
178182
}
179183

src/Model.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -310,19 +310,19 @@ public static function create_filter($info, &$binds = [], $prepend = 'AND') {
310310
* Returns the number of rows affected
311311
*/
312312
public function update($arg1, $arg2 = null) {
313+
if (!$arg1) return false;
314+
313315
$model = self::_get_model_info();
314316
if (!$model) return false;
315317

316318
$table = $model['table'];
317319
$pk = $model['pk'];
318320
$data = [];
319321

320-
if (isset($arg1) && !isset($arg2)) {
321-
$data = $arg1;
322-
} elseif (isset($arg2)) {
322+
if (is_string($arg1)) {
323323
$data[$arg1] = $arg2;
324324
} else {
325-
return false;
325+
$data = $arg1;
326326
}
327327

328328
$updated = self::$db->update($table, $data, "$pk = :pk", [':pk' => $this->{$pk}]);

0 commit comments

Comments
 (0)