Passed
Push — master ( eda8e1...1d0b19 )
by Kevin
08:01 queued 10s
created
html/user/apps.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
             echo "        <beta/>\n";
49 49
         }
50 50
     } else {
51
-        $b = $app->beta?" (beta test)":"";
51
+        $b = $app->beta ? " (beta test)" : "";
52 52
         echo "
53 53
             <tr><th class=\"bg-primary\" colspan=4>$app->user_friendly_name$b</th></tr>
54 54
             <tr>
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     }
62 62
     foreach ($platforms as $platform) {
63 63
         $avs = latest_avs_app_platform($app->id, $platform->id);
64
-        foreach($avs as $av) {
64
+        foreach ($avs as $av) {
65 65
             $create_time_f = pretty_time_str($av->create_time);
66 66
             if ($xml) {
67 67
                 echo "    <version>\n";
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
                 $gf = $av->expavg_credit/200;
84 84
                 $total_gf += $gf;
85 85
                 $gf = number_format($gf, 0);
86
-                $b = $av->beta?" (beta test)":"";
86
+                $b = $av->beta ? " (beta test)" : "";
87 87
                 echo "<tr>
88 88
                     <td>$platform->user_friendly_name</td>
89 89
                     <td>$version_num_f$b</td>
Please login to merge, or discard this patch.
html/user/forum_moderate_post_action.php 3 patches
Switch Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,12 +36,12 @@
 block discarded – undo
36 36
 
37 37
 function hide_explanation() {
38 38
     switch (post_int("category", true)) {
39
-        case 1: $c = "Obscene"; break;
40
-        case 2: $c = "Flame/Hate mail"; break;
41
-        case 3: $c = "Commercial spam"; break;
42
-        case 4: $c = "Double post"; break;
43
-        case 5: $c = "User Request"; break;
44
-        default: $c = "Other"; break;
39
+    case 1: $c = "Obscene"; break;
40
+    case 2: $c = "Flame/Hate mail"; break;
41
+    case 3: $c = "Commercial spam"; break;
42
+    case 4: $c = "Double post"; break;
43
+    case 5: $c = "User Request"; break;
44
+    default: $c = "Other"; break;
45 45
     }
46 46
     $x = "\nYour post was categorized as ".$c;
47 47
     $x .= mod_comment();
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 function mod_comment() {
28 28
     $x = "";
29 29
     $reason = post_str('reason', true);
30
-    if ($reason){
30
+    if ($reason) {
31 31
         $x .= "\nModerator comment: $reason
32 32
 ";
33 33
     }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
 // See if "action" is provided - either through post or get
64 64
 if (!post_str('action', true)) {
65
-    if (!get_str('action', true)){
65
+    if (!get_str('action', true)) {
66 66
         error_page(tra("You must specify an action..."));
67 67
     } else {
68 68
         $action = get_str('action');
@@ -72,14 +72,14 @@  discard block
 block discarded – undo
72 72
 }
73 73
 
74 74
 $explanation = null;
75
-if ($action=="hide"){
75
+if ($action == "hide") {
76 76
     $result = hide_post($post, $thread, $forum);
77 77
     $action_name = "hidden";
78 78
     $explanation = hide_explanation();
79
-} elseif ($action=="unhide"){
79
+} elseif ($action == "unhide") {
80 80
     $result = unhide_post($post, $thread, $forum);
81 81
     $action_name = "unhidden";
82
-} elseif ($action=="delete"){
82
+} elseif ($action == "delete") {
83 83
     $result = delete_post($post, $thread, $forum);
84 84
     if (!$result) error_page("Can't delete post");
85 85
     page_head("Post deleted");
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     }
97 97
     page_tail();
98 98
     exit;
99
-} elseif ($action=="move"){
99
+} elseif ($action == "move") {
100 100
     $destid = post_int('threadid');
101 101
     $new_thread = BoincThread::lookup_id($destid);
102 102
     if (!$new_thread) error_page("No such thread");
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
 ";
118 118
     $explanation .= mod_comment();
119 119
     $action_name = "moved to another thread";
120
-} elseif ($action=="banish_user"){
120
+} elseif ($action == "banish_user") {
121 121
     $auth = false;
122 122
     if (defined("MODERATORS_CAN_BANISH") && $user->prefs->privilege(S_MODERATOR)) {
123 123
         $auth = true;
@@ -164,5 +164,5 @@  discard block
 block discarded – undo
164 164
 
165 165
 header('Location: forum_thread.php?id='.$thread->id);
166 166
 
167
-$cvs_version_tracker[]="\$Id$";  //Generated automatically - do not edit
167
+$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit
168 168
 ?>
Please login to merge, or discard this patch.
Braces   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 function mod_comment() {
28 28
     $x = "";
29 29
     $reason = post_str('reason', true);
30
-    if ($reason){
30
+    if ($reason) {
31 31
         $x .= "\nModerator comment: $reason
32 32
 ";
33 33
     }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
 // See if "action" is provided - either through post or get
64 64
 if (!post_str('action', true)) {
65
-    if (!get_str('action', true)){
65
+    if (!get_str('action', true)) {
66 66
         error_page(tra("You must specify an action..."));
67 67
     } else {
68 68
         $action = get_str('action');
@@ -72,14 +72,14 @@  discard block
 block discarded – undo
72 72
 }
73 73
 
74 74
 $explanation = null;
75
-if ($action=="hide"){
75
+if ($action=="hide") {
76 76
     $result = hide_post($post, $thread, $forum);
77 77
     $action_name = "hidden";
78 78
     $explanation = hide_explanation();
79
-} elseif ($action=="unhide"){
79
+} elseif ($action=="unhide") {
80 80
     $result = unhide_post($post, $thread, $forum);
81 81
     $action_name = "unhidden";
82
-} elseif ($action=="delete"){
82
+} elseif ($action=="delete") {
83 83
     $result = delete_post($post, $thread, $forum);
84 84
     if (!$result) error_page("Can't delete post");
85 85
     page_head("Post deleted");
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     }
97 97
     page_tail();
98 98
     exit;
99
-} elseif ($action=="move"){
99
+} elseif ($action=="move") {
100 100
     $destid = post_int('threadid');
101 101
     $new_thread = BoincThread::lookup_id($destid);
102 102
     if (!$new_thread) error_page("No such thread");
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
 ";
118 118
     $explanation .= mod_comment();
119 119
     $action_name = "moved to another thread";
120
-} elseif ($action=="banish_user"){
120
+} elseif ($action=="banish_user") {
121 121
     $auth = false;
122 122
     if (defined("MODERATORS_CAN_BANISH") && $user->prefs->privilege(S_MODERATOR)) {
123 123
         $auth = true;
Please login to merge, or discard this patch.
html/user/host_edit_form.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     if (!hosts_compatible($host, $host2, $detail)) continue;
51 51
     $hosts[] = $host2;
52 52
     $nhosts++;
53
-    if ($nhosts==500) break;
53
+    if ($nhosts == 500) break;
54 54
 }
55 55
 if ($nhosts == 1) {
56 56
     echo "<br>".tra("No hosts are eligible for merging with this one.");
@@ -90,14 +90,14 @@  discard block
 block discarded – undo
90 90
     <script>
91 91
         function set_all() {
92 92
 ";
93
-for ($i=1; $i<$nhosts; $i++) {
93
+for ($i = 1; $i < $nhosts; $i++) {
94 94
     echo "document.host_list.id_$i.checked=1;\n";
95 95
 }
96 96
 echo "
97 97
         }
98 98
         function clear_all() {
99 99
 ";
100
-for ($i=1; $i<$nhosts; $i++) {
100
+for ($i = 1; $i < $nhosts; $i++) {
101 101
     echo "document.host_list.id_$i.checked=0;\n";
102 102
 }
103 103
 echo "
Please login to merge, or discard this patch.
html/user/user_search.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         <td align=right>", format_credit($user->expavg_credit), "</td>
38 38
         <td align=right>", format_credit_large($user->total_credit), "</td>
39 39
         <td>", $user->country, "</td>
40
-        <td>", time_str($user->create_time),"</td>
40
+        <td>", time_str($user->create_time), "</td>
41 41
         </tr>
42 42
     ";
43 43
 }
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
     $where = "true";
84 84
     $search_string = get_str('search_string');
85 85
     if (strlen($search_string)) {
86
-        if (strlen($search_string)<3) {
86
+        if (strlen($search_string) < 3) {
87 87
             error_page(tra("search string must be at least 3 characters"));
88 88
         }
89 89
         $s = BoincDb::escape_string($search_string);
@@ -111,17 +111,17 @@  discard block
 block discarded – undo
111 111
     $search_type = get_str('search_type', true);
112 112
     $order_clause = "id desc";
113 113
     if ($search_type == 'rac') {
114
-        $order_clause ="expavg_credit desc";
114
+        $order_clause = "expavg_credit desc";
115 115
     } else if ($search_type == 'total') {
116
-        $order_clause ="total_credit desc";
116
+        $order_clause = "total_credit desc";
117 117
     }
118 118
 
119 119
     $fields = "id, create_time, name, country, total_credit, expavg_credit, teamid, url, has_profile, donated";
120 120
     $users = BoincUser::enum_fields($fields, $where, "order by $order_clause limit 100");
121 121
     page_head(tra("User search results"));
122
-    $n=0;
122
+    $n = 0;
123 123
     foreach ($users as $user) {
124
-        if ($n==0) {
124
+        if ($n == 0) {
125 125
             start_table('table-striped');
126 126
             row_heading_array(
127 127
                 array(
@@ -152,5 +152,5 @@  discard block
 block discarded – undo
152 152
     user_search_form();
153 153
 }
154 154
 
155
-$cvs_version_tracker[]="\$Id: user_search.php 13586 2007-09-13 09:46:36Z Rytis $";  //Generated automatically - do not edit
155
+$cvs_version_tracker[] = "\$Id: user_search.php 13586 2007-09-13 09:46:36Z Rytis $"; //Generated automatically - do not edit
156 156
 ?>
Please login to merge, or discard this patch.
html/ops/db_action.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@
 block discarded – undo
220 220
         }
221 221
     }
222 222
     if ($detail == "low" || $table == "profile") {
223
-         end_table();
223
+            end_table();
224 224
     }
225 225
     _mysql_free_result($result);
226 226
 } else {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 // For display, convert query string characters < and > into 'html form' so
65 65
 // that they will be displayed.
66 66
 //
67
-$html_text=str_replace('<', '&lt;', str_replace('>', '&gt;', $main_query));
67
+$html_text = str_replace('<', '&lt;', str_replace('>', '&gt;', $main_query));
68 68
 
69 69
 echo "<p>Query: <b>$html_text</b><p>\n";
70 70
     
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 if ($result) {
160 160
     if ($detail == "low") {
161 161
         start_table('table-striped');
162
-        switch($table) {
162
+        switch ($table) {
163 163
         case "result":
164 164
             result_short_header();
165 165
             break;
@@ -228,5 +228,5 @@  discard block
 block discarded – undo
228 228
 }
229 229
 
230 230
 admin_page_tail();
231
-$cvs_version_tracker[]="\$Id$";  //Generated automatically - do not edit
231
+$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit
232 232
 ?>
Please login to merge, or discard this patch.
html/ops/bossa_admin.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -101,9 +101,9 @@  discard block
 block discarded – undo
101 101
     ";
102 102
     start_table();
103 103
     row1("User settings");
104
-    $x = ($flags&BOLT_FLAGS_SHOW_ALL)?"checked":"";
104
+    $x = ($flags&BOLT_FLAGS_SHOW_ALL) ? "checked" : "";
105 105
     row2("Show hidden apps?", "<input type=checkbox name=show_all $x>");
106
-    $x = ($flags&BOLT_FLAGS_DEBUG)?"checked":"";
106
+    $x = ($flags&BOLT_FLAGS_DEBUG) ? "checked" : "";
107 107
     row2("Show debugging output?", "<input type=checkbox name=debug $x>");
108 108
     row2("", "<input class=\"btn btn-default\" type=submit value=\"Update user\">");
109 109
     end_table();
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
     foreach ($jobs as $job) {
172 172
         $t = time_str($job->create_time);
173 173
         $s = job_state_string($job->state);
174
-        $j = $i++ % 2;
174
+        $j = $i++%2;
175 175
         echo "<tr class=row$j>
176 176
             <td>
177 177
                 $job->id <a href=bossa_admin.php?action=job_show_insts&job_id=$job->id>(details)</a><br>
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
         table_row(
204 204
             "$batch->id | <a href=bossa_admin.php?action=show_batch&batch_id=$batch->id>show jobs</a> | <a href=bossa_admin.php?action=clear_batch_confirm&batch_id=$batch->id>delete instances</a>",
205 205
             "$batch->name",
206
-            $batch->calibration?"yes":"no",
206
+            $batch->calibration ? "yes" : "no",
207 207
             time_str($batch->create_time),
208 208
             BossaJob::count("batch_id=$batch->id"),
209 209
             BossaJob::count("batch_id=$batch->id and state=2")
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
     if (!$time_estimate) $time_estimate = 60;
334 334
     $time_limit = get_str('time_limit');
335 335
     if (!$time_limit) $time_limit = 3600;
336
-    $calibration_frac = get_str('calibration_frac' , true);
336
+    $calibration_frac = get_str('calibration_frac', true);
337 337
     if (!$calibration_frac) $calibration_frac = 0;
338 338
     $now = time();
339 339
     $app_id = BossaApp::insert("(create_time, name, short_name, description, bolt_course_id, time_estimate, time_limit, calibration_frac) values ($now, '$name', '$short_name', '$description', $courseid, $time_estimate, $time_limit, $calibration_frac)");
Please login to merge, or discard this patch.
html/ops/block_host.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -20,16 +20,16 @@  discard block
 block discarded – undo
20 20
 
21 21
 // TODO: document; use new DB interface
22 22
 
23
-include_once( "../inc/db.inc" );
24
-include_once( "../inc/util.inc" );
25
-include_once( "../inc/db_ops.inc" );
26
-include_once( "../inc/util_ops.inc" );
27
-include_once( "../inc/prefs.inc" );
23
+include_once("../inc/db.inc");
24
+include_once("../inc/util.inc");
25
+include_once("../inc/db_ops.inc");
26
+include_once("../inc/util_ops.inc");
27
+include_once("../inc/prefs.inc");
28 28
 
29 29
 db_init();
30 30
 
31 31
 if (get_int('hostid')) {
32
-    $hostid = get_int( 'hostid' );
32
+    $hostid = get_int('hostid');
33 33
 } else {
34 34
     error_page("no hostid");
35 35
 }
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
 admin_page_head($title);
41 41
 
42
-if($hostid > 0) {
42
+if ($hostid > 0) {
43 43
     $result = _mysql_query("UPDATE host SET max_results_day=1 WHERE id=".$hostid);
44 44
 }
45 45
 
Please login to merge, or discard this patch.
html/ops/problem_host.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -116,14 +116,14 @@
 block discarded – undo
116 116
 } else {
117 117
     $host = BoincHost::lookup_id($hostid);
118 118
     if (!$host) {
119
-    	echo "<h2>No host with that ID</h2>
119
+        echo "<h2>No host with that ID</h2>
120 120
 	 	<center>Please <a href=\"problem_host.php\">try again</a></center>";
121 121
     } else {
122 122
         $user = BoincUser::lookup_id($host->userid);
123
-    	echo "<a href=\"problem_host.php\">Do another?</a><br><br>";
124
-    	send_problem_email($user, $host);
125
-    	echo "Email to ".$user->email_addr." has been sent.<br>";
126
-	}
123
+        echo "<a href=\"problem_host.php\">Do another?</a><br><br>";
124
+        send_problem_email($user, $host);
125
+        echo "Email to ".$user->email_addr." has been sent.<br>";
126
+    }
127 127
 }
128 128
 
129 129
 admin_page_tail();
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -37,12 +37,12 @@  discard block
 block discarded – undo
37 37
     Average credit: ".$host->expavg_credit."
38 38
     Average update time: ".time_str($host->expavg_time)."
39 39
     IP address: $host->last_ip_addr (same the last $host->nsame_ip_addr times)
40
-    Domain name: " . $host->domain_name;
40
+    Domain name: ".$host->domain_name;
41 41
     $x = $host->timezone/3600;
42
-    if ($x >= 0) $x="+$x";
43
-    $host_content.="
42
+    if ($x >= 0) $x = "+$x";
43
+    $host_content .= "
44 44
     Local Time = UTC $x hours
45
-    Number of CPUs: " . $host->p_ncpus."
45
+    Number of CPUs: ".$host->p_ncpus."
46 46
     CPU: $host->p_vendor $host->p_model
47 47
     FP ops/sec: ".$host->p_fpops."
48 48
     Int ops/sec: ".$host->p_iops."
@@ -50,28 +50,28 @@  discard block
 block discarded – undo
50 50
     Operating System: $host->os_name $host->os_version";
51 51
     $x = $host->m_nbytes/(1024*1024);
52 52
     $y = round($x, 2);
53
-    $host_content.="
53
+    $host_content .= "
54 54
     Memory: $y MB";
55 55
     $x = $host->m_cache/1024;
56 56
     $y = round($x, 2);
57
-    $host_content.="
57
+    $host_content .= "
58 58
     Cache: $y KB";
59 59
     $x = $host->m_swap/(1024*1024);
60 60
     $y = round($x, 2);
61
-    $host_content.="
61
+    $host_content .= "
62 62
     Swap Space: $y MB";
63 63
     $x = $host->d_total/(1024*1024*1024);
64 64
     $y = round($x, 2);
65
-    $host_content.="
65
+    $host_content .= "
66 66
     Total Disk Space: $y GB";
67 67
     $x = $host->d_free/(1024*1024*1024);
68 68
     $y = round($x, 2);
69
-    $host_content.="
69
+    $host_content .= "
70 70
     Free Disk Space: $y GB
71 71
     Avg network bandwidth (upstream): $host->n_bwup bytes/sec
72 72
     Avg network bandwidth (downstream): $host->n_bwdown bytes/sec";
73 73
     $x = $host->avg_turnaround/86400;
74
-    $host_content.="
74
+    $host_content .= "
75 75
     Average turnaround: ".round($x, 2)." days
76 76
     Number of RPCs: $host->rpc_seqno
77 77
     Last RPC: ".time_str($host->rpc_time)."
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 installation.  Could you please have a look at it?
89 89
 
90 90
 Sincerely,
91
-        The ". PROJECT." team
91
+        The ".PROJECT." team
92 92
 ";
93 93
 $body .= "
94 94
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 " . $host_content."
97 97
 
98 98
 For further information and assistance with ".PROJECT." go to $master_url";
99
-    echo nl2br($body) . "<br><br>"; 
99
+    echo nl2br($body)."<br><br>"; 
100 100
     return send_email($user, $subject, $body);
101 101
 
102 102
 }
@@ -127,5 +127,5 @@  discard block
 block discarded – undo
127 127
 }
128 128
 
129 129
 admin_page_tail();
130
-$cvs_version_tracker[]="\$Id$";  //Generated automatically - do not edit
130
+$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit
131 131
 ?>
Please login to merge, or discard this patch.
html/ops/clean_cache.php 3 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -24,17 +24,17 @@
 block discarded – undo
24 24
 set_time_limit(0);
25 25
 
26 26
 function cache_check_diskspace2(){
27
-   $too_old = 86400;
28
-   while (1) {
29
-       $f = disk_free_space("../cache");
30
-       $u = disk_usage("../cache");
31
-       echo "free: $f used: $u\n";
32
-       if ($f > MIN_FREE_SPACE && $u < MAX_CACHE_USAGE) {
33
-           break;
34
-       }
35
-       clean_cache($too_old, "../cache");
36
-       $too_old/=2;
37
-   }
27
+    $too_old = 86400;
28
+    while (1) {
29
+        $f = disk_free_space("../cache");
30
+        $u = disk_usage("../cache");
31
+        echo "free: $f used: $u\n";
32
+        if ($f > MIN_FREE_SPACE && $u < MAX_CACHE_USAGE) {
33
+            break;
34
+        }
35
+        clean_cache($too_old, "../cache");
36
+        $too_old/=2;
37
+    }
38 38
 }
39 39
 
40 40
 cache_check_diskspace2();
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
 set_time_limit(0);
25 25
 
26
-function cache_check_diskspace2(){
26
+function cache_check_diskspace2() {
27 27
    $too_old = 86400;
28 28
    while (1) {
29 29
        $f = disk_free_space("../cache");
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
            break;
34 34
        }
35 35
        clean_cache($too_old, "../cache");
36
-       $too_old/=2;
36
+       $too_old /= 2;
37 37
    }
38 38
 }
39 39
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
 set_time_limit(0);
25 25
 
26
-function cache_check_diskspace2(){
26
+function cache_check_diskspace2() {
27 27
    $too_old = 86400;
28 28
    while (1) {
29 29
        $f = disk_free_space("../cache");
Please login to merge, or discard this patch.