]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-reflist.php
A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / inc / modules / member / what-reflist.php
index fdfbb8d45e2ff01f8ffad683d730c1a4d742e9a4..32bd0bd7ff6d437f62e82b9ef1c14f92dd0e412c 100644 (file)
@@ -42,11 +42,11 @@ if (!defined('__SECURITY')) {
        require($INC);
 } elseif (!IS_MEMBER()) {
        // User is not logged in
-       LOAD_URL("modules.php?module=index");
+       LOAD_URL('modules.php?module=index');
 }
 
 // Add description as navigation point
-ADD_DESCR("member", __FILE__);
+ADD_DESCR('member', __FILE__);
 
 // Load all referal levels
 $result = SQL_QUERY_ESC("SELECT r.level, r.percents
@@ -58,10 +58,10 @@ ORDER BY r.level ASC",
 // Are there some entries? (Shall be!)
 if (SQL_NUMROWS($result) > 0) {
        // List all levels
-       $OUT = "";
+       $OUT = '';
        while ($content = SQL_FETCHARRAY($result)) {
                // Init variables
-               $rows = "";
+               $rows = '';
                $counter = 0;
                $SW = 2;
 
@@ -96,7 +96,7 @@ if (SQL_NUMROWS($result) > 0) {
        LOAD_TEMPLATE("member_ref_list", false, $OUT);
 } else {
        // No entries
-       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('MEMBER_REFBACK_NO_ENTRIES'));
+       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('MEMBER_REFBACK_NO_ENTRIES'));
 }
 
 // Free result