diff options
author | Chad Kieffer <chad@2tbsp.com> | 2008-12-17 01:19:13 +0000 |
---|---|---|
committer | Chad Kieffer <chad@2tbsp.com> | 2008-12-17 01:19:13 +0000 |
commit | 9fa566a1c9d88436df6c1de2902f0e3d01b42f21 (patch) | |
tree | 7ee37eea18a3d853eb2f4b9ea62a6cf7f9d93353 | |
parent | 3c05b95620f46c7042471371a3cab9d87f7da75e (diff) |
Added label to add tag form input
-rw-r--r-- | modules/tag/helpers/tag.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tag/helpers/tag.php b/modules/tag/helpers/tag.php index 104d4a30..7e42ed50 100644 --- a/modules/tag/helpers/tag.php +++ b/modules/tag/helpers/tag.php @@ -82,7 +82,7 @@ class tag_Core { public static function get_add_form($item_id) { $form = new Forge(url::site("tags"), "", "post", array("id" => "gAddTagForm")); $group = $form->group("add_tag")->label(_("Add Tag")); - $group->input("tag_name"); + $group->input("tag_name")->label(_("Add tag")); $group->hidden("item_id")->value($item_id); $group->submit(_("Add")); $form->add_rules_from(ORM::factory("tag")); |