Pman/Login.php
authorAlan Knowles <alan@akbkhome.com>
Sun, 13 Mar 2011 13:58:35 +0000 (21:58 +0800)
committerAlan Knowles <alan@akbkhome.com>
Sun, 13 Mar 2011 13:58:35 +0000 (21:58 +0800)
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';
         }