Fix for ticket #181. Valiant take note of the change to

admin_users.php.  I had to remove the check for the locale as it
hasn't been added to the form.
This commit is contained in:
Tim Almdal
2009-03-25 16:21:36 +00:00
parent 961d5e11cf
commit 3cb2c42e49
2 changed files with 5 additions and 3 deletions

View File

@@ -70,7 +70,7 @@ class user_Core {
$group->password("password2")->label(t("Confirm Password"))->id("gPassword2")
->matches($group->password);
$group->input("email")->label(t("Email"))->id("gEmail");
$group->input("url")->label(t("URL"))->id("gUrl")->value($user->url);
$group->input("url")->label(t("URL"))->id("gUrl");
self::_add_locale_dropdown($group);
$group->submit("")->value(t("Add User"));
$user = ORM::factory("user");