diff options
| author | Nathan Kinkade <nath@nkinka.de> | 2012-06-18 16:17:55 +0000 | 
|---|---|---|
| committer | Nathan Kinkade <nath@nkinka.de> | 2012-06-18 16:17:55 +0000 | 
| commit | 527bc809aaa6d48e7c1a7be50de31a4c3adcee90 (patch) | |
| tree | fb7432e06af9191f2300af97685f235325d36f57 /modules/info | |
| parent | b52e834bd0bab530e98537d52b31d4b37f199739 (diff) | |
| parent | c48df3b8199802a75f30f38c6f7b3440f9fde4ca (diff) | |
Merge branch 'master' of git://github.com/gallery/gallery3
Diffstat (limited to 'modules/info')
| -rw-r--r-- | modules/info/helpers/info_block.php | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/modules/info/helpers/info_block.php b/modules/info/helpers/info_block.php index 3dcfa338..d62c900d 100644 --- a/modules/info/helpers/info_block.php +++ b/modules/info/helpers/info_block.php @@ -29,7 +29,8 @@ class info_block_Core {        if ($theme->item()) {          $block = new Block();          $block->css_id = "g-metadata"; -        $block->title = $theme->item()->is_album() ? t("Album info") : t("Photo info"); +        $block->title = $theme->item()->is_album() ? t("Album info") :  +          ($theme->item()->is_movie() ? t("Movie info") : t("Photo info"));          $block->content = new View("info_block.html");          if ($theme->item->title && module::get_var("info", "show_title")) {            $info["title"] = array( | 
