diff --git a/system/Model.php b/system/Model.php index 64c193dc1638..a039e4fb599d 100644 --- a/system/Model.php +++ b/system/Model.php @@ -740,7 +740,7 @@ public function update($id = null, $data = null): bool { $escape = null; - if (is_numeric($id)) + if (is_numeric($id) || is_string($id)) { $id = [$id]; }