Changeset 782:01efbf050a8a for admin/posts_actions.php
- Timestamp:
- 12/06/11 11:43:14 (14 years ago)
- Branch:
- formfilters
- Parents:
- 781:b509ac00bf4a (diff), 779:58c45f1b96e5 (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/posts_actions.php
r500 r782 31 31 { 32 32 $redir = 33 'posts.php?user_id='.$_POST['user_id']. 34 '&cat_id='.$_POST['cat_id']. 35 '&status='.$_POST['status']. 36 '&selected='.$_POST['selected']. 37 '&month='.$_POST['month']. 38 '&lang='.$_POST['lang']. 39 '&sortby='.$_POST['sortby']. 40 '&order='.$_POST['order']. 41 '&page='.$_POST['page']. 42 '&nb='.$_POST['nb']; 33 'posts.php?'.urldecode($_POST['f_query']); 43 34 } 44 35 -
admin/posts_actions.php
r780 r782 4 4 # This file is part of Dotclear 2. 5 5 # 6 # Copyright (c) 2003-201 0Olivier Meunier & Association Dotclear6 # Copyright (c) 2003-2011 Olivier Meunier & Association Dotclear 7 7 # Licensed under the GPL version 2.0 license. 8 8 # See LICENSE file or … … 198 198 if ($action == 'category') 199 199 { 200 echo '<h2 >'.__('Change category for entries').'</h2>';200 echo '<h2 class="page-title">'.__('Change category for entries').'</h2>'; 201 201 202 202 # categories list … … 207 207 while ($categories->fetch()) { 208 208 $categories_combo[] = new formSelectOption( 209 str_repeat(' ',$categories->level-1).'• '.html::escapeHTML($categories->cat_title), 209 str_repeat(' ',$categories->level-1). 210 ($categories->level-1 == 0 ? '' : '• ').html::escapeHTML($categories->cat_title), 210 211 $categories->cat_id 211 212 ); … … 228 229 elseif ($action == 'author' && $core->auth->check('admin',$core->blog->id)) 229 230 { 230 echo '<h2 >'.__('Change author for entries').'</h2>';231 echo '<h2 class="page-title">'.__('Change author for entries').'</h2>'; 231 232 232 233 echo
Note: See TracChangeset
for help on using the changeset viewer.