summaryrefslogtreecommitdiff
path: root/modules/user/helpers/user.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-03-25 16:21:36 +0000
committerTim Almdal <tnalmdal@shaw.ca>2009-03-25 16:21:36 +0000
commit3cb2c42e49b008facff1563b0e9b1d5b5c67e77c (patch)
tree861ec26774766776ef71be0c572fe99da2219440 /modules/user/helpers/user.php
parent961d5e11cf844e412bfcd8baa0e2d776e0ec2bb6 (diff)
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.
Diffstat (limited to 'modules/user/helpers/user.php')
-rw-r--r--modules/user/helpers/user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/helpers/user.php b/modules/user/helpers/user.php
index 6dc2567b..d08ad1bd 100644
--- a/modules/user/helpers/user.php
+++ b/modules/user/helpers/user.php
@@ -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");