mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-22 23:05:18 -04:00
Fix a bunch of places where we were using "= null" instead of "IS NULL".
This commit is contained in:
@@ -198,7 +198,7 @@ class Server_Add_Controller extends Admin_Controller {
|
||||
// they're done.
|
||||
$entries = ORM::factory("server_add_file")
|
||||
->where("task_id", "=", $task->id)
|
||||
->where("item_id", "=", null)
|
||||
->where("item_id", "IS", null)
|
||||
->order_by("id", "ASC")
|
||||
->limit(10)
|
||||
->find_all();
|
||||
|
||||
Reference in New Issue
Block a user