From: <be...@us...> - 2012-05-20 03:42:42
|
Revision: 9555 http://xoops.svn.sourceforge.net/xoops/?rev=9555&view=rev Author: beckmi Date: 2012-05-20 03:42:36 +0000 (Sun, 20 May 2012) Log Message: ----------- Fixing wrong links to Maintenance class Modified Paths: -------------- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/preferences/main.php Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/preferences/main.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/preferences/main.php 2012-05-20 03:27:30 UTC (rev 9554) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/preferences/main.php 2012-05-20 03:42:36 UTC (rev 9555) @@ -164,8 +164,8 @@ // Clean cached files, may take long time // User reigister_shutdown_function to keep running after connection closes so that cleaning cached files can be finished // Cache management should be performed on a separate page - require_once $xoops->path('modules/system/class/maintenance.php'); - $maintenance = new SystemMaintenance(); + require_once $xoops->path('modules/maintenance/class/maintenance.php'); + $maintenance = new Maintenance(); $options = array(1); //1 goes for cache //register_shutdown_function( array( &$xoopsTpl, 'clear_all_cache' ) ); register_shutdown_function(array(&$maintenance, 'CleanCache'), $options); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |