summaryrefslogtreecommitdiff
path: root/modules/tag/helpers
diff options
context:
space:
mode:
authorChad Kieffer <chad@2tbsp.com>2008-12-01 01:55:50 +0000
committerChad Kieffer <chad@2tbsp.com>2008-12-01 01:55:50 +0000
commit26a512c3522b4f59a06f5e3146df5d466373c06e (patch)
treec844a59a2f0fc20d43791fffa6854bd9c7ee0fb1 /modules/tag/helpers
parent6b03b798f3be23c83d0587f180341929c49af886 (diff)
Grouped inline form styles. No longer using gInline class in favor of specific form IDs that can be styled differently depending on which container they appear. Added gDescription class, dropped gUnderState for semantics. CSS cleanup.
Diffstat (limited to 'modules/tag/helpers')
-rw-r--r--modules/tag/helpers/tag.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tag/helpers/tag.php b/modules/tag/helpers/tag.php
index fd683bc1..595f4b08 100644
--- a/modules/tag/helpers/tag.php
+++ b/modules/tag/helpers/tag.php
@@ -80,7 +80,7 @@ class tag_Core {
}
public static function get_add_form($item_id) {
- $form = new Forge(url::site("tags"), "", "post");
+ $form = new Forge(url::site("tags"), "", "post", array("id" => "gAddTagForm"));
$group = $form->group(_("Add Tag"));
$group->input("tag_name");
$group->hidden("item_id")->value($item_id);