Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
STYLE: refs #225 Fixed dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Ma committed Aug 11, 2011
1 parent 99e9c07 commit 3cbed06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/controllers/UserController.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ function loginAction()
{
$notifications = Zend_Registry::get('notifier')->callback("CALLBACK_CORE_AUTHENTIFICATION", array('email' => $form->getValue('email'), 'password' => $form->getValue('password')));
}
catch (Zend_Exception $exc)
catch(Zend_Exception $exc)
{
$this->getLogger()->crit($exc->getMessage());
}
Expand Down Expand Up @@ -292,7 +292,7 @@ public function validentryAction()
{
$notifications = Zend_Registry::get('notifier')->callback("CALLBACK_CORE_AUTHENTIFICATION", array('email' => $entry, 'password' => $password));
}
catch (Zend_Exception $exc)
catch(Zend_Exception $exc)
{
$this->getLogger()->crit($exc->getMessage());
}
Expand Down

0 comments on commit 3cbed06

Please sign in to comment.