Thingy view template now has access to field_dateCreated and field_lastUpdated for Things

This commit is contained in:
Kaleb Murphy 2008-09-17 16:31:31 +00:00
parent eca9729d94
commit 9e9fc14983
3 changed files with 10 additions and 4 deletions

View file

@ -222,11 +222,11 @@ sub createAccountSave {
# Validate input
my $error;
$error = $self->error unless($self->validUsername($username));
if ($setting->get("webguiUseCaptcha")) {
unless ($form->process('authWebGUI.captcha', "Captcha")) {
$error .= '<li>'.$i18n->get("captcha failure","AuthWebGUI").'</li>';
}
if ($setting->get("webguiUseCaptcha")) {
unless ($form->process('authWebGUI.captcha', "Captcha")) {
$error .= '<li>'.$i18n->get("captcha failure","AuthWebGUI").'</li>';
}
}
$error .= $self->error unless($self->_isValidPassword($password,$passConfirm));
my ($profile, $temp, $warning) = WebGUI::Operation::Profile::validateProfileData($self->session, {regOnly => 1});
$error .= $temp;