Changeset 2720:bc400ebfc2e9 for admin/search.php
- Timestamp:
- 06/19/14 16:56:47 (11 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/search.php
r2566 r2720 70 70 71 71 if ($qtype == 'p') { 72 $posts_actions_page = new dcPostsActionsPage($core, 'search.php',array('q'=>$q,'qtype'=>$qtype));72 $posts_actions_page = new dcPostsActionsPage($core,$core->adminurl->get("admin.search"),array('q'=>$q,'qtype'=>$qtype)); 73 73 74 74 if ($posts_actions_page->process()) { … … 76 76 } 77 77 } else { 78 $comments_actions_page = new dcCommentsActionsPage($core, 'search.php',array('q'=>$q,'qtype'=>$qtype));78 $comments_actions_page = new dcCommentsActionsPage($core,$core->adminurl->get("admin.search"),array('q'=>$q,'qtype'=>$qtype)); 79 79 80 80 if ($comments_actions_page->process()) { … … 92 92 93 93 echo 94 '<form action=" search.php" method="get">'.94 '<form action="'.$core->adminurl->get("admin.search").'" method="get">'. 95 95 '<div class="fieldset"><h3>'.__('Search options').'</h3>'. 96 96 '<p><label for="q">'.__('Query:').' </label>'.form::field('q',30,255,html::escapeHTML($q)).'</p>'. … … 116 116 117 117 $post_list->display($page,$nb_per_page, 118 '<form action=" search.php" method="post" id="form-entries">'.118 '<form action="'.$core->adminurl->get("admin.search").'" method="post" id="form-entries">'. 119 119 120 120 '%s'. … … 144 144 145 145 $comment_list->display($page,$nb_per_page, 146 '<form action=" search.php" method="post" id="form-comments">'.146 '<form action="'.$core->adminurl->get("admin.search").'" method="post" id="form-comments">'. 147 147 148 148 '%s'.
Note: See TracChangeset
for help on using the changeset viewer.