summaryrefslogtreecommitdiff
path: root/modules/gallery/helpers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2010-01-19 19:24:46 -0800
committerBharat Mediratta <bharat@menalto.com>2010-01-19 19:24:46 -0800
commit512910962d62a2011d7770da1b6e68bd6bbad983 (patch)
tree1e263cf6df55642d9842a2d09cb83563bc8e0831 /modules/gallery/helpers
parentc3ed64fc6c0c1c9001d32191b0f1a5c21ec4b7c5 (diff)
Change "dirname" to "name" in the edit album form. I'd rather have
consistency between field names than deal with underlying issues with Forge bitching about the "name" property.
Diffstat (limited to 'modules/gallery/helpers')
-rw-r--r--modules/gallery/helpers/album.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/helpers/album.php b/modules/gallery/helpers/album.php
index e99770e9..55282252 100644
--- a/modules/gallery/helpers/album.php
+++ b/modules/gallery/helpers/album.php
@@ -52,7 +52,7 @@ class album_Core {
$group->input("title")->label(t("Title"))->value($parent->title);
$group->textarea("description")->label(t("Description"))->value($parent->description);
if ($parent->id != 1) {
- $group->input("dirname")->label(t("Directory Name"))->value($parent->name)
+ $group->input("name")->label(t("Directory Name"))->value($parent->name)
->rules("required")
->error_messages(
"conflict", t("There is already a movie, photo or album with this name"))
@@ -65,7 +65,7 @@ class album_Core {
"not_url_safe",
t("The internet address should contain only letters, numbers, hyphens and underscores"));
} else {
- $group->hidden("dirname")->value($parent->name);
+ $group->hidden("name")->value($parent->name);
$group->hidden("slug")->value($parent->slug);
}