diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-07-29 19:41:03 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-07-29 19:41:03 -0700 |
commit | 3f48f17e541cb69fdfd1ce0043121969cb98b28b (patch) | |
tree | 6e0650eaddac55d9e51eea3bf3df4c00f5bad8de /modules/gallery | |
parent | ebbb73787d6f935354478d4bdbe626c163c90a9c (diff) |
We don't care about the name and slug for the root album so don't bother enforcing them.
Diffstat (limited to 'modules/gallery')
-rw-r--r-- | modules/gallery/models/item.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gallery/models/item.php b/modules/gallery/models/item.php index eb200fa5..c00b7972 100644 --- a/modules/gallery/models/item.php +++ b/modules/gallery/models/item.php @@ -760,9 +760,9 @@ class Item_Model extends ORM_MPTT { // Conditional rules if ($this->id == 1) { - // Root album can't have a name or slug so replace the rules - $this->rules["name"] = array("rules" => array("length[0]")); - $this->rules["slug"] = array("rules" => array("length[0]")); + // We don't care about the name and slug for the root album. + $this->rules["name"] = array(); + $this->rules["slug"] = array(); } // Movies and photos must have data files |