diff options
-rw-r--r-- | actions/login.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/login.php b/actions/login.php index c152c8770..3a93c466f 100644 --- a/actions/login.php +++ b/actions/login.php @@ -61,8 +61,8 @@ class LoginAction extends Action { function show_form($error=NULL) { common_show_header(_t('Login')); - if (!is_null($error)) { - common_element('div', array('class' => 'error'), $msg); + if ($error) { + common_element('div', array('class' => 'error'), $error); } common_element_start('form', array('method' => 'POST', 'id' => 'login', |