Passed
Pull Request — master (#4692)
by David
09:04
created
html/ops/db_update.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
     do_query("alter table host add max_results_day integer not null");
275 275
 }
276 276
 
277
-function update_4_20_2005(){
277
+function update_4_20_2005() {
278 278
     do_query("ALTER TABLE `thread` ADD `sticky` TINYINT UNSIGNED DEFAULT '0' NOT NULL");
279 279
     do_query("ALTER TABLE `forum` ADD `post_min_total_credit` INT NOT NULL AFTER `posts`");
280 280
     do_query("ALTER TABLE `forum` ADD `post_min_expavg_credit` INT NOT NULL AFTER `posts`");
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
     do_query("ALTER TABLE `forum_preferences` ADD `last_post` INT( 14 ) UNSIGNED NOT NULL AFTER `posts`");
285 285
 }
286 286
 
287
-function update_4_30_2005(){
287
+function update_4_30_2005() {
288 288
     do_query("ALTER TABLE `forum_preferences` ADD `ignore_sticky_posts` TINYINT( 1 ) UNSIGNED NOT NULL");
289 289
 }    
290 290
 
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
     do_query("update user set country='Macedonia' where country='Macedonia, The Former Yugoslav Republic of'");
312 312
 }
313 313
 
314
-function update_11_24_2005(){
314
+function update_11_24_2005() {
315 315
     do_query("ALTER TABLE `forum_preferences` ADD `minimum_wrap_postcount` INT DEFAULT '100' NOT NULL AFTER `high_rating_threshold` ,
316 316
 ADD `display_wrap_postcount` INT DEFAULT '75' NOT NULL AFTER `minimum_wrap_postcount`");
317 317
 }
@@ -616,7 +616,7 @@  discard block
 block discarded – undo
616 616
     ");
617 617
 }
618 618
 
619
-function update_10_05_2008(){
619
+function update_10_05_2008() {
620 620
     do_query("alter table forum_preferences add highlight_special tinyint default '1' not null");
621 621
 }
622 622
 
@@ -1045,7 +1045,7 @@  discard block
 block discarded – undo
1045 1045
 // This used to be the Subversion version#,
1046 1046
 // but with Git we just use sequential integers
1047 1047
 //
1048
-$db_updates = array (
1048
+$db_updates = array(
1049 1049
     array(18490, "update_6_16_2009"),
1050 1050
     array(19001, "update_9_3_2009"),
1051 1051
     array(20807, "update_3_5_2010"),
Please login to merge, or discard this patch.
html/ops/test_job_file.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     $post = array();
59 59
     $post["request"] = $xml;
60 60
     if ($req->type == "upload") {
61
-        $i=0;
61
+        $i = 0;
62 62
         foreach ($files as $f) {
63 63
             if ($f['path'] != "") {
64 64
                 $post["file_$i"] = '@'.$f['path'];
@@ -70,9 +70,9 @@  discard block
 block discarded – undo
70 70
     curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
71 71
     $reply = curl_exec($ch);
72 72
     if ($reply) {
73
-        print $reply . "\n";
73
+        print $reply."\n";
74 74
     } else {
75
-        print curl_error($ch) . "\n";
75
+        print curl_error($ch)."\n";
76 76
     }
77 77
     curl_close($ch);
78 78
 }
Please login to merge, or discard this patch.
html/ops/clear_host.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,5 +29,5 @@
 block discarded – undo
29 29
 echo "Host RPC time cleared for host ID: $hostid\n";
30 30
 
31 31
 admin_page_tail();
32
-$cvs_version_tracker[]="\$Id$";  //Generated automatically - do not edit
32
+$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit
33 33
 ?>
Please login to merge, or discard this patch.
html/ops/update_forum_activities.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     }
41 41
     if ($is_helpdesk) {
42 42
         $diff = ($now - $thread->create_time)/86400;
43
-        $activity = ($thread->sufferers+1)/$diff;
43
+        $activity = ($thread->sufferers + 1)/$diff;
44 44
         echo "thread $thread->id helpdesk $diff $activity\n";
45 45
     } else {
46 46
         $posts = BoincPost::enum("thread=$thread->id");
Please login to merge, or discard this patch.
html/ops/sample_table_stats.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -26,25 +26,25 @@
 block discarded – undo
26 26
     row_array(array("Name", "Engine", "Version", "Row Format", "Rows", "Avg Row Length (KB)", "Data Length (MB)", "Max Data Length (MB)", "Index Length (MB)", "Data free (MB)", "Create Time", "Update Time", "Check Time", "Create Options", "Comment"));
27 27
     _mysql_select_db($db);
28 28
     $result = _mysql_query("show table status");
29
-    while($row = _mysql_fetch_array($result)) {
29
+    while ($row = _mysql_fetch_array($result)) {
30 30
         $size += ($row["Data_length"] + $row["Index_length"]);
31 31
         $engine = $row["Engine"];
32 32
         if (!$engine) $engine = $row["Type"];
33 33
         row_array(array(
34 34
             $row["Name"],
35 35
             $engine,
36
-            $row["Version"] ,
37
-            $row["Row_format"] ,
38
-            $row["Rows"] ,
39
-            round($row["Avg_row_length"]/1024,2) ,
40
-            round($row["Data_length"]/(1024*1024),2) ,
41
-            round($row["Max_data_length"]/(1024*1024),2) ,
42
-            round($row["Index_length"]/(1024*1024),2) ,
43
-            round($row["Data_free"]/(1024*1024),2) ,
44
-            $row["Create_time"] ,
45
-            $row["Update_time"] ,
46
-            $row["Check_time"] ,
47
-            $row["Create_options"] ,
36
+            $row["Version"],
37
+            $row["Row_format"],
38
+            $row["Rows"],
39
+            round($row["Avg_row_length"]/1024, 2),
40
+            round($row["Data_length"]/(1024*1024), 2),
41
+            round($row["Max_data_length"]/(1024*1024), 2),
42
+            round($row["Index_length"]/(1024*1024), 2),
43
+            round($row["Data_free"]/(1024*1024), 2),
44
+            $row["Create_time"],
45
+            $row["Update_time"],
46
+            $row["Check_time"],
47
+            $row["Create_options"],
48 48
             $row["Comment"]
49 49
         ));
50 50
     }
Please login to merge, or discard this patch.
html/ops/bolt_compare.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,9 +122,9 @@
 block discarded – undo
122 122
         <input type=hidden name=xset_name value=\"$xset_name\">
123 123
         <table width=600><tr><td>
124 124
     ";
125
-    filter_form($filter?$filter->name():"", $filter_cat);
125
+    filter_form($filter ? $filter->name() : "", $filter_cat);
126 126
     echo "</td><td>";
127
-    breakdown_form($breakdown?$breakdown->name():"");
127
+    breakdown_form($breakdown ? $breakdown->name() : "");
128 128
     echo "
129 129
         </td></tr></table>
130 130
         <p>
Please login to merge, or discard this patch.
html/ops/bossa_example4_make_jobs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     exit("Usage: bossa_example4_make_jobs.php --dir d\n");
56 56
 }
57 57
 
58
-for ($i=1; $i<$argc; $i++) {
58
+for ($i = 1; $i < $argc; $i++) {
59 59
     if ($argv[$i] == '--dir') $dir = $argv[++$i];
60 60
     else usage();
61 61
 }
Please login to merge, or discard this patch.
html/ops/db_cleanse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     $n = 0;
52 52
     while (1) {
53 53
         $n++;
54
-        if ($n % 1000 == 0) echo "$n\n";
54
+        if ($n%1000 == 0) echo "$n\n";
55 55
         $x = fgets($fres);
56 56
         if (!$x) break;
57 57
         list($reswuid, $resid) = sscanf($x, "%d %d");
Please login to merge, or discard this patch.
html/ops/profile_screen_action.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 db_init();
25 25
 
26 26
 admin_page_head("screen profile action");
27
-for ($i=0; $i<$n; $i++) {
27
+for ($i = 0; $i < $n; $i++) {
28 28
     $y = "user".$i;
29 29
     $val = $_GET[$y];
30 30
     $x = "userid".$i;
@@ -51,5 +51,5 @@  discard block
 block discarded – undo
51 51
 
52 52
 admin_page_tail();
53 53
 
54
-$cvs_version_tracker[]="\$Id$";  //Generated automatically - do not edit
54
+$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit
55 55
 ?>
Please login to merge, or discard this patch.