- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/category.php
r3024 r3209 46 46 47 47 # Allowed parents list 48 $children = $core->blog->getCategories(array(' post_type'=>'post','start'=>$cat_id));48 $children = $core->blog->getCategories(array('start'=>$cat_id)); 49 49 $allowed_parents = array(__('Top level')=>0); 50 50 … … 54 54 } 55 55 56 $rs = $core->blog->getCategories( array('post_type'=>'post'));56 $rs = $core->blog->getCategories(); 57 57 while ($rs->fetch()) { 58 58 if (!isset($p[$rs->cat_id])) { … … 195 195 if (!$cat_id) 196 196 { 197 $rs = $core->blog->getCategories( array('post_type'=>'post'));197 $rs = $core->blog->getCategories(); 198 198 echo 199 199 '<p><label for="new_cat_parent">'.__('Parent:').' '.
Note: See TracChangeset
for help on using the changeset viewer.