Changeset 1959:2c77682177b4 for plugins/maintenance/index.php
- Timestamp:
- 09/19/13 23:18:37 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/maintenance/index.php
r1955 r1959 70 70 dcPage::jsPageTabs($tab); 71 71 72 if ( 0){//$task) {72 if ($task && $task->ajax()) { 73 73 echo 74 74 '<script type="text/javascript">'."\n". 75 "//<![CDATA \n".75 "//<![CDATA[\n". 76 76 dcPage::jsVar('dotclear.msg.wait', __('Please wait...')). 77 77 "//]]>\n". … … 87 87 // Success message 88 88 89 if ($task && !empty($_GET['done'])) { 90 dcPage::success($task->success()); 91 } 89 $msg = $task && !empty($_GET['done']) ? dcPage::success($task->success(),true,true,false) : ''; 92 90 93 91 if ($task && ($res = $task->step()) !== null) { … … 102 100 ) 103 101 ); 102 103 echo $msg; 104 104 105 105 // Intermediate task (task required several steps) … … 135 135 ); 136 136 137 echo $msg; 138 137 139 // Simple task (with only a button to start it) 138 140
Note: See TracChangeset
for help on using the changeset viewer.