From ec030076deaa0ac4f3f4d53a6114e60de2a62ae7 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 5 Jun 2008 16:07:59 -0400 Subject: show error correctly in login darcs-hash:20080605200759-84dde-a1e8cc5c2c6a22da80f03ef692de9d0a8dcb29fc.gz --- actions/login.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actions/login.php') 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', -- cgit v1.2.3-54-g00ecf