Changeset 1662:be1cbef7145c
- Timestamp:
- 08/31/13 11:10:09 (10 years ago)
- Branch:
- Ticket #1604 - widgets
- Children:
- 1663:5577f8054312, 1667:e3a815f11f70
- Parents:
- 1661:14832508668c (diff), 1638:9a3c2618fa60 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/categories.php
r1636 r1662 87 87 $rs = $core->blog->getCategories(array('post_type'=>'post')); 88 88 89 $starting_script = dcPage::jsToolMan()."\n";89 $starting_script = ""; 90 90 if (!$core->auth->user_prefs->accessibility->nodragdrop 91 91 && $core->auth->check('categories',$core->blog->id) 92 92 && $rs->count()>1) { 93 94 $starting_script .= dcPage::jsLoad('js/jquery/jquery.mjs.nestedSortable.js');93 $starting_script .= dcPage::jsLoad('js/jquery/jquery-ui.custom.js'); 94 $starting_script .= dcPage::jsLoad('js/jquery/jquery.mjs.nestedSortable.js'); 95 95 } 96 96 $starting_script .= dcPage::jsLoad('js/_categories.js'); -
admin/categories.php
r1655 r1662 91 91 && $core->auth->check('categories',$core->blog->id) 92 92 && $rs->count()>1) { 93 93 $starting_script .= dcPage::jsLoad('js/jquery/jquery-ui.custom.js'); 94 94 $starting_script .= dcPage::jsLoad('js/jquery/jquery.mjs.nestedSortable.js'); 95 95 } … … 133 133 if ($rs->isEmpty()) 134 134 { 135 echo '<p>'.__('No category yet.').'</p>';135 echo '<p>'.__('No category so far.').'</p>'; 136 136 } 137 137 else
Note: See TracChangeset
for help on using the changeset viewer.