From 530e3e6974f95be5a5cca823b33ec8f7562fbcf6 Mon Sep 17 00:00:00 2001 From: rvelices Date: Tue, 2 Oct 2007 05:42:22 +0000 Subject: - merge r 2117 from trunk (render_category_description and render_category_literal_description events refactoring) - fix admin multiview plugin git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2118 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/section_init.inc.php | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'include/section_init.inc.php') diff --git a/include/section_init.inc.php b/include/section_init.inc.php index b0baec3bb..05bc60f29 100644 --- a/include/section_init.inc.php +++ b/include/section_init.inc.php @@ -204,7 +204,11 @@ if ('categories' == $page['section']) $page = array_merge( $page, array( - 'comment' => $page['category']['comment'], + 'comment' => + trigger_event( + 'render_category_description', + $page['category']['comment'] + ), 'title' => get_cat_display_name($page['category']['upper_names'], '', false), ) @@ -331,7 +335,8 @@ SELECT DISTINCT(id) $page = array_merge( $page, array( - 'title' => $lang['search_result'], + 'title' => '' + .$lang['search_result'].'', ) ); } @@ -385,7 +390,7 @@ SELECT DISTINCT(id) $page = array_merge( $page, array( - 'title' => '' + 'title' => '' .$lang['recent_pics_cat'].'', 'items' => array_from_query($query, 'id'), ) @@ -423,7 +428,7 @@ SELECT DISTINCT(id) $page = array_merge( $page, array( - 'title' => '' + 'title' => '' .$conf['top_number'].' '.$lang['most_visited_cat'].'', 'items' => array_from_query($query, 'id'), ) @@ -449,7 +454,7 @@ SELECT DISTINCT(id) $page = array_merge( $page, array( - 'title' => '' + 'title' => '' .$conf['top_number'].' '.$lang['best_rated_cat'].'', 'items' => array_from_query($query, 'id'), ) @@ -472,7 +477,7 @@ SELECT DISTINCT(id) $page = array_merge( $page, array( - 'title' => '' + 'title' => '' .$lang['random_cat'].'', 'items' => array_from_query($query, 'id'), ) -- cgit v1.2.3