Asset.php
[Pman.Core] / Asset.php
index b65dca0..8e18ea3 100644 (file)
--- a/Asset.php
+++ b/Asset.php
@@ -168,15 +168,14 @@ class Pman_Core_Asset extends Pman {
     function clearCompiledFilesCache()
     {
         $au = $this->getAuthUser();
-        if (!$au && !in_array($_SERVER['REMOTE_ADDR'] , array('127.0.0.1','::1')) {
+        if (!$au && !in_array($_SERVER['REMOTE_ADDR'] , array('127.0.0.1','::1'))) {
             $this->jerr("Cache can only be cleared by authenticated users");
         }
         
-        
         require_once 'System.php';
-        $mods = $this->modulesList();
         
-        foreach ($mods as $mod) {
+        $mods = $this->modulesList();
+        foreach ($mods as $module) {
             $compile_dir = $this->getCompileDir('js', $module, false);
         
             if(!empty($compile_dir)) {