]> git.mxchange.org Git - mailer.git/blobdiff - inc/wrapper-functions.php
New function introduced, missing function getPointsWord() added:
[mailer.git] / inc / wrapper-functions.php
index 5c9e3f405c0cfd162abc2d0e892a1f6a810592b2..d2ff5ffdd6d5b623f7e484b4c4c73ed3429d3c8b 100644 (file)
@@ -2209,7 +2209,7 @@ function getSmtpUser () {
 }
 
 // "Getter" for SMTP_PASSWORD
-function getSmtpPassword() {
+function getSmtpPassword () {
        // Do we have cache?
        if (!isset($GLOBALS[__FUNCTION__])) {
                // Determine it
@@ -2220,6 +2220,18 @@ function getSmtpPassword() {
        return $GLOBALS[__FUNCTION__];
 }
 
+// "Getter" for POINTS_WORD
+function getPointsWord () {
+       // Do we have cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = getConfig('points_word');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
 // Checks wether proxy configuration is used
 function isProxyUsed () {
        // Do we have cache?