Changeset 2045:df4cee0ce669 for plugins/maintenance
- Timestamp:
- 09/23/13 21:25:10 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/maintenance/index.php
r2044 r2045 43 43 44 44 foreach($tasks as $t) { 45 if (!empty($_POST['settings_recall_ all'])) {45 if (!empty($_POST['settings_recall_type']) && $_POST['settings_recall_type'] == 'all') { 46 46 $ts = $_POST['settings_recall_time']; 47 47 } … … 59 59 } 60 60 61 http::redirect($p_url.'&done=1&tab='.$tab );61 http::redirect($p_url.'&done=1&tab='.$tab.'#'.$tab); 62 62 } 63 63 catch(Exception $e) { … … 88 88 if (true === $code) { 89 89 $maintenance->setLog($task->id()); 90 http::redirect($p_url.'&task='.$task->id().'&done=1&tab='.$tab );90 http::redirect($p_url.'&task='.$task->id().'&done=1&tab='.$tab.'#'.$tab); 91 91 } 92 92 } … … 182 182 '</form>'. 183 183 '<p class="step-back">'. 184 '<a class="back" href="'.$p_url.'&tab='.$task->tab().' ">'.__('Back').'</a>'.184 '<a class="back" href="'.$p_url.'&tab='.$task->tab().'#'.$task->tab().'">'.__('Back').'</a>'. 185 185 '</p>'. 186 186 '</div>';
Note: See TracChangeset
for help on using the changeset viewer.