From 345933bd2c3bec7446b684d29afd3ed5b84718fc Mon Sep 17 00:00:00 2001 From: quix0r Date: Mon, 1 Oct 2012 21:55:54 +0000 Subject: [PATCH] Wrapper getMtWord3() added --- inc/wrapper-functions.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php index 354fe7cbe4..1e0c5cefc0 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -1823,6 +1823,18 @@ function getMtWord2 () { return $GLOBALS[__FUNCTION__]; } +// "Getter" for mt_word2 +function getMtWord2 () { + // Do we have cache? + if (!isset($GLOBALS[__FUNCTION__])) { + // Determine it + $GLOBALS[__FUNCTION__] = getConfig('mt_word2'); + } // END - if + + // Return cache + return $GLOBALS[__FUNCTION__]; +} + // "Getter" for main_title function getMainTitle () { // Do we have cache? -- 2.39.5