diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-12-02 10:02:08 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-12-02 10:02:08 -0800 |
commit | 94411b36585a5bdf6225b8af6ae4ee5c21d5779d (patch) | |
tree | 4442a4ae403302d150ce25cc114ec1a47fb03c31 /modules/server_add/controllers | |
parent | d2cb217e20d44d7928a0910ac0375740de163bb3 (diff) |
Fix a bunch of places where we were using "= null" instead of "IS NULL".
Diffstat (limited to 'modules/server_add/controllers')
-rw-r--r-- | modules/server_add/controllers/server_add.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/server_add/controllers/server_add.php b/modules/server_add/controllers/server_add.php index 3c3a6c2b..78e1620c 100644 --- a/modules/server_add/controllers/server_add.php +++ b/modules/server_add/controllers/server_add.php @@ -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(); |