Code style changed, ext-user continued:
[mailer.git] / inc / language-functions.php
index 5e393b722519d8ee0bb5cb9153cc1e70db0455a7..c85cf52faf1c681752e653ad76c80d7472a77cdf 100644 (file)
@@ -275,7 +275,7 @@ function ifLanguageFilesCompares ($source, $target, $targetLanguage) {
        } // END - if
 
        // *Does* match by default
-       $matches = true;
+       $matches = TRUE;
 
        // Is one not readable?
        if (!isIncludeReadable($source)) {
@@ -295,7 +295,7 @@ function ifLanguageFilesCompares ($source, $target, $targetLanguage) {
        $GLOBALS['messages'][$backupLang] = array();
 
        // Both are readable so include current language file
-       $GLOBALS['count'] = false;
+       $GLOBALS['count'] = FALSE;
        loadInclude($source);
        $GLOBALS['msgs'][$source] = $GLOBALS['messages'][$backupLang];
        unset($GLOBALS['count']);
@@ -322,7 +322,7 @@ function ifLanguageFilesCompares ($source, $target, $targetLanguage) {
        // Do they mismatch?
        if ((count($GLOBALS['msgs'][$source])) != (count($GLOBALS['msgs'][$target]))) {
                // Does not match
-               $matches = false;
+               $matches = FALSE;
 
                // Check all differences
                foreach ($GLOBALS['msgs'][$source] as $key => $value) {
@@ -348,9 +348,9 @@ function getLanguageComparisonDifference ($target) {
 }
 
 // Checks whether the given message is masked
-function isMessageMasked ($messageId, $strict = true) {
+function isMessageMasked ($messageId, $strict = TRUE) {
        // Is the message id valid?
-       if (($strict === true) && (!isMessageIdValid($messageId))) {
+       if (($strict === TRUE) && (!isMessageIdValid($messageId))) {
                // No, then abort here
                reportBug(__FUNCTION__, __LINE__, 'Invalid message id ' . $messageId . ' detected.');
        } // END - if