Changeset 5539 for trunk/interface/blog/category.php
- Timestamp:
- 03/05/08 21:02:26 (10 months ago)
- Files:
-
- 1 modified
-
trunk/interface/blog/category.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/blog/category.php
r5285 r5539 9 9 10 10 $cache = new pageCache; 11 $category = empty($suri['value']) ? 0 : getCategoryIdByLabel($blogid, $suri['value']); 12 11 if(!isset($suri['id'])) { 12 $category = empty($suri['value']) ? 0 : getCategoryIdByLabel($blogid, $suri['value']); 13 } else { 14 $category = $suri['id']; 15 $suri['value'] = getCategoryLabelById($blogid, $category); 16 } 13 17 if(!doesHaveOwnership() && getCategoryVisibility($blogid, $category) < 2) 14 18 $category = null;
