More double- to single-quotes rewritten
[mailer.git] / inc / libs / doubler_functions.php
index f08adfbccdf4810ff063ac6074df7efde12673c7..a5ab337851787127fcd52100af827005d06b79ed 100644 (file)
@@ -50,11 +50,11 @@ function DOUBLER_GENERATE_TABLE ($uid="0", $done='N', $ref='N', $sort="ASC") {
        if ($uid > 0) {
                // Load entries only from a single user
                $add = " AND userid='".bigintval($uid)."'";
-               $MODE = 'member'; $COLS = "4"; $DT_MODE = "2";
+               $mode = 'member'; $COLS = "4"; $DT_MODE = "2";
                $NOT_FOUND = getMessage('DOUBLER_MEMBER_NO_ENTRIES_FOUND');
        } else {
                // Guest mode!
-               $MODE = 'guest'; $COLS = "3"; $DT_MODE = "3";
+               $mode = 'guest'; $COLS = "3"; $DT_MODE = "3";
                $NOT_FOUND = getMessage('DOUBLER_GUEST_NO_ENTRIES_FOUND');
        }
 
@@ -83,8 +83,8 @@ LIMIT ".$limit, __FUNCTION__, __LINE__);
                        // Rewrite userid/refid only if admin is in
                        if (IS_ADMIN()) {
                                // Set links to admin area
-                               if ($content['userid'] > 0) { $content['userid'] = ADMIN_USER_PROFILE_LINK($content['userid']); } else { $content['userid'] = "---"; }
-                               if ($content['refid'] > 0)  { $content['refid']  = ADMIN_USER_PROFILE_LINK($content['refid']);  } else { $content['refid']  = "---"; }
+                               if ($content['userid'] > 0) { $content['userid'] = ADMIN_USER_PROFILE_LINK($content['userid']); } else { $content['userid'] = '---'; }
+                               if ($content['refid'] > 0)  { $content['refid']  = ADMIN_USER_PROFILE_LINK($content['refid']);  } else { $content['refid']  = '---'; }
                        } // END - if
 
                        // Prepare data for the row template
@@ -97,7 +97,7 @@ LIMIT ".$limit, __FUNCTION__, __LINE__);
                        );
 
                        // Load template and switch color
-                       $OUT .= LOAD_TEMPLATE($MODE."_doubler_list_rows", true, $content);
+                       $OUT .= LOAD_TEMPLATE($mode."_doubler_list_rows", true, $content);
                        $SW = 3 - $SW;
                }
 
@@ -113,7 +113,7 @@ LIMIT ".$limit, __FUNCTION__, __LINE__);
        }
 
        // Return template
-       return LOAD_TEMPLATE($MODE."_doubler_list", true, $OUT);
+       return LOAD_TEMPLATE($mode."_doubler_list", true, $OUT);
 }
 
 //