diff options
author | xue <> | 2006-05-30 03:30:14 +0000 |
---|---|---|
committer | xue <> | 2006-05-30 03:30:14 +0000 |
commit | 75f28186a995aa930f6db9f05ec7b63bbd2cd284 (patch) | |
tree | 9621a9db8c69daf951f87fb57996428d57d710a6 /demos/blog/protected/Portlets/LoginPortlet.php | |
parent | 2ea02214b2fb6bedb58dbbd318ef171a9e146524 (diff) |
Merge from 3.0 branch till 1103
Diffstat (limited to 'demos/blog/protected/Portlets/LoginPortlet.php')
-rw-r--r-- | demos/blog/protected/Portlets/LoginPortlet.php | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/demos/blog/protected/Portlets/LoginPortlet.php b/demos/blog/protected/Portlets/LoginPortlet.php index 0085c17f..ae9373cb 100644 --- a/demos/blog/protected/Portlets/LoginPortlet.php +++ b/demos/blog/protected/Portlets/LoginPortlet.php @@ -1,13 +1,30 @@ <?php
+/**
+ * LoginPortlet class file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright © 2006 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Revision: $ $Date: $
+ */
Prado::using('Application.Portlets.Portlet');
+/**
+ * LoginPortlet class
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright © 2006 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ */
class LoginPortlet extends Portlet
{
public function validateUser($sender,$param)
{
$authManager=$this->Application->getModule('auth');
- if(!$authManager->login($this->Username->Text,$this->Password->Text))
+ if(!$authManager->login(strtolower($this->Username->Text),$this->Password->Text))
$param->IsValid=false;
}
|