- Timestamp:
- Jan 13, 2009, 7:53:00 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/include/functions.php
r3049 r3072 1599 1599 * Do maintenance on all PWG tables 1600 1600 * 1601 * @return non o1601 * @return none 1602 1602 */ 1603 1603 function do_maintenance_all_tables() … … 1648 1648 array_push( 1649 1649 $page['infos'], 1650 l10n('Optimization completed')1650 l10n('Optimizations completed') 1651 1651 ); 1652 1652 } -
trunk/upgrade.php
r3049 r3072 299 299 ); 300 300 301 // Save $page['infos'] in order to restore after maintenance actions 302 $page['infos_sav'] = $page['infos']; 303 $page['infos'] = array(); 304 301 305 // c13y_upgrade plugin means "check integrity after upgrade", so it 302 306 // becomes useful just after an upgrade … … 315 319 do_maintenance_all_tables(); 316 320 321 // Restore $page['infos'] in order to hide informations messages from functions calles 322 // errors messages are not hide 323 $page['infos'] = $page['infos_sav']; 324 317 325 } 318 326 }
Note: See TracChangeset
for help on using the changeset viewer.