Changeset 3730:5c45a5df9a59 for admin/comments_actions.php
- Timestamp:
- 03/08/18 17:58:39 (7 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/comments_actions.php
r3403 r3730 11 11 # -- END LICENSE BLOCK ----------------------------------------- 12 12 13 /* ### THIS FILE IS DEPRECATED 13 /* ### THIS FILE IS DEPRECATED ### */ 14 14 /* ### IT IS ONLY USED FOR PLUGINS COMPATIBILITY ### */ 15 15 16 require dirname(__FILE__) .'/../inc/admin/prepend.php';16 require dirname(__FILE__) . '/../inc/admin/prepend.php'; 17 17 18 18 dcPage::check('usage,contentadmin'); 19 19 20 20 if (isset($_REQUEST['redir'])) { 21 $u = explode('?',$_REQUEST['redir']);22 23 24 parse_str($u[1],$args);25 26 21 $u = explode('?', $_REQUEST['redir']); 22 $uri = $u[0]; 23 if (isset($u[1])) { 24 parse_str($u[1], $args); 25 } 26 $args['redir'] = $_REQUEST['redir']; 27 27 } else { 28 $uri= $core->adminurl->get("admin.comments");29 $args=array();28 $uri = $core->adminurl->get("admin.comments"); 29 $args = array(); 30 30 } 31 31 32 $comments_actions_page = new dcCommentsActionsPage($core, $uri,$args);32 $comments_actions_page = new dcCommentsActionsPage($core, $uri, $args); 33 33 $comments_actions_page->setEnableRedirSelection(false); 34 34 $comments_actions_page->process();
Note: See TracChangeset
for help on using the changeset viewer.