summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2010-01-04 13:00:15 -0800
committerTim Almdal <tnalmdal@shaw.ca>2010-01-04 13:00:15 -0800
commit8ae0d4c196c6dbd8877f4f8c6523ee854f877669 (patch)
tree94e66998000732851d2e53daf4d5ac24cda4b0c3 /modules
parentbfcd4efe9282bc7cbaea13dd68b507c2f142f18f (diff)
Change uppercase NULL to lowercase null to match the gallery3 style guide
Diffstat (limited to 'modules')
-rw-r--r--modules/gallery/models/item.php2
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();