浏览代码

fixed check install

Piotr Labudda 8 年之前
父节点
当前提交
53af2e5968
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. 6 6
      SE/se-lib/Route/Cron.php

+ 6 - 6
SE/se-lib/Route/Cron.php

@@ -188,6 +188,12 @@ class Route_Cron extends RouteBase {
 
 	public function checkInstallAction() {
 		Lib::loadClass('Router');
+		{
+			ob_start();
+			Router::getRoute('Status')->updateObjectCachePostTask();
+			$out = ob_get_clean();
+			echo " - Storage acl cache checked\n";
+		}
 		$routeToReinstallList = array();
 		//$routeToReinstallList[] = 'Config';// Config must work before (url token)
 		$routeToReinstallList[] = 'Msgs';
@@ -202,12 +208,6 @@ class Route_Cron extends RouteBase {
 			$route->reinstall();
 			echo " - {$routeName} checked\n";
 		}
-		{
-			ob_start();
-			Router::getRoute('Status')->updateObjectCachePostTask();
-			$out = ob_get_clean();
-			echo " - Storage acl cache checked\n";
-		}
 		echo "\n.EOF\n";
 	}