summaryrefslogtreecommitdiff
path: root/core/helpers/album.php
diff options
context:
space:
mode:
authorAndy Staudacher <andy.st@gmail.com>2009-01-15 10:02:41 +0000
committerAndy Staudacher <andy.st@gmail.com>2009-01-15 10:02:41 +0000
commite4a9b19bf9997f46203fbc18c696c63703a72625 (patch)
treec33f4cb354961eeba452f428dfa68c664bc3226f /core/helpers/album.php
parente53916dd0622e3db61d6a05ad0fe69e8d7c7f11a (diff)
Changing t() placeholder syntax from {{replace_me}} to %replace_me.
Diffstat (limited to 'core/helpers/album.php')
-rw-r--r--core/helpers/album.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/helpers/album.php b/core/helpers/album.php
index e1875b3a..223a057d 100644
--- a/core/helpers/album.php
+++ b/core/helpers/album.php
@@ -65,7 +65,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")->label(t("Add Album to {{album_title}}", array("album_title" => $parent->title)));
+ $group = $form->group("add_album")->label(t("Add Album 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"));