diff options
author | Evan Prodromou <evan@controlezvous.ca> | 2008-06-24 18:10:54 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlezvous.ca> | 2008-06-24 18:10:54 -0400 |
commit | 96e6df323bf1b0b15a50ed56f1526180bfb33093 (patch) | |
tree | 886621a37bc7f6df7c88ba87899ce51e75f3bfe3 | |
parent | ae18afc070df751d948ef553ced1dc5da90440b7 (diff) |
slightly different from settingsaction
darcs-hash:20080624221054-34904-732acfe742c0b1c5e71b604660aa2e657c68a4d4.gz
-rw-r--r-- | actions/recoverpassword.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php index 4d1dd6f44..9be3c4580 100644 --- a/actions/recoverpassword.php +++ b/actions/recoverpassword.php @@ -82,7 +82,7 @@ class RecoverpasswordAction extends Action { function show_top($msg=NULL) { if ($msg) { - $this->message($msg, $success); + common_element('div', 'error', $msg); } else { common_element('div', 'instructions', _t('If you\'ve forgotten or lost your' . @@ -94,7 +94,7 @@ class RecoverpasswordAction extends Action { function show_password_top($msg=NULL) { if ($msg) { - $this->message($msg, $success); + common_element('div', 'error', $msg); } else { common_element('div', 'instructions', _t('You\ve been identified . Enter a ' . |