summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-11-16 07:07:16 +0000
committerBharat Mediratta <bharat@menalto.com>2008-11-16 07:07:16 +0000
commitb8b60df391637ff21bb79ba64f820749ef324ee9 (patch)
treece355ab236325ca74858220de8f8a65db0617df7 /modules
parentbe67187ad95526b378decbab7cb7623fcf9ef5f3 (diff)
Rename gLogin -> gLoginForm
This disambiguates forms from blocks (for example in the comment module we were calling both the form and block gComments).
Diffstat (limited to 'modules')
-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 63548a4c..36b79376 100644
--- a/modules/user/controllers/login.php
+++ b/modules/user/controllers/login.php
@@ -19,7 +19,7 @@
*/
class Login_Controller extends Controller {
public function index() {
- $form = new Forge(url::current(true), "", "post", array("id" => "gLogin"));
+ $form = new Forge(url::current(true), "", "post", array("id" => "gLoginForm"));
$group = $form->group(_("Login"));
$group->input("name")->label(_("Name"))->id("gName")->class(null);
$group->password("password")->label(_("Password"))->id("gPassword")->class(null);