mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-13 02:20:17 -04:00
Oops dropped a semicolon in e3d50dd8be
This commit is contained in:
@@ -32,7 +32,7 @@ class Admin_Advanced_Settings_Controller extends Admin_Controller {
|
||||
public function edit($module_name, $var_name) {
|
||||
$value = module::get_var($module_name, $var_name);
|
||||
$form = new Forge("admin/advanced_settings/save/$module_name/$var_name", "", "post");
|
||||
$group = $form->group("edit_var")->label(t("Edit setting"))
|
||||
$group = $form->group("edit_var")->label(t("Edit setting"));
|
||||
$group->input("module_name")->label(t("Module"))->value($module_name)->disabled(1);
|
||||
$group->input("var_name")->label(t("Setting"))->value($var_name)->disabled(1);
|
||||
$group->textarea("value")->label(t("Value"))->value($value);
|
||||
|
||||
Reference in New Issue
Block a user