From 3844b14dff2e7963c03ac4e0ff0f1ffcf9213246 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Sun, 13 Mar 2011 21:58:35 +0800 Subject: [PATCH] Pman/Login.php --- Pman/Login.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Pman/Login.php b/Pman/Login.php index 0a19f69..cfc7824 100644 --- a/Pman/Login.php +++ b/Pman/Login.php @@ -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'; } -- 2.39.2