]> git.mxchange.org Git - mailer.git/blobdiff - surfbar.php
Functions renamed to new naming convetion, TODOs.txt updated
[mailer.git] / surfbar.php
index 7a328c8f202d4ccf3ac92540cce4ae11fbb2b759..6d70c83dda3a4617c2d6bdbe4ff3529decc0bfba 100644 (file)
@@ -70,13 +70,13 @@ if (isInstalled()) {
        SURFBAR_HANDLE_SELF_MAINTENANCE();
 
        // Is there a check value?
-       if ((SURFBAR_CHECK_RELOAD_FULL()) || ((REQUEST_ISSET_GET(('frame'))) && (in_array(REQUEST_GET('frame'), array('stop', 'stop2', 'stats', 'textlinks'))))) {
+       if ((SURFBAR_CHECK_RELOAD_FULL()) || ((REQUEST_ISSET_GET('frame')) && (in_array(REQUEST_GET('frame'), array('stop', 'stop2', 'stats', 'textlinks'))))) {
                // Reload-lock is full, surfbar stopped so...
                // Load header
                loadIncludeOnce('inc/header.php');
 
                // Load template
-               if (((REQUEST_ISSET_GET(('frame'))) && (REQUEST_GET('frame') == 'stop')) || (!REQUEST_ISSET_GET(('frame')))) {
+               if (((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'stop')) || (!REQUEST_ISSET_GET('frame'))) {
                        // Load template for "start" page
                        LOAD_TEMPLATE('surfbar_frame_start');
 
@@ -84,8 +84,8 @@ if (isInstalled()) {
                        LOAD_TEMPLATE('surfbar_start_banner');
 
                        // This makes the footer appear again
-                       REQUEST_UNSET_GET(('frame'));
-               } elseif ((REQUEST_ISSET_GET(('frame'))) && (REQUEST_GET('frame') == 'stats')) {
+                       REQUEST_UNSET_GET('frame');
+               } elseif ((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'stats')) {
                        // Get total points amount
                        $points = GET_TOTAL_DATA(getUserId(), 'user_points', 'points') - GET_TOTAL_DATA(getUserId(), 'user_data', 'used_points');
 
@@ -103,7 +103,7 @@ if (isInstalled()) {
 
                        // Load template for "stats" page
                        LOAD_TEMPLATE('surfbar_frame_stats', false, $content);
-               } elseif ((REQUEST_ISSET_GET(('frame'))) && (REQUEST_GET('frame') == 'textlinks')) {
+               } elseif ((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'textlinks')) {
                        // Prepare content
                        $content = array(
                                'online'   => SURFBAR_DETERMINE_TOTAL_ONLINE(),
@@ -155,7 +155,7 @@ if (isInstalled()) {
                $templateName = SURFBAR_DETERMINE_TEMPLATE_NAME();
 
                // Frame "top" set?
-               if ((REQUEST_ISSET_GET(('frame'))) && (REQUEST_GET('frame') == 'top')) {
+               if ((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'top')) {
                        // Determine next id
                        $nextId = SURFBAR_DETERMINE_NEXT_ID();
 
@@ -180,9 +180,9 @@ if (isInstalled()) {
                                // Load new URL
                                SURFBAR_RELOAD_TO_STOP_PAGE('stop2');
                        }
-               } elseif ((REQUEST_ISSET_GET(('frame'))) && (REQUEST_GET('frame') == 'start')) {
+               } elseif ((REQUEST_ISSET_GET('frame')) && (REQUEST_GET('frame') == 'start')) {
                        // Starter frame found so let the footer display
-                       REQUEST_UNSET_GET(('frame'));
+                       REQUEST_UNSET_GET('frame');
                } else {
                        // Load header in frameset mode
                        $isFrameset = true;