Convention applied
[mailer.git] / surfbar.php
index 7a328c8f202d4ccf3ac92540cce4ae11fbb2b759..8f313fd4b3baadd025c05ab9bd77c2c7282c3b73 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(),
@@ -118,10 +118,10 @@ if (isInstalled()) {
                                'restart'   => getConfig('surfbar_restart_time'),
                                'start'     => str_repeat('X', strlen(getConfig('surfbar_restart_time'))),
                                'autostart' => (getConfig('surfbar_autostart') == 'Y') ? 'true' : 'false'
-                               );
+                       );
 
-                               // Load template for stopped surfbar
-                               LOAD_TEMPLATE('surfbar_stopped', false, $content);
+                       // Load template for stopped surfbar
+                       LOAD_TEMPLATE('surfbar_stopped', false, $content);
                }
        } elseif ((REQUEST_ISSET_GET(('check'))) && (REQUEST_ISSET_GET('id')) && (REQUEST_ISSET_GET(('salt')))) {
                // Dummy next id get
@@ -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;