Passed
Push — dpa_docker_wrapper_mac ( 9edeea...9420a4 )
by David
08:37
created
html/ops/watchdogs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
         sound_alarm("log file ".$file." missing");
44 44
     } else if ($t > $last_time) {
45 45
         $lines = file($file);
46
-        $last_line = $lines[count($lines)-1];
46
+        $last_line = $lines[count($lines) - 1];
47 47
         sound_alarm($last_line);
48 48
     }
49 49
 }
Please login to merge, or discard this patch.
html/ops/hrclass_summary.php 1 patch
Spacing   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -21,45 +21,45 @@  discard block
 block discarded – undo
21 21
 // TODO: convert to use new DB interface
22 22
 // TODO: document in the wiki
23 23
 
24
-include_once( "../inc/db.inc" );
25
-include_once( "../inc/util.inc" );
26
-include_once( "../inc/db_ops.inc" );
27
-include_once( "../inc/util_ops.inc" );
28
-include_once( "../inc/prefs.inc" );
29
-
30
-$system_string[ 128 ] = "No OS";
31
-$system_string[ 256 ] = "Linux";
32
-$system_string[ 384 ] = "Windows";
33
-$system_string[ 512 ] = "Darwin";
34
-$system_string[ 640 ] = "FreeBSD";
35
-
36
-$cpu_string[ 0 ]  = "Unspecified";
37
-$cpu_string[ 1 ]  = "No cpu";
38
-$cpu_string[ 2 ]  = "Intel";
39
-$cpu_string[ 3 ]  = "AMD";
40
-$cpu_string[ 4 ]  = "Macintosh";
41
-$cpu_string[ 5 ]  = "AMD Athlon";
42
-$cpu_string[ 6 ]  = "AMD Duron";
43
-$cpu_string[ 7 ]  = "AMD Sempron";
44
-$cpu_string[ 8 ]  = "AMD Opteron";
45
-$cpu_string[ 9 ]  = "AMD Athlon 64";
46
-$cpu_string[ 10 ] = "AMD Athlon XP";
47
-$cpu_string[ 11 ] = "Intel Xeon";
48
-$cpu_string[ 12 ] = "Intel Celeron";
49
-$cpu_string[ 13 ] = "Intel Pentium";
50
-$cpu_string[ 14 ] = "Intel Pentium II";
51
-$cpu_string[ 15 ] = "Intel Pentium III";
52
-$cpu_string[ 16 ] = "Intel Pentium 4";
53
-$cpu_string[ 17 ] = "Intel Pentium D";
54
-$cpu_string[ 18 ] = "Intel Pentium M";
55
-$cpu_string[ 19 ] = "AMD Athlon MP";
56
-$cpu_string[ 20 ] = "AMD Turion";
57
-$cpu_string[ 21 ] = "Intel Core2";
24
+include_once("../inc/db.inc");
25
+include_once("../inc/util.inc");
26
+include_once("../inc/db_ops.inc");
27
+include_once("../inc/util_ops.inc");
28
+include_once("../inc/prefs.inc");
29
+
30
+$system_string[128] = "No OS";
31
+$system_string[256] = "Linux";
32
+$system_string[384] = "Windows";
33
+$system_string[512] = "Darwin";
34
+$system_string[640] = "FreeBSD";
35
+
36
+$cpu_string[0]  = "Unspecified";
37
+$cpu_string[1]  = "No cpu";
38
+$cpu_string[2]  = "Intel";
39
+$cpu_string[3]  = "AMD";
40
+$cpu_string[4]  = "Macintosh";
41
+$cpu_string[5]  = "AMD Athlon";
42
+$cpu_string[6]  = "AMD Duron";
43
+$cpu_string[7]  = "AMD Sempron";
44
+$cpu_string[8]  = "AMD Opteron";
45
+$cpu_string[9]  = "AMD Athlon 64";
46
+$cpu_string[10] = "AMD Athlon XP";
47
+$cpu_string[11] = "Intel Xeon";
48
+$cpu_string[12] = "Intel Celeron";
49
+$cpu_string[13] = "Intel Pentium";
50
+$cpu_string[14] = "Intel Pentium II";
51
+$cpu_string[15] = "Intel Pentium III";
52
+$cpu_string[16] = "Intel Pentium 4";
53
+$cpu_string[17] = "Intel Pentium D";
54
+$cpu_string[18] = "Intel Pentium M";
55
+$cpu_string[19] = "AMD Athlon MP";
56
+$cpu_string[20] = "AMD Turion";
57
+$cpu_string[21] = "Intel Core2";
58 58
 
59 59
 $query = "SELECT COUNT(workunit.id) AS count FROM workunit LEFT JOIN result ON workunit.id=result.workunitid WHERE result.server_state=2 AND workunit.hr_class=";
60 60
 
61 61
 function get_mysql_count($hr_class) {
62
-    $result = _mysql_query("select count(id) as count from workunit where hr_class=" . $hr_class);
62
+    $result = _mysql_query("select count(id) as count from workunit where hr_class=".$hr_class);
63 63
     $count = _mysql_fetch_object($result);
64 64
     _mysql_free_result($result);
65 65
     return $count->count;
@@ -82,19 +82,19 @@  discard block
 block discarded – undo
82 82
     "hr_class", "System", "CPU", "# unsent results"
83 83
 );
84 84
 
85
-$unsentresults = get_mysql_count( 0 );
85
+$unsentresults = get_mysql_count(0);
86 86
 table_row(
87
-    make_reset_url(0), $system_string[ 128 ], $cpu_string[ 0 ], $unsentresults  );
87
+    make_reset_url(0), $system_string[128], $cpu_string[0], $unsentresults  );
88 88
 
89
-for ($system = 2; $system < 6; ++$system ) {
90
-    for ($cpu = 1; $cpu < 22; ++$cpu ) {
91
-        $hr_class=128*$system+$cpu;
89
+for ($system = 2; $system < 6; ++$system) {
90
+    for ($cpu = 1; $cpu < 22; ++$cpu) {
91
+        $hr_class = 128*$system + $cpu;
92 92
 
93
-        $unsentresults = get_mysql_count( $hr_class );
93
+        $unsentresults = get_mysql_count($hr_class);
94 94
 
95 95
         table_row(
96 96
             make_reset_url($hr_class),
97
-            $system_string[$system * 128],
97
+            $system_string[$system*128],
98 98
             $cpu_string[$cpu],
99 99
             $unsentresults
100 100
         );
Please login to merge, or discard this patch.
html/ops/job_times.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -40,9 +40,9 @@  discard block
 block discarded – undo
40 40
     global $count;
41 41
     global $varsum;
42 42
 
43
-    $flops = $result->elapsed_time * $result->flops_estimate;
43
+    $flops = $result->elapsed_time*$result->flops_estimate;
44 44
     //printf("%e<br>\n", $flops);
45
-    $n = (int) ($flops/$quantum);
45
+    $n = (int)($flops/$quantum);
46 46
     if (!array_key_exists($n, $hist)) {
47 47
         $hist[$n] = 0;
48 48
     }
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     $count++;
51 51
     $delta = $flops - $mean;
52 52
     $mean += $delta/$count;
53
-    $varsum += $delta*($flops-$mean);
53
+    $varsum += $delta*($flops - $mean);
54 54
 }
55 55
 
56 56
 function show_stats() {
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     global $varsum;
60 60
     global $sum;
61 61
 
62
-    $stdev = sqrt($varsum/($count-1));
62
+    $stdev = sqrt($varsum/($count - 1));
63 63
     printf("mean: %e<br>stdev: %e<br>samples: %d", $mean, $stdev, $count);
64 64
 }
65 65
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     $sum = 0;
71 71
     $n = 0;
72 72
     foreach ($hist as $i=>$v) {
73
-        $sum  += $quantum*$i*$v;
73
+        $sum += $quantum*$i*$v;
74 74
         $n += $v;
75 75
     }
76 76
     $mean = $sum/$n;
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     $sum = 0;
81 81
     foreach ($hist as $i=>$v) {
82 82
         $d = ($mean - $quantum*$i);
83
-        $sum  += $d*$d*$v;
83
+        $sum += $d*$d*$v;
84 84
     }
85 85
     $stdev = sqrt($sum/$n);
86 86
     echo "<br>stdev: ";
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
         if ($v > $max) $max = $v;
118 118
     }
119 119
 
120
-    for ($i=$start; $i<=$end; $i++) {
120
+    for ($i = $start; $i <= $end; $i++) {
121 121
         if (array_key_exists($i, $hist)) {
122 122
             $w = 600*$hist[$i]/$max;
123 123
         } else {
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 function analyze($appid, $app_version_id, $nresults) {
153 153
     global $hist;
154 154
 
155
-    $clause = $app_version_id?" and app_version_id = $app_version_id ":"";
155
+    $clause = $app_version_id ? " and app_version_id = $app_version_id " : "";
156 156
 
157 157
     $query = "select id, server_state, outcome, elapsed_time, flops_estimate from result where server_state=5 and appid=$appid and outcome=1 and validate_state=1 $clause order by id desc limit $nresults";
158 158
     $r = _mysql_query($query);
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
     ";
184 184
     $apps = BoincApp::enum("deprecated=0");
185 185
 
186
-    foreach($apps as $app) {
186
+    foreach ($apps as $app) {
187 187
         echo "<br><input type=radio name=appid value=$app->id>
188 188
             $app->user_friendly_name
189 189
         ";
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
     admin_page_tail();
211 211
 }
212 212
 
213
-if (get_str('submit', true)=='OK') {
213
+if (get_str('submit', true) == 'OK') {
214 214
     set_time_limit(0);
215 215
     $appid = get_int('appid');
216 216
     $app_version_id = get_int('app_version_id');
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,8 @@
 block discarded – undo
63 63
     printf("mean: %e<br>stdev: %e<br>samples: %d", $mean, $stdev, $count);
64 64
 }
65 65
 
66
-function show_stats_hist() {    //deprecated
66
+function show_stats_hist() {
67
+//deprecated
67 68
     global $hist;
68 69
     global $quantum;
69 70
 
Please login to merge, or discard this patch.
html/ops/credit_study.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 function mean($x) {
33 33
     $sum = 0;
34 34
     $n = count($x);
35
-    for ($i=0; $i<$n; $i++) {
35
+    for ($i = 0; $i < $n; $i++) {
36 36
         $sum += $x[$i];
37 37
     }
38 38
     return $sum/$n;
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     $sum = 0;
43 43
     $n = count($x);
44 44
     $m = mean($x);
45
-    for ($i=0; $i<$n; $i++) {
45
+    for ($i = 0; $i < $n; $i++) {
46 46
         $d = $x[$i] - $m;
47 47
         $sum += $d*$d;
48 48
         //echo "$x[$i] ";
@@ -56,10 +56,10 @@  discard block
 block discarded – undo
56 56
 // returns the claimed credit for a given result/host and FP weight
57 57
 //
58 58
 function cc($x, $fpw) {
59
-    $cps = $x->p_fpops*$fpw + $x->p_iops*(1-$fpw);
59
+    $cps = $x->p_fpops*$fpw + $x->p_iops*(1 - $fpw);
60 60
     $cps /= 1e9;
61 61
     $cps /= 864;
62
-    $cc = $x->cpu_time * $cps;
62
+    $cc = $x->cpu_time*$cps;
63 63
     return $cc;
64 64
 }
65 65
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     $nwus = 4000;
85 85
 
86 86
     $sum = array();
87
-    for ($i=0; $i<=10; $i++) {
87
+    for ($i = 0; $i <= 10; $i++) {
88 88
         $sum[] = 0;
89 89
     }
90 90
     $r1 = _mysql_query(
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         $r2 = _mysql_query("select * from result where workunitid=$wu->id");
97 97
         $found_zero = false;
98 98
         while ($result = _mysql_fetch_object($r2)) {
99
-            if ($result->granted_credit==0) continue;   // skip invalid
99
+            if ($result->granted_credit == 0) continue; // skip invalid
100 100
             $host = BoincHost::lookup_id($result->hostid);
101 101
             $r = new StdClass;
102 102
             $r->cpu_time = $result->cpu_time;
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
             $results[] = $r;
106 106
         }
107 107
         //echo "Wu $wu->id -------------\n";
108
-        if (count($results)<2) continue;
109
-        for ($i=0; $i<=10; $i++) {
108
+        if (count($results) < 2) continue;
109
+        for ($i = 0; $i <= 10; $i++) {
110 110
             $fpw = $i/10.;
111 111
             $sum[$i] += fpw_var($results, $fpw);
112 112
         }
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 Number of workunits analyzed: $n
121 121
 
122 122
 ";
123
-    for ($i=0; $i<=10; $i++) {
123
+    for ($i = 0; $i <= 10; $i++) {
124 124
         $fpw = $i/10.;
125 125
         $r = $sum[$i]/$n;
126 126
         echo "FP weight $fpw: variance is $r\n";
Please login to merge, or discard this patch.
html/ops/autolock.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 $cli_only = true;
23 23
 require_once("../inc/util_ops.inc");
24 24
 
25
-$max_age_days = 90;     // lock threads older than this
25
+$max_age_days = 90; // lock threads older than this
26 26
 if ($argc > 2) {
27 27
     if ($argv[1] == "--ndays") {
28 28
         $max_age_days = $argv[2];
Please login to merge, or discard this patch.
html/ops/wd_nresults_changing.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     return $lines;
42 42
 }
43 43
 
44
-function write_count_file($n,$m) {
44
+function write_count_file($n, $m) {
45 45
     $f = fopen("nresults", "w");
46 46
     if (!$f) return false;
47 47
     $x = sprintf("%d\n%d\n", $n, $m);
@@ -80,12 +80,12 @@  discard block
 block discarded – undo
80 80
     }
81 81
     $n = read_count_file();
82 82
     if ($n == false) {
83
-        write_count_file($m,$p);
83
+        write_count_file($m, $p);
84 84
         exit();
85 85
     }
86 86
     if (trim($n[0]) == $m && trim($n[1]) == $p) {
87 87
         fail("Result count hasn't changed\n");
88 88
     }
89
-    write_count_file($m,$p);
89
+    write_count_file($m, $p);
90 90
 
91 91
 ?>
Please login to merge, or discard this patch.
html/ops/eah_server_status.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,9 +41,9 @@
 block discarded – undo
41 41
 }
42 42
 
43 43
 function find_oldest() {
44
-   $result=_mysql_query("select name,create_time from result where server_state=2 order by create_time limit 1");
45
-   $x = _mysql_fetch_object($result);
46
-   return $x->create_time;
44
+    $result=_mysql_query("select name,create_time from result where server_state=2 order by create_time limit 1");
45
+    $x = _mysql_fetch_object($result);
46
+    return $x->create_time;
47 47
 }
48 48
 
49 49
 function daemon_status($host, $pidname) {
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 }
42 42
 
43 43
 function find_oldest() {
44
-   $result=_mysql_query("select name,create_time from result where server_state=2 order by create_time limit 1");
44
+   $result = _mysql_query("select name,create_time from result where server_state=2 order by create_time limit 1");
45 45
    $x = _mysql_fetch_object($result);
46 46
    return $x->create_time;
47 47
 }
@@ -88,25 +88,25 @@  discard block
 block discarded – undo
88 88
 
89 89
 
90 90
 
91
-$dbrc = db_init(1);    // 1=soft, remember that DB might be down
91
+$dbrc = db_init(1); // 1=soft, remember that DB might be down
92 92
 
93
-page_head(PROJECT . " - Server Status");
93
+page_head(PROJECT." - Server Status");
94 94
 
95 95
 
96 96
 // Date stamp
97 97
 
98 98
 
99
-echo "<br ALIGN=RIGHT> ".PROJECT. " server status as of ".
100
-    date("g:i A T"). " on ". date("l, j F Y ") .
99
+echo "<br ALIGN=RIGHT> ".PROJECT." server status as of ".
100
+    date("g:i A T")." on ".date("l, j F Y ").
101 101
     " (updated every $Nmin minutes).\n";
102 102
 
103
-$proc_uptime=exec("cat /proc/uptime | cut -d\" \" -f-1");
103
+$proc_uptime = exec("cat /proc/uptime | cut -d\" \" -f-1");
104 104
 $days = (int)($proc_uptime/86400);
105
-$hours=(int)($proc_uptime/3600);
106
-$hours=$hours % 24;
107
-$minutes=(int)($proc_uptime/60);
108
-$minutes=$minutes % 60;
109
-echo "<br ALIGN=RIGHT>The ".PROJECT. " main server has been continuously up for ". "$days"." days "."$hours"." hours "."$minutes"." minutes.\n<P>";
105
+$hours = (int)($proc_uptime/3600);
106
+$hours = $hours%24;
107
+$minutes = (int)($proc_uptime/60);
108
+$minutes = $minutes%60;
109
+echo "<br ALIGN=RIGHT>The ".PROJECT." main server has been continuously up for "."$days"." days "."$hours"." hours "."$minutes"." minutes.\n<P>";
110 110
 
111 111
 // tables side by side
112 112
 echo "<TABLE><TR><TD align=center> \n";
@@ -152,11 +152,11 @@  discard block
 block discarded – undo
152 152
 if ($dbrc) {
153 153
     echo "The database server is not accessable";
154 154
 } else {
155
-    $now=time(0);
156
-    $s_day=24*3600;
157
-    $d_ago=$now-$s_day;
158
-    $s_week=7*$s_day;
159
-    $w_ago=$now-$s_week;
155
+    $now = time(0);
156
+    $s_day = 24*3600;
157
+    $d_ago = $now - $s_day;
158
+    $s_week = 7*$s_day;
159
+    $w_ago = $now - $s_week;
160 160
 
161 161
     echo "
162 162
         <table border=2 cellpadding=6>
@@ -276,12 +276,12 @@  discard block
 block discarded – undo
276 276
         <tr><td>invalid</td><td>".number_format($n)."</td></tr>
277 277
     ";
278 278
 
279
-    $n = time(0)-find_oldest();
279
+    $n = time(0) - find_oldest();
280 280
     $days = (int)($n/86400);
281
-    $hours=(int)($n/3600);
282
-    $hours=$hours % 24;
283
-    $minutes=(int)($n/60);
284
-    $minutes=$minutes % 60;
281
+    $hours = (int)($n/3600);
282
+    $hours = $hours%24;
283
+    $minutes = (int)($n/60);
284
+    $minutes = $minutes%60;
285 285
     echo "
286 286
         <tr><td>Oldest Unsent Result</td><td>".$days." d ".$hours." h ".$minutes." m</td></tr>
287 287
     ";
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
 
298 298
 // Display cgi-bin restriction status
299 299
 
300
-if (  file_exists("../../cgi-bin/.htaccess") ) {
300
+if (file_exists("../../cgi-bin/.htaccess")) {
301 301
     echo "<P><font color=RED>
302 302
         <b>The ".PROJECT." scheduler is currently restricted
303 303
 	  to uwm.edu and a few other domains.
Please login to merge, or discard this patch.
html/ops/error_summary.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 $nresults_per_code = get_int('nresults_per_code', true);
28 28
 if (!$nresults_per_code) $nresults_per_code = 10;
29 29
 
30
-function compare ($x, $y) {
30
+function compare($x, $y) {
31 31
     return $x->count < $y->count;
32 32
 }
33 33
 
Please login to merge, or discard this patch.
html/ops/opsw.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     db_init();
44 44
 
45
-   wap_begin();
45
+    wap_begin();
46 46
 
47 47
     // keep a 'running tab' in wapstr in case exceeds 1K WAP limit
48 48
 
@@ -56,15 +56,15 @@  discard block
 block discarded – undo
56 56
     //$wapstr .= "#Activ: " . getSingleQuery("select count(distinct hostid) from cpdnexpt.trickle "
57 57
     //   . "where trickledate>=" . sprintf("%d", mktime() - (3600*24*7))) . "<br/>";
58 58
 
59
-   // finally get last 5 trickles for everyone
60
-   //$wapstr .= show_trickles("a", 0, 5, 1);
59
+    // finally get last 5 trickles for everyone
60
+    //$wapstr .= show_trickles("a", 0, 5, 1);
61 61
 
62
-   // limit wap output to 1KB
63
-   if (strlen($wapstr)>1024)
64
-       echo substr($wapstr,0,1024);
65
-   else
66
-       echo $wapstr;
62
+    // limit wap output to 1KB
63
+    if (strlen($wapstr)>1024)
64
+        echo substr($wapstr,0,1024);
65
+    else
66
+        echo $wapstr;
67 67
 
68
-   wap_end();
68
+    wap_end();
69 69
 
70 70
 ?>
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     // show the home page of app user from envvar
36 36
 
37 37
     $valid = $_GET['id'];
38
-    if (!$valid || $valid!="whatever-validation-key-you-want") {
38
+    if (!$valid || $valid != "whatever-validation-key-you-want") {
39 39
         echo "User id (t.php?id=###) missing!";
40 40
         exit(); // can't do much without a userid!
41 41
     }
@@ -46,12 +46,12 @@  discard block
 block discarded – undo
46 46
 
47 47
     // keep a 'running tab' in wapstr in case exceeds 1K WAP limit
48 48
 
49
-    $wapstr = PROJECT . "<br/>Status Info on<br/>" . wap_timestamp() . "<br/><br/>";
49
+    $wapstr = PROJECT."<br/>Status Info on<br/>".wap_timestamp()."<br/><br/>";
50 50
 
51
-    $wapstr .= "#Users: " . getSingleQuery("select count(*) from user") . "<br/>";
52
-    $wapstr .= "#Hosts: " . getSingleQuery("select count(*) from host") . "<br/>";
53
-    $wapstr .= "#ModYr: " . sprintf("%ld", getSingleQuery("select sum(total_credit)/(.007*17280.0) from host")) . "<br/>";
54
-    $wapstr .= "#Cobbl: " . sprintf("%ld", getSingleQuery("select sum(total_credit) from host")) . "<br/>";
51
+    $wapstr .= "#Users: ".getSingleQuery("select count(*) from user")."<br/>";
52
+    $wapstr .= "#Hosts: ".getSingleQuery("select count(*) from host")."<br/>";
53
+    $wapstr .= "#ModYr: ".sprintf("%ld", getSingleQuery("select sum(total_credit)/(.007*17280.0) from host"))."<br/>";
54
+    $wapstr .= "#Cobbl: ".sprintf("%ld", getSingleQuery("select sum(total_credit) from host"))."<br/>";
55 55
     // I consider a host active if it's trickled in the last week
56 56
     //$wapstr .= "#Activ: " . getSingleQuery("select count(distinct hostid) from cpdnexpt.trickle "
57 57
     //   . "where trickledate>=" . sprintf("%d", mktime() - (3600*24*7))) . "<br/>";
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
    //$wapstr .= show_trickles("a", 0, 5, 1);
61 61
 
62 62
    // limit wap output to 1KB
63
-   if (strlen($wapstr)>1024)
64
-       echo substr($wapstr,0,1024);
63
+   if (strlen($wapstr) > 1024)
64
+       echo substr($wapstr, 0, 1024);
65 65
    else
66 66
        echo $wapstr;
67 67
 
Please login to merge, or discard this patch.