mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-26 01:34:09 -04:00
Undo the adding underscores to the id on forge generated forms
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user