diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-07-17 22:55:59 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-07-17 22:55:59 -0400 |
commit | f1fc392e2d15479730385463a68b74eacb5cbbd0 (patch) | |
tree | fef4090674581e184e17e4e443abd542238c6675 /actions/finishopenidlogin.php | |
parent | ee942a76967e8f7f92c0169c4f7f6a8493454ae3 (diff) |
Fix OpenId cancelled / error message
Thanks jeff-themovie
Diffstat (limited to 'actions/finishopenidlogin.php')
-rw-r--r-- | actions/finishopenidlogin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/finishopenidlogin.php b/actions/finishopenidlogin.php index e9f7c746b..ff0b35218 100644 --- a/actions/finishopenidlogin.php +++ b/actions/finishopenidlogin.php @@ -83,7 +83,7 @@ class FinishopenidloginAction extends Action function showContent() { if (!empty($this->message_text)) { - $this->element('p', null, $this->message); + $this->element('div', array('class' => 'error'), $this->message_text); return; } |