Changeset 780:a80ff8f1c92a for admin
- Timestamp:
- 12/06/11 10:53:56 (14 years ago)
- Branch:
- formfilters
- Location:
- admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/comments.php
r764 r780 86 86 $authorFilter->setValue($_GET['author']); 87 87 } 88 $with_spam=true; 88 89 /* Get comments 89 90 -------------------------------------------------------- */ … … 145 146 $core->formNonce(). 146 147 '<input type="submit" value="'.__('ok').'" /></p>'. 147 form::hidden(array('type'),$type). 148 form::hidden(array('author'),preg_replace('/%/','%%',$author)). 149 form::hidden(array('status'),$status). 150 form::hidden(array('ip'),preg_replace('/%/','%%',$ip)). 148 str_replace('%','%%',$filterSet->getFormFieldsAsHidden()). 151 149 '</div>'. 152 150 -
admin/comments_actions.php
r0 r780 30 30 { 31 31 $redir = 32 'comments.php?type='.$_POST['type']. 33 '&author='.$_POST['author']. 34 '&status='.$_POST['status']. 35 '&sortby='.$_POST['sortby']. 36 '&ip='.$_POST['ip']. 37 '&order='.$_POST['order']. 38 '&page='.$_POST['page']. 39 '&nb='.(integer) $_POST['nb']; 32 'comments.php?'.urldecode($_POST['f_query']); 40 33 } 41 34 -
admin/posts.php
r764 r780 199 199 form::combo('action',$combo_action). 200 200 '<input type="submit" value="'.__('ok').'" /></p>'. 201 $filterSet->getFormFieldsAsHidden().201 str_replace('%','%%',$filterSet->getFormFieldsAsHidden()). 202 202 $core->formNonce(). 203 203 '</div>'. -
admin/posts_actions.php
r217 r780 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
Note: See TracChangeset
for help on using the changeset viewer.