remember to pass the definition up the stack...

This commit is contained in:
Doug Bell 2011-05-05 11:23:05 -05:00
parent b0da37ec15
commit 423e19ae0e
2 changed files with 2 additions and 1 deletions

View file

@ -76,6 +76,7 @@ sub getValue {
if ($value =~ m/[A-Za-z0-9\-_]{1,22}/) {
return $value;
}
$self->session->log->warn("Invalid GUID '$value' passed into form");
return undef;
}

View file

@ -47,7 +47,7 @@ sub definition {
defaultValue => 1,
},
});
return $definition;
return $class->SUPER::definition( $session, $definition );
}
#-------------------------------------------------------------------