From 969ebbf4f120064ab864329c8daf3adc38cfc38a Mon Sep 17 00:00:00 2001 From: plegall Date: Wed, 5 Apr 2006 20:55:26 +0000 Subject: improvement: on picture.php, show title calculated in include/section_init.inc.php instead of nothing. git-svn-id: http://piwigo.org/svn/trunk@1128 68402e56-0260-453c-a942-63ccdbb3a9ee --- picture.php | 17 +++-------------- template/yoga/picture.tpl | 6 +++++- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/picture.php b/picture.php index bb4f8ead7..988859546 100644 --- a/picture.php +++ b/picture.php @@ -370,18 +370,6 @@ if ( isset( $_GET['slideshow'] ) and isset($page['next_item']) ) ); } -$title_img = $picture['current']['name']; -if ( isset( $page['category'] ) ) -{ - if (is_numeric( $page['category'] )) - { - $title_img = replace_space(get_cat_display_name($page['cat_name'])); - } - else if ( $page['cat'] == 'search' ) - { // ??? TODO -remove or change some remainings from old variables - $title_img = replace_search( $title_img, $_GET['search'] ); - } -} $title_nb = ($page['current_rank'] + 1).'/'.$page['cat_nb_images']; // calculation of width and height @@ -442,7 +430,8 @@ $template->set_filenames(array('picture'=>'picture.tpl')); $template->assign_vars( array( - 'CATEGORY' => $title_img, + 'SECTION_TITLE' => $page['title'], + 'PICTURE_TITLE' => $picture['current']['name'], 'PHOTO' => $title_nb, 'TITLE' => $picture['current']['name'], 'SRC_IMG' => $picture['current']['src'], @@ -779,7 +768,7 @@ if ($metadata_showable and isset($_GET['metadata'])) include(PHPWG_ROOT_PATH.'include/picture_metadata.inc.php'); } //------------------------------------------------------------ log informations -pwg_log( 'picture', $title_img, $picture['current']['file'] ); +pwg_log('picture', $page['title'], $picture['current']['file']); $template->parse('picture'); include(PHPWG_ROOT_PATH.'include/page_tail.php'); diff --git a/template/yoga/picture.tpl b/template/yoga/picture.tpl index 82260bc96..50c0b0fc3 100644 --- a/template/yoga/picture.tpl +++ b/template/yoga/picture.tpl @@ -3,7 +3,11 @@
-
{L_HOME}{LEVEL_SEPARATOR}{CATEGORY}
+
+ {L_HOME} + {LEVEL_SEPARATOR}{SECTION_TITLE} + {LEVEL_SEPARATOR}{PICTURE_TITLE} +
{PHOTO}

{TITLE}

-- cgit v1.2.3