show error messages in registration form

darcs-hash:20080528170752-84dde-86f5965c108fffe703e62bd42f6bd0eda22f1931.gz
This commit is contained in:
Evan Prodromou 2008-05-28 13:07:52 -04:00
parent 7b244b2a66
commit a954bb8c0a
1 changed files with 4 additions and 1 deletions

View File

@ -117,8 +117,11 @@ class RegisterAction extends Action {
function show_form($error=NULL) {
global $config;
common_show_header(_t('Register'));
if ($error) {
common_element('div', 'error', $error);
}
common_element_start('form', array('method' => 'POST',
'id' => 'login',
'action' => common_local_url('register')));