diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-04 13:00:15 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-04 13:00:15 -0800 |
commit | 8ae0d4c196c6dbd8877f4f8c6523ee854f877669 (patch) | |
tree | 94e66998000732851d2e53daf4d5ac24cda4b0c3 /modules/gallery/models | |
parent | bfcd4efe9282bc7cbaea13dd68b507c2f142f18f (diff) |
Change uppercase NULL to lowercase null to match the gallery3 style guide
Diffstat (limited to 'modules/gallery/models')
-rw-r--r-- | modules/gallery/models/item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/models/item.php b/modules/gallery/models/item.php index dac939de..4a3d26e9 100644 --- a/modules/gallery/models/item.php +++ b/modules/gallery/models/item.php @@ -460,7 +460,7 @@ class Item_Model extends ORM_MPTT { // deal with it the hard way. $count = $db->from("items") ->where("parent_id", "=", $this->id) - ->where($this->sort_column, "IS", NULL) + ->where($this->sort_column, "IS", null) ->merge_where($where) ->count_records(); |