]> git.mxchange.org Git - mailer.git/commitdiff
More double-quotes to single-quotes
authorRoland Häder <roland@mxchange.org>
Sat, 22 Jun 2013 03:19:47 +0000 (03:19 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 22 Jun 2013 03:19:47 +0000 (03:19 +0000)
62 files changed:
inc/classes/cachesystem.class.php
inc/db/lib.php
inc/email-functions.php
inc/extensions-functions.php
inc/libs/country_functions.php
inc/libs/sponsor_functions.php
inc/modules/admin/action-
inc/modules/admin/action-admins.php
inc/modules/admin/action-bank.php
inc/modules/admin/action-country.php
inc/modules/admin/action-coupon.php
inc/modules/admin/action-doubler.php
inc/modules/admin/action-email.php
inc/modules/admin/action-forced.php
inc/modules/admin/action-grade.php
inc/modules/admin/action-holiday.php
inc/modules/admin/action-login.php
inc/modules/admin/action-menu.php
inc/modules/admin/action-misc.php
inc/modules/admin/action-mods.php
inc/modules/admin/action-network.php
inc/modules/admin/action-newsletter.php
inc/modules/admin/action-payouts.php
inc/modules/admin/action-rallye.php
inc/modules/admin/action-repair.php
inc/modules/admin/action-setup.php
inc/modules/admin/action-sponsor.php
inc/modules/admin/action-stats.php
inc/modules/admin/action-surfbar.php
inc/modules/admin/action-task.php
inc/modules/admin/action-theme.php
inc/modules/admin/action-transfer.php
inc/modules/admin/action-user.php
inc/modules/admin/action-wernis.php
inc/modules/admin/admin-inc.php
inc/modules/admin/what-list_user_subid.php
inc/modules/admin/what-logs.php
inc/modules/admin/what-repair_lang.php
inc/modules/admin/what-usage.php
inc/modules/guest/action-
inc/modules/guest/action-admin.php
inc/modules/guest/action-main.php
inc/modules/guest/action-members.php
inc/modules/guest/action-sponsor.php
inc/modules/index.php
inc/modules/login.php
inc/modules/member/action-
inc/modules/member/action-account.php
inc/modules/member/action-bank.php
inc/modules/member/action-coupon.php
inc/modules/member/action-earn.php
inc/modules/member/action-extras.php
inc/modules/member/action-logout.php
inc/modules/member/action-main.php
inc/modules/member/action-order.php
inc/modules/member/action-rals.php
inc/modules/member/action-stats.php
inc/modules/member/action-surfbar.php
inc/modules/member/what-subids.php
inc/modules/member/what-transfer.php
inc/mysql-manager.php
inc/phpmailer/class.phpmailer.php

index 2da580312f9d0e2d3ae28f1278da55700c290b3b..73ef671954c3326491af6e64d2980afa2668c5b1 100644 (file)
@@ -318,7 +318,7 @@ class CacheSystem {
                $this->resetCacheReadStatus();
 
                // Debug message
                $this->resetCacheReadStatus();
 
                // Debug message
-               //* DEBUG: */ logDebugMessage(__METHOD__, __LINE__, sprintf("%s should be removed.", $this->name));
+               //* DEBUG: */ logDebugMessage(__METHOD__, __LINE__, sprintf('%s should be removed.', $this->name));
 
                // Is the cache file not yet rebuilt?
                if ((!isset($this->rebuilt[$this->name])) && ($this->isCacheReadable())) {
 
                // Is the cache file not yet rebuilt?
                if ((!isset($this->rebuilt[$this->name])) && ($this->isCacheReadable())) {
index 9b243e68581c93f11205909d16281522bb28ecb0..3f0f24eb7fd24d5c5909945e867b4baeb85bd781 100644 (file)
@@ -41,7 +41,7 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Create include file name
 } // END - if
 
 // Create include file name
-$inc = sprintf("inc/db/lib-%s.php", getConfig('_DB_TYPE'));
+$inc = sprintf('inc/db/lib-%s.php', getConfig('_DB_TYPE'));
 
 // Is the database library available?
 if (!isIncludeReadable($inc)) {
 
 // Is the database library available?
 if (!isIncludeReadable($inc)) {
index 3663ca4ce8e49d03d6638666ae0a7aeff02b0a07..90ec5441b96b6cd7c803a7f990cc6df02f4edcea 100644 (file)
@@ -143,7 +143,7 @@ function sendRawEmail ($toEmail, $subject, $message, $headers) {
                $mail->CharSet = 'UTF-8';
 
                // Path for PHPMailer
                $mail->CharSet = 'UTF-8';
 
                // Path for PHPMailer
-               $mail->PluginDir  = sprintf("%sinc/phpmailer/", getPath());
+               $mail->PluginDir  = sprintf('%sinc/phpmailer/', getPath());
 
                $mail->IsSMTP();
                $mail->SMTPAuth   = TRUE;
 
                $mail->IsSMTP();
                $mail->SMTPAuth   = TRUE;
index 58127d2909bf965d7ce517a3d09bb0cf3ce8f6bf..d842ddc163a299cef2ca51ffc8c93af795992ac5 100644 (file)
@@ -957,7 +957,7 @@ function isExtensionNameValid ($ext_name) {
        // Is there cache?
        if (!isset($GLOBALS['ext_name_valid'][$ext_name])) {
                // Generate include file name
        // Is there cache?
        if (!isset($GLOBALS['ext_name_valid'][$ext_name])) {
                // Generate include file name
-               $INC = sprintf("inc/extensions/ext-%s.php", $ext_name);
+               $INC = sprintf('inc/extensions/ext-%s.php', $ext_name);
 
                // Is there a file in inc/extensions/ ?
                $GLOBALS['ext_name_valid'][$ext_name] = isIncludeReadable($INC);
 
                // Is there a file in inc/extensions/ ?
                $GLOBALS['ext_name_valid'][$ext_name] = isIncludeReadable($INC);
@@ -1822,7 +1822,7 @@ function loadCurrentExtensionInclude () {
        } // END - if
 
        // Generate INC name
        } // END - if
 
        // Generate INC name
-       $INC = sprintf("inc/extensions/ext-%s.php", getCurrentExtensionName());
+       $INC = sprintf('inc/extensions/ext-%s.php', getCurrentExtensionName());
 
        // Load it
        loadInclude($INC);
 
        // Load it
        loadInclude($INC);
@@ -1831,7 +1831,7 @@ function loadCurrentExtensionInclude () {
 // Load current extension's mode include file
 function loadCurrentExtensionModeInclude () {
        // Generate INC name
 // Load current extension's mode include file
 function loadCurrentExtensionModeInclude () {
        // Generate INC name
-       $INC = sprintf("inc/extensions/%s/mode-%s.php", getCurrentExtensionName(), getExtensionMode());
+       $INC = sprintf('inc/extensions/%s/mode-%s.php', getCurrentExtensionName(), getExtensionMode());
 
        // Is the include readable?
        if (isIncludeReadable($INC)) {
 
        // Is the include readable?
        if (isIncludeReadable($INC)) {
@@ -1850,7 +1850,7 @@ function isExtensionIncludeReadable ($ext_name = '') {
        // Array found?
        if (!isset($GLOBALS['ext_inc_readable'][$ext_name])) {
                // Generate INC name
        // Array found?
        if (!isset($GLOBALS['ext_inc_readable'][$ext_name])) {
                // Generate INC name
-               $INC = sprintf("inc/extensions/ext-%s.php", getCurrentExtensionName());
+               $INC = sprintf('inc/extensions/ext-%s.php', getCurrentExtensionName());
 
                // Is it readable?
                $GLOBALS['ext_inc_readable'][$ext_name] = isIncludeReadable($INC);
 
                // Is it readable?
                $GLOBALS['ext_inc_readable'][$ext_name] = isIncludeReadable($INC);
@@ -1871,7 +1871,7 @@ function isExtensionFunctionFileReadable ($ext_name) {
                incrementStatsEntry('cache_hits');
        } else {
                // Construct IFN for functions file
                incrementStatsEntry('cache_hits');
        } else {
                // Construct IFN for functions file
-               $funcsInclude = sprintf("inc/libs/%s_functions.php", $ext_name);
+               $funcsInclude = sprintf('inc/libs/%s_functions.php', $ext_name);
 
                // Is this include there?
                $isIncludeFound = ((isFileReadable($funcsInclude)) && (!isExtensionLibraryLoaded($ext_name)) && (getExtensionMode() == 'test'));
 
                // Is this include there?
                $isIncludeFound = ((isFileReadable($funcsInclude)) && (!isExtensionLibraryLoaded($ext_name)) && (getExtensionMode() == 'test'));
index 7254ff1022ec98c242822250f3a7eeb7a1655f76..80a4c1ef856f82d70cab876c1654112fe2f8d473 100644 (file)
@@ -63,7 +63,7 @@ LIMIT 1",
                //* DEBUG: */ print($id.'=<pre>'.print_r($content, TRUE).'</pre>');
 
                // Construct human-readable description
                //* DEBUG: */ print($id.'=<pre>'.print_r($content, TRUE).'</pre>');
 
                // Construct human-readable description
-               $ret = sprintf("%s (%s)", $content['descr'], $content['code']);
+               $ret = sprintf('%s (%s)', $content['descr'], $content['code']);
        } // END - if
 
        // Free the result
        } // END - if
 
        // Free the result
index 0edbbec6f1a703ca49999c01b4602832d37d26a7..81fd04d6409eecb4a17eaf5d7693e214603ed35f 100644 (file)
@@ -341,7 +341,7 @@ function addSponsorContent ($what) {
        $GLOBALS['sponsor_output'] = '';
 
        // Generate IFN (Include FileName)
        $GLOBALS['sponsor_output'] = '';
 
        // Generate IFN (Include FileName)
-       $INC = sprintf("inc/modules/sponsor/%s.php", $what);
+       $INC = sprintf('inc/modules/sponsor/%s.php', $what);
        if (isIncludeReadable($INC)) {
                // Every sponsor action will output nothing directly. It will be written into $GLOBALS['sponsor_output']!
                loadIncludeOnce($INC);
        if (isIncludeReadable($INC)) {
                // Every sponsor action will output nothing directly. It will be written into $GLOBALS['sponsor_output']!
                loadIncludeOnce($INC);
index 4ffdb876eb4291c9fa882034d7aa10252c09c2c0..e8f0ce1031d8f1cec0eaee5e1beaca02cfe974ac 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) { 
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) { 
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index ff6ff458a5b1ba7d4d604ff60225af23bd701deb..bcdb9855c161e69f78d5c1e71fc4c2b0afdb8dc1 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 5aa6eff56350e349d928cf8e962291587c5c37bd..42c4a1e0aee923ad4d3cbb6e14de88967766f68f 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index d715b9a6047cdebdee91b90c413362bc9f13af84..61167e8e9a6400ef6a7b12ed553f972a45a5d9e0 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 032d467c80f7ef61b3ae7800b215c3d4577f55e3..e5c21f525b3e9b65251f610f5de8ec528d5bca2a 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 4807bed24313966602b1406f9edf81d425158def..cbbcec737345083657d9a563bd208650ce9998df 100644 (file)
@@ -44,12 +44,12 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 } else {
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 } else {
-       // "what file" not found
+       // 'what file' not found
        addFatalMessage(__FILE__, __LINE__, '{--ADMIN_WHAT_404--}');
 }
 
        addFatalMessage(__FILE__, __LINE__, '{--ADMIN_WHAT_404--}');
 }
 
index d660bdfc8156a7cf11aa822302ed71d00a294337..73dabb37bde8e0f64d227365a9cd6f146e6b627f 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 3235e85013b5a8a54e794988a8bc4b01348a63ae..173da3260947ac54c58952f2b4e7df9845b38e1f 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 567e10dab4592d970fb241cac4d49c03faf8285b..2c2a6b413f7c3ffd16702b01fddf86aa8c6447d5 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 0529f70b9034838e300f4e548b13bbc3ffd1f2ee..0f081b22e21e9c7453d5b20642dace0e549b978d 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 3d57369910abc13ef1b17a2772cc75a54e8d11d3..1c68fa2437358dbbc3fdcc543141a507228d036b 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index ecabbd2bf3ec9b7b5d72888f0731788bd5042ff3..381204d1046a1727e60b5d04ac82d0ed900a7b19 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index ae75164ec6db342bbb1c504c1d3390130a60f72e..609d94c66609531540155d247dc5388c2b8e7664 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 437c8233363a8a7aee23b1c54647270454f68e01..50e24544d319f4a26ed29a4d6a92ba9e0582c07d 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index eed0cbcb90a37fc8cd1307cd9737071abde0afa6..55adf067e48ecd1a615f9e753edff63978e84cd9 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 47da2b67e376ae6d9e00c060d440770c9baece88..0de6c408e11899c9e191fee320783d1c0da8a7a6 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 8b813721ef7ae1d6ad31bf70a88e859ec43a6935..b83b153e1d6f15fa174eb37d4a722c3249f96adb 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index a2b4f6ec1a9851c712eb8ca3036bc6f894302d1d..964072128e1ab7bc9dd0c7ef811cdc90e9a0551e 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index d571fa2084b7fe06ddf083dfe1a518ef42281e45..0cc1d7739a4273c648858e25c02b860f27b34743 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index ef89f584e9abd838be866e0967ccf79ecb26e225..af9ac00263004dc8dbfe327a662280737bebed2e 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 8fb6020f076444a282275c892fd909c7273caf6c..50810d03b27826013da926d881e5695814b6dc4b 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 9e6eab66efe3b075d017ca84197a7fe496a1725a..c91f7e506350592e72429e08cff916c8dfb223d3 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index f70a9e9099c008f843a5825805f4bc541e253127..c4c680092352f46965faddf23f6f3facc2589f7b 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index f2fae63d27e522a5462d1c3b05354296344ee701..106ade168a08da0dc43a930c7d403ad0d90282db 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 03817e27a1462cdba26e6168f3acb328eea936c3..685257baff05fe243196b23437d5f9711974ab11 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 1f738beaf9c8bb37d24671128d0a10146d05c4cf..38c7f9c4dada6e668fee3e1e691024678c100578 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index c41dea375a799852592bfbbe1841ff0ee5e81a98..0dc6d57e84b13551be523e731d1c1e5be4223c73 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index eb199865bf37e86505adf9242b4ea43cca2c80b3..3a1e172b5d0230eb5459aac243f4821f3e53d644 100644 (file)
@@ -44,7 +44,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
 addYouAreHereLink('admin', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/admin/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/admin/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the admin action module
        loadIncludeOnce($inc);
index 078108d8f464f1e64958f21398e4fb67653857ee..33c542893c305d77b6dd990bd0bba841591b2f18 100644 (file)
@@ -217,7 +217,7 @@ LIMIT 1",
        // Is there an entry?
        if (sqlNumRows($result_action) == 1) {
                // Is valid but does the inlcude file exists?
        // Is there an entry?
        if (sqlNumRows($result_action) == 1) {
                // Is valid but does the inlcude file exists?
-               $inc = sprintf("inc/modules/admin/action-%s.php", $action);
+               $inc = sprintf('inc/modules/admin/action-%s.php', $action);
                if ((isIncludeReadable($inc)) && (isMenuActionValid('admin', $action, $what)) && ($GLOBALS['acl_allow'] === TRUE)) {
                        // Ok, we finally load the admin action module
                        loadInclude($inc);
                if ((isIncludeReadable($inc)) && (isMenuActionValid('admin', $action, $what)) && ($GLOBALS['acl_allow'] === TRUE)) {
                        // Ok, we finally load the admin action module
                        loadInclude($inc);
@@ -286,7 +286,7 @@ ORDER BY
                // Load all 'action' menus
                while ($mainContent = sqlFetchArray($result_main)) {
                        // Filename
                // Load all 'action' menus
                while ($mainContent = sqlFetchArray($result_main)) {
                        // Filename
-                       $inc = sprintf("inc/modules/admin/action-%s.php", $mainContent['main_action']);
+                       $inc = sprintf('inc/modules/admin/action-%s.php', $mainContent['main_action']);
 
                        // Is the current admin allowed to access this 'action' menu?
                        if (isAdminAllowedAccessMenu($mainContent['main_action'])) {
 
                        // Is the current admin allowed to access this 'action' menu?
                        if (isAdminAllowedAccessMenu($mainContent['main_action'])) {
@@ -381,7 +381,7 @@ ORDER BY
                        // Load all entries
                        while ($subContent = sqlFetchArray($result_what)) {
                                // Filename
                        // Load all entries
                        while ($subContent = sqlFetchArray($result_what)) {
                                // Filename
-                               $inc = sprintf("inc/modules/admin/what-%s.php", $subContent['sub_what']);
+                               $inc = sprintf('inc/modules/admin/what-%s.php', $subContent['sub_what']);
 
                                // Is the current admin allowed to access this 'what' menu?
                                if (isAdminAllowedAccessMenu(NULL, $subContent['sub_what'])) {
 
                                // Is the current admin allowed to access this 'what' menu?
                                if (isAdminAllowedAccessMenu(NULL, $subContent['sub_what'])) {
index 111bb4486d645a8ae391131e0ecd1afd44faf884..f60c63f08fdc5a55436600de47cc09baa21995e3 100644 (file)
@@ -89,7 +89,7 @@ if (isFormSent('edit')) {
        ));
 } elseif ((isGetRequestElementSet('do')) && (isGetRequestElementSet('id'))) {
        // Construct module name
        ));
 } elseif ((isGetRequestElementSet('do')) && (isGetRequestElementSet('id'))) {
        // Construct module name
-       $incFile = sprintf("inc/modules/admin/subid-%s.php", sqlEscapeString(getRequestElement('do')));
+       $incFile = sprintf('inc/modules/admin/subid-%s.php', sqlEscapeString(getRequestElement('do')));
 
        // Is the include readable and is the sub id assigned to current admin?
        if (!isUserSubIdAssignedToMember(getRequestElement('id'), getRequestElement('userid'))) {
 
        // Is the include readable and is the sub id assigned to current admin?
        if (!isUserSubIdAssignedToMember(getRequestElement('id'), getRequestElement('userid'))) {
index 23c10716c380ae20cdf4bae5db7143795314d5f4..1d3782e6232277e4471cee1b676f5fd32f622088 100644 (file)
@@ -46,7 +46,7 @@ addYouAreHereLink('admin', __FILE__);
 if (isGetRequestElementSet('access')) {
        // Secure input and construct FQFN
        $access = sqlEscapeString(getRequestElement('access'));
 if (isGetRequestElementSet('access')) {
        // Secure input and construct FQFN
        $access = sqlEscapeString(getRequestElement('access'));
-       $target = sprintf("%slogs/%s", getPath(), $access);
+       $target = sprintf('%slogs/%s', getPath(), $access);
 
        // Is the file valid and readable?
        if (isFileReadable($target)) {
 
        // Is the file valid and readable?
        if (isFileReadable($target)) {
index eaedd39ae4c3b4dbb5554ee22bea7d592420a160..ee6ab11bb7acb11c973bb668bac161317ea0255b 100644 (file)
@@ -70,7 +70,7 @@ foreach ($validLanguages as $lang) {
                }
 
                // Construct english include filename
                }
 
                // Construct english include filename
-               $INC = sprintf("inc/language/%s%s.php", $prefix, $lang);
+               $INC = sprintf('inc/language/%s%s.php', $prefix, $lang);
 
                // Is the file readable?
                if (isIncludeReadable($INC)) {
 
                // Is the file readable?
                if (isIncludeReadable($INC)) {
index cda9129b8f957bef41aa774bb81c245f6db236f4..fc006e5142e67e87c8c103b91320ce21278a53c5 100644 (file)
@@ -47,14 +47,14 @@ addYouAreHereLink('admin', __FILE__);
 $usage = getConfig('usage_base') . '/';
 
 // Init FQFN
 $usage = getConfig('usage_base') . '/';
 
 // Init FQFN
-$FQFN = sprintf("%s%s/index.html",
+$FQFN = sprintf('%s%s/index.html',
        getPath(),
        getConfig('usage_base')
 );
 
 if (isGetRequestElementSet('image')) {
        if (getRequestElement('type') == 'usage') {
        getPath(),
        getConfig('usage_base')
 );
 
 if (isGetRequestElementSet('image')) {
        if (getRequestElement('type') == 'usage') {
-               $FQFN = sprintf("%s%s/usage.png",
+               $FQFN = sprintf('%s%s/usage.png',
                        getPath(),
                        getConfig('usage_base')
                );
                        getPath(),
                        getConfig('usage_base')
                );
@@ -62,7 +62,7 @@ if (isGetRequestElementSet('image')) {
                if (strpos(getRequestElement('image'), chr(92)) > 0) {
                        setGetRequestElement('image', substr(getRequestElement('image'), 0, strpos(getRequestElement('image'), chr(92))));
                } // END - if
                if (strpos(getRequestElement('image'), chr(92)) > 0) {
                        setGetRequestElement('image', substr(getRequestElement('image'), 0, strpos(getRequestElement('image'), chr(92))));
                } // END - if
-               $FQFN = sprintf("%s%s/%s_usage_%s.png",
+               $FQFN = sprintf('%s%s/%s_usage_%s.png',
                        getPath(),
                        getConfig('usage_base'),
                        getRequestElement('type'),
                        getPath(),
                        getConfig('usage_base'),
                        getRequestElement('type'),
@@ -78,7 +78,7 @@ if (isGetRequestElementSet('image')) {
        } // END - if
        doShutdown();
 } elseif (isGetRequestElementSet('usage')) {
        } // END - if
        doShutdown();
 } elseif (isGetRequestElementSet('usage')) {
-       $FQFN = sprintf("%s%s/usage_%s.html",
+       $FQFN = sprintf('%s%s/usage_%s.html',
                getPath(),
                getConfig('usage_base'),
                getRequestElement('usage')
                getPath(),
                getConfig('usage_base'),
                getRequestElement('usage')
index dde138f6677d8b4f43c7b601d16a202e3c6c6e84..a1219a93d98b7b1a2c7f791632bf63c238291f2a 100644 (file)
@@ -52,7 +52,7 @@ if ((!isExtensionActive('')) && (!isAdmin())) {
 } // END - if
 
 // Load the include file
 } // END - if
 
 // Load the include file
-$inc = sprintf("inc/modules/guest/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/guest/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the guest action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the guest action module
        loadIncludeOnce($inc);
index 1d85aba2d6b3629f678f7364b9e488d10c2e3024..dfc7a9036f182b318180518beee4fe15a5bd1755 100644 (file)
@@ -47,7 +47,7 @@ if (!defined('__SECURITY')) {
 addYouAreHereLink('guest', __FILE__);
 
 // Only when one admin link is clicked...
 addYouAreHereLink('guest', __FILE__);
 
 // Only when one admin link is clicked...
-$inc = sprintf("inc/modules/guest/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/guest/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the guest action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the guest action module
        loadIncludeOnce($inc);
index 320ca5ba75423aee48315e7d6342a33caa5928a9..e7a3e95f07e2aa4c27699f71e619cfb0142bc905 100644 (file)
@@ -47,7 +47,7 @@ if (!defined('__SECURITY')) {
 addYouAreHereLink('guest', __FILE__);
 
 // Load the include file
 addYouAreHereLink('guest', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/guest/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/guest/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the guest action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the guest action module
        loadIncludeOnce($inc);
index 2c2acf39ce93df8c2e3534ee1deca3d5cfdf28c1..da2dcd8b44a1863f36b5844382cbea6541ce2529 100644 (file)
@@ -47,7 +47,7 @@ if (!defined('__SECURITY')) {
 addYouAreHereLink('guest', __FILE__);
 
 // Load the include file
 addYouAreHereLink('guest', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/guest/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/guest/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the guest action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the guest action module
        loadIncludeOnce($inc);
index 3997d5553b2e564e053fce0ff96ee89c9ff3a3d7..a1097fa2bf40d0d245e94a472653d174a49398fc 100644 (file)
@@ -51,7 +51,7 @@ if ((!isExtensionActive('sponsor')) && (!isAdmin())) {
 } // END - if
 
 // Load the include file
 } // END - if
 
 // Load the include file
-$inc = sprintf("inc/modules/guest/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/guest/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the guest action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the guest action module
        loadIncludeOnce($inc);
index 7720430d718b30bcf0eea1601c2829e2e1804490..8d4f0d8a73920d17b1536b6cd8c199b80d048e82 100644 (file)
@@ -65,7 +65,7 @@ loadTemplate('guest_menu_content');
 enableBlockMode(FALSE);
 
 // Construct FQFN
 enableBlockMode(FALSE);
 
 // Construct FQFN
-$inc = sprintf("inc/modules/guest/action-%s.php", getAction());
+$inc = sprintf('inc/modules/guest/action-%s.php', getAction());
 
 // Is the file there?
 if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWhat()))) {
 
 // Is the file there?
 if ((isIncludeReadable($inc)) && (isMenuActionValid('guest', getAction(), getWhat()))) {
index 3cb50ada28afd95204392089f7595b8c3edd56b8..0ca8ddcf50a21e1b06f68865e70d4c310a8686b2 100644 (file)
@@ -76,7 +76,7 @@ enableBlockMode(FALSE);
 outputHtml('   </td>
   <td valign="top" align="center" rowspan="3" class="member_content">');
 
 outputHtml('   </td>
   <td valign="top" align="center" rowspan="3" class="member_content">');
 
-$inc = sprintf("inc/modules/member/action-%s.php", $action);
+$inc = sprintf('inc/modules/member/action-%s.php', $action);
 if ((isIncludeReadable($inc)) && (isMenuActionValid('member', getAction(), getWhat()))) {
        // Requested module is available so we load it
        loadInclude($inc);
 if ((isIncludeReadable($inc)) && (isMenuActionValid('member', getAction(), getWhat()))) {
        // Requested module is available so we load it
        loadInclude($inc);
index f63cc9119d0f6fac03f2d1db0259ae949a6de316..5c078f59c2943934f301e52e444d525d25f9ea9e 100644 (file)
@@ -54,7 +54,7 @@ if ((!isExtensionActive('')) && (!isAdmin())) {
 } // END - if
 
 // Load the include file
 } // END - if
 
 // Load the include file
-$inc = sprintf("inc/modules/member/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/member/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
index dc75a76071fc9c66317205676f0b31fe075eca71..349132bf662a7441c3415d5002de00a354aa878b 100644 (file)
@@ -49,7 +49,7 @@ if (!defined('__SECURITY')) {
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/member/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/member/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
index 9458b55c290cfb1719745e02070b33d4939f4f57..d8d2a1d83835d6357a58c93506ea3f262a0a524b 100644 (file)
@@ -54,7 +54,7 @@ if ((!isExtensionActive('bank')) && (!isAdmin())) {
 } // END - if
 
 // Load the include file
 } // END - if
 
 // Load the include file
-$inc = sprintf("inc/modules/member/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/member/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
index 8a31683fcb8a7e530e8c2207a4ad92c94d05756d..74a2f25da94b8ad4694915a3d1c0d377dc6a54ef 100644 (file)
@@ -54,7 +54,7 @@ if ((!isExtensionActive('coupon')) && (!isAdmin())) {
 } // END - if
 
 // Load the include file
 } // END - if
 
 // Load the include file
-$inc = sprintf("inc/modules/member/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/member/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
index cd893fd9183a9073fe699c78e2febf08a383911e..f7df431a4371011d8be2a8b5e8731068f4d380af 100644 (file)
@@ -49,7 +49,7 @@ if (!defined('__SECURITY')) {
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/member/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/member/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
index 65b0b12c819b872a16beb6ec3dc566bd553675a3..678d52730cc75edbde30b992ba47b7c198d77318 100644 (file)
@@ -49,7 +49,7 @@ if (!defined('__SECURITY')) {
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/member/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/member/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
index bfcea1f8bb7af34268d387797e0f8cbf6b8a18ce..7c131b355a7aa4a62ece6a3f7e9d3f8928a5ae2b 100644 (file)
@@ -49,7 +49,7 @@ if (!defined('__SECURITY')) {
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/member/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/member/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
index 80a25ba5564065d8bbc6e6c20f8009c3d440c802..b75ddc423cc670514e2c49acf52e5ddd3c4cada0 100644 (file)
@@ -49,7 +49,7 @@ if (!defined('__SECURITY')) {
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/member/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/member/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
index 83c512509a41a06073e37f9ee68f698c1cb97153..37ad2d092d8639102db12eb45e7983c17fb63b08 100644 (file)
@@ -54,7 +54,7 @@ if ((!isExtensionActive('order')) && (!isAdmin())) {
 } // END - if
 
 // Load the include file
 } // END - if
 
 // Load the include file
-$inc = sprintf("inc/modules/member/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/member/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
index 8171e9d91c8e5773686bdcf72428bfb608309483..4fc9a5df10068987bec5775de441c1f96182f986 100644 (file)
@@ -49,7 +49,7 @@ if (!defined('__SECURITY')) {
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/member/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/member/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
index 92c79feba3e379b1f8600f1d162c7b8380269610..f48093b9419eb5429f560d43e2518ed358bd18ba 100644 (file)
@@ -49,7 +49,7 @@ if (!defined('__SECURITY')) {
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
 addYouAreHereLink('member', __FILE__);
 
 // Load the include file
-$inc = sprintf("inc/modules/member/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/member/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
index 2da109ba38ba83cd7f2baec82c7884338d6013ac..086a107f0ebde8945d380932c7202e1f51fc41bc 100644 (file)
@@ -54,7 +54,7 @@ if ((!isExtensionActive('surfbar')) && (!isAdmin())) {
 } // END - if
 
 // Load the include file
 } // END - if
 
 // Load the include file
-$inc = sprintf("inc/modules/member/what-%s.php", getWhat());
+$inc = sprintf('inc/modules/member/what-%s.php', getWhat());
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
 if (isIncludeReadable($inc)) {
        // Ok, we finally load the member action module
        loadIncludeOnce($inc);
index 166e3b0c5f2e720c0ce36de26838d9d3cd887477..13daec50d815900c488edabb1fc1553f0e8c2d0a 100644 (file)
@@ -91,7 +91,7 @@ if (isFormSent('add_subid')) {
        doGenericXmlTemplateCallback('member_delete_do_user_subid');
 } elseif ((isGetRequestElementSet('do')) && (isGetRequestElementSet('id'))) {
        // Construct module name
        doGenericXmlTemplateCallback('member_delete_do_user_subid');
 } elseif ((isGetRequestElementSet('do')) && (isGetRequestElementSet('id'))) {
        // Construct module name
-       $incFile = sprintf("inc/modules/member/subid-%s.php", sqlEscapeString(getRequestElement('do')));
+       $incFile = sprintf('inc/modules/member/subid-%s.php', sqlEscapeString(getRequestElement('do')));
 
        // Is the include readable and is the sub id assigned to current member?
        if (!isUserSubIdAssignedToMember(getRequestElement('id'))) {
 
        // Is the include readable and is the sub id assigned to current member?
        if (!isUserSubIdAssignedToMember(getRequestElement('id'))) {
index cea8fc2565f8dffda080627bee5e7f3bb5b701ae..6dea4dd47acb3245a8ea719a2b0ba6cfbdeff594 100644 (file)
@@ -176,7 +176,7 @@ switch ($mode) {
                                sendEmail($content['sender']['userid'], '{--TRANSFER_MEMBER_SENDER_SUBJECT--}' . ': ' . $RECIPIENT, $message);
 
                                // At last send admin mail(s)
                                sendEmail($content['sender']['userid'], '{--TRANSFER_MEMBER_SENDER_SUBJECT--}' . ': ' . $RECIPIENT, $message);
 
                                // At last send admin mail(s)
-                               $adminSubject = sprintf("%s (%s->%s)", '{--ADMIN_TRANSFER_SUBJECT--}', $SENDER, $RECIPIENT);
+                               $adminSubject = sprintf('%s (%s->%s)', '{--ADMIN_TRANSFER_SUBJECT--}', $SENDER, $RECIPIENT);
                                sendAdminNotification($adminSubject, 'admin_transfer_points', $content);
 
                                // Transfer is completed
                                sendAdminNotification($adminSubject, 'admin_transfer_points', $content);
 
                                // Transfer is completed
index 0583c16dfa297fa40f8b27d8c7b0adcca0bfee66..c26a12b991c15b93a9df2ac7756cf8b79b7fca2f 100644 (file)
@@ -273,7 +273,7 @@ ORDER BY
 
                                        // Full file name for checking menu
                                        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'sub_what=' . $content['sub_what']);
 
                                        // Full file name for checking menu
                                        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'sub_what=' . $content['sub_what']);
-                                       $inc = sprintf("inc/modules/%s/what-%s.php", $mode, $content['sub_what']);
+                                       $inc = sprintf('inc/modules/%s/what-%s.php', $mode, $content['sub_what']);
                                        if (isIncludeReadable($inc)) {
                                                // Mark currently selected menu - open
                                                if ((!empty($what)) && (($what == $content['sub_what']))) {
                                        if (isIncludeReadable($inc)) {
                                                // Mark currently selected menu - open
                                                if ((!empty($what)) && (($what == $content['sub_what']))) {
@@ -331,7 +331,7 @@ ORDER BY
                                enableBlockMode();
 
                                // Load menu block
                                enableBlockMode();
 
                                // Load menu block
-                               $INC = sprintf("inc/modules/%s/action-%s.php", $mode, $content['action']);
+                               $INC = sprintf('inc/modules/%s/action-%s.php', $mode, $content['action']);
                                if (isFileReadable($INC)) {
                                        // Load include file
                                        if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_begin', TRUE, $mode);
                                if (isFileReadable($INC)) {
                                        // Load include file
                                        if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_begin', TRUE, $mode);
index effe75ed44b102d330cb6d930204a75e77f7dabe..59f4066477cfae03ebc54a4da5160c0b6f3df529 100644 (file)
@@ -1906,4 +1906,4 @@ class PHPMailer {
 
 }
 
 
 }
 
-?>
\ No newline at end of file
+?>