diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-01-25 06:28:04 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-01-25 06:28:04 +0000 |
commit | a8233ed9795e42bb013a4d860fa063d8710d71eb (patch) | |
tree | 8c3fe5f7b994cc2e6d50508fbe2d883018ad7388 /modules/akismet | |
parent | b0ad4e0222f573825e26bcaf73e08b80a3bc1f47 (diff) |
Undo the adding underscores to the id on forge generated forms
Diffstat (limited to 'modules/akismet')
-rw-r--r-- | modules/akismet/helpers/akismet.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/akismet/helpers/akismet.php b/modules/akismet/helpers/akismet.php index 67be802f..db84b6a1 100644 --- a/modules/akismet/helpers/akismet.php +++ b/modules/akismet/helpers/akismet.php @@ -21,7 +21,7 @@ class akismet_Core { public static $test_mode = TEST_MODE; static function get_configure_form() { - $form = new Forge("admin/akismet", "", "post", array("id" => "gConfigure_Akismet_Form")); + $form = new Forge("admin/akismet", "", "post", array("id" => "gConfigureAkismetForm")); $group = $form->group("configure_akismet")->label(t("Configure Akismet")); $group->input("api_key")->label(t("API Key"))->value(module::get_var("akismet", "api_key")); $group->api_key->error_messages("invalid", t("The API key you provided is invalid.")); |