summaryrefslogtreecommitdiff
path: root/modules/gallery/models
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-12-22 16:22:24 -0800
committerBharat Mediratta <bharat@menalto.com>2009-12-22 16:22:24 -0800
commita6da027aad5072a85719fc9e201ee946963e74f0 (patch)
treeaf8d159d05fc4f261b77a622fe66e3fba121cde3 /modules/gallery/models
parent71e154b6748a2bedd2289133c6b4c6f3f58d3603 (diff)
The default value for $offset should always be null (according to the
new K24 ORM). Fix up a bad where tuple in the test.
Diffstat (limited to 'modules/gallery/models')
-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 e2208b73..e3d27b6d 100644
--- a/modules/gallery/models/item.php
+++ b/modules/gallery/models/item.php
@@ -634,7 +634,7 @@ class Item_Model extends ORM_MPTT {
* @param array additional where clauses
* @return object ORM_Iterator
*/
- function descendants($limit=null, $offset=0, $where=array(), $order_by=null) {
+ function descendants($limit=null, $offset=null, $where=array(), $order_by=null) {
if (empty($order_by)) {
$order_by = array($this->sort_column => $this->sort_order);
// Use id as a tie breaker