Changeset 2045:df4cee0ce669
- Timestamp:
 - 09/23/13 21:25:10 (12 years ago)
 - Branch:
 - default
 - Files:
 - 
          
- 4 edited
 
- 
          locales/en/plugins.po (modified) (1 diff)
 - 
          locales/fr/plugins.po (modified) (1 diff)
 - 
          plugins/importExport/index.php (modified) (1 diff)
 - 
          plugins/maintenance/index.php (modified) (4 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
locales/en/plugins.po
r2044 r2045 883 883 msgstr "" 884 884 885 msgid "Export functions are in the page %s." 886 msgstr "" 887 885 888 #, php-format 886 889 msgid "This will import your WordPress content as new content in the current blog: %s."  - 
        
locales/fr/plugins.po
r2044 r2045 1111 1111 1112 1112 #, php-format 1113 msgid "Export functions are in the page %s." 1114 msgstr "Les fonctions d'export sont dans la page de %s." 1115 1116 #, php-format 1113 1117 msgid "This will import your WordPress content as new content in the current blog: %s." 1114 1118 msgstr "Cela importera le contenu WordPress comme un nouveau contenu dans le blog courant : %s."  - 
        
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.
      