diff options
-rw-r--r-- | core/helpers/album.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/helpers/album.php b/core/helpers/album.php index dd8d1dd2..d82f076b 100644 --- a/core/helpers/album.php +++ b/core/helpers/album.php @@ -61,7 +61,7 @@ class album_Core { static function get_add_form($parent) { $form = new Forge("albums/{$parent->id}", "", "post", array("id" => "gAddAlbumForm")); - $group = $form->group(_("Add Album to ") . $parent->title); + $group = $form->group(sprintf(_("Add Album to %s"), $parent->title)); $group->input("name"); $group->input("title"); $group->input("description"); |