From d0c133d3ee415498b9b69237f2806ac15b04ae18 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 15 Nov 2009 20:28:26 +0000 Subject: [PATCH] Obsolete parameters removed/rewritten --- inc/modules/sponsor.php | 2 +- inc/mysql-manager.php | 25 ++++++++++--------------- 2 files changed, 11 insertions(+), 16 deletions(-) diff --git a/inc/modules/sponsor.php b/inc/modules/sponsor.php index 5859a70b1a..3e39328c95 100644 --- a/inc/modules/sponsor.php +++ b/inc/modules/sponsor.php @@ -67,7 +67,7 @@ $content['header'] = loadTemplate('sponsor_header', true); $content['footer'] = loadTemplate('sponsor_footer', true); // 'You are here' navigation -$content['you_are_here'] = addMenuDescription('sponsor', getWhat(), false, false); +$content['you_are_here'] = addMenuDescription('sponsor', getWhat(), true); // Load main sponsor template loadTemplate('sponsor_main', false, $content); diff --git a/inc/mysql-manager.php b/inc/mysql-manager.php index c9c73e5718..bf3b16b973 100644 --- a/inc/mysql-manager.php +++ b/inc/mysql-manager.php @@ -289,7 +289,7 @@ function checkModulePermissions ($mod = '') { } // Add menu description pending on given file name (without path!) -function addMenuDescription ($accessLevel, $FQFN, $return = false, $output = true) { +function addMenuDescription ($accessLevel, $FQFN, $return = false) { // Use only filename of the FQFN... $file = basename($FQFN); @@ -354,14 +354,7 @@ function addMenuDescription ($accessLevel, $FQFN, $return = false, $output = tru $search = substr($search, 0, -4); } // END - i - // Get the title from menu - $ret = getTitleFromMenu($accessLevel, $search, $type, $AND); - - // Shall we return it? - if ($return === true) { - // Return title - return $ret; - } elseif (((isExtensionInstalledAndNewer('sql_patches', '0.2.3')) && (getConfig('youre_here') == 'Y')) || ((isAdmin()) && ($modCheck == 'admin'))) { + if (((isExtensionInstalledAndNewer('sql_patches', '0.2.3')) && (getConfig('youre_here') == 'Y')) || ((isAdmin()) && ($modCheck == 'admin'))) { // Output HTML code $OUT = $prefix . " $accessLevel, 'type' => $type, 'content' => "")); + $ret = runFilterChain('post_youhere_line', array('access_level' => $accessLevel, 'type' => $type, 'content' => '')); + + // Add additional content $OUT .= $ret['content']; } // END - if } // Return or output HTML code? - if ($output === true) { - // Output HTML code here - outputHtml($OUT); - } else { + if ($return === true) { // Return HTML code return $OUT; + } else { + // Output HTML code here + outputHtml($OUT); } } @@ -1653,7 +1648,7 @@ function generateMetaDescriptionCode ($mod, $what) { // Exclude admin and member's area if (($mod != 'admin') && ($mod != 'login')) { // Construct dynamic description - $DESCR = '{?MAIN_TITLE?} '.trim(getConfig('title_middle')) . ' ' . addMenuDescription('guest', 'what-'.$what, true); + $DESCR = '{?MAIN_TITLE?} '.trim(getConfig('title_middle')) . ' ' . getTitleFromMenu('guest', $what); // Output it directly outputHtml(''); -- 2.30.2