1
0

Make the module compatible with RC2, fix a bug (bad method name)

This commit is contained in:
Romain LE DISEZ 2010-07-13 23:32:18 +02:00
parent 9e743b456c
commit 76861d66f0

View File

@ -178,13 +178,13 @@ class user_homes_event_Core {
} }
} }
static function album_add_form($form){ static function album_add_form($parent, $form){
$group = $form->group("privacy") $group = $form->group("privacy")
->label(t("album privacy settings")); ->label(t("album privacy settings"));
$group->checkbox("private")->label(t("Private"))->id("uh_private")->onClick("pc()"); $group->checkbox("private")->label(t("Private"))->id("uh_private")->onClick("pc()");
$group->input("username")->label(t("Username"))->id("uh_username") $group->input("username")->label(t("Username"))->id("uh_username")
->callback("user_homes_event::user_already_exists") ->callback("user_homes_event::valid_name")
->error_messages("in_use", t("There is already a user with that username")) ->error_messages("in_use", t("There is already a user with that username"))
->error_messages("required", t("You must enter a username"))->callback("user_homes_event::valid_name")->rules("length[1,32]"); ->error_messages("required", t("You must enter a username"))->callback("user_homes_event::valid_name")->rules("length[1,32]");
$group->password("password")->label(t("Password"))->id("uh_password") $group->password("password")->label(t("Password"))->id("uh_password")