Pman/Login.php
[Pman.Base] / Pman / Login.php
index 0a19f69..cfc7824 100644 (file)
@@ -111,7 +111,10 @@ class Pman_Login extends Pman
         // basically calls Pman_MODULE_Login::sendAuthUserDetails($aur) on all the modules
         foreach($this->modules as $m) {
             
-            if (file_exists($this->rootDir.'/Pman/'.$m.'/Login.php'))
+            if (!file_exists($this->rootDir.'/Pman/'.$m.'/Login.php')) {
+                continue;
+            }
+            $cls = 'Pman_'.$m.'_Login';
         }