summaryrefslogtreecommitdiff
path: root/modules/user/controllers
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-01-25 06:28:04 +0000
committerTim Almdal <tnalmdal@shaw.ca>2009-01-25 06:28:04 +0000
commita8233ed9795e42bb013a4d860fa063d8710d71eb (patch)
tree8c3fe5f7b994cc2e6d50508fbe2d883018ad7388 /modules/user/controllers
parentb0ad4e0222f573825e26bcaf73e08b80a3bc1f47 (diff)
Undo the adding underscores to the id on forge generated forms
Diffstat (limited to 'modules/user/controllers')
-rw-r--r--modules/user/controllers/login.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/controllers/login.php b/modules/user/controllers/login.php
index a6dc5fad..c9a32546 100644
--- a/modules/user/controllers/login.php
+++ b/modules/user/controllers/login.php
@@ -53,7 +53,7 @@ class Login_Controller extends Controller {
}
private function _login_form() {
- $form = new Forge(url::current(true), "", "post", array("id" => "gLogin_Form"));
+ $form = new Forge(url::current(true), "", "post", array("id" => "gLoginForm"));
$group = $form->group("login")->label(t("Login"));
$group->input("name")->label(t("Name"))->id("gName")->class(null);
$group->password("password")->label(t("Password"))->id("gPassword")->class(null);