diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/helpers/photo.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/helpers/photo.php b/core/helpers/photo.php index 87b35817..a571943d 100644 --- a/core/helpers/photo.php +++ b/core/helpers/photo.php @@ -97,7 +97,8 @@ class photo_Core { static function get_add_form($parent) { $form = new Forge("albums/{$parent->id}", "", "post", array("id" => "gAddPhotoForm")); - $group = $form->group("add_photo")->label(t("Add Photo to %album_title", array("album_title" =>$parent->title))); + $group = $form->group("add_photo")->label( + t("Add Photo to %album_title", array("album_title" =>$parent->title))); $group->input("name")->label(t("Name")); $group->input("title")->label(t("Title")); $group->textarea("description")->label(t("Description")); |