Changeset 2045:df4cee0ce669 for plugins
- Timestamp:
- 09/23/13 21:25:10 (12 years ago)
- Branch:
- default
- Location:
- plugins
- Files:
-
- 2 edited
-
importExport/index.php (modified) (1 diff)
-
maintenance/index.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/importExport/index.php
r1358 r2045 95 95 )); 96 96 97 echo 98 '<h3>'.__('Import').'</h3>'.listImportExportModules($core,$modules['import']). 99 '<h3>'.__('Export').'</h3>'.listImportExportModules($core,$modules['export']); 97 echo '<h3>'.__('Import').'</h3>'.listImportExportModules($core,$modules['import']); 98 //echo '<h3>'.__('Export').'</h3>'.listImportExportModules($core,$modules['export']); 100 99 } 100 101 echo 102 '<p class="info">'.sprintf( 103 __('Export functions are in the page %s.'), 104 '<a href="plugin.php?p=maintenance&tab=backup#backup">'.__('Maintenance').'</a>' 105 ).'</p>'; 101 106 102 107 echo ' -
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.
