@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | db_init(); |
27 | 27 | |
28 | 28 | function current_tally($voteid) { |
29 | - $query="select sum(yes) as ayes,count(id)-sum(yes) as nays from banishment_votes where voteid=".$voteid; |
|
29 | + $query = "select sum(yes) as ayes,count(id)-sum(yes) as nays from banishment_votes where voteid=".$voteid; |
|
30 | 30 | $result = _mysql_query($query); |
31 | 31 | $foobar = _mysql_fetch_object($result); |
32 | 32 | echo "<b>Current Tally</b> Ayes: ".$foobar->ayes." Nays: ".$foobar->nays."<p>"; |
@@ -35,8 +35,8 @@ discard block |
||
35 | 35 | |
36 | 36 | function vote_is_in_progress($userid) { |
37 | 37 | // check whether a vote is already ongoing |
38 | - $now=time(); |
|
39 | - $query="select count(id) as count from banishment_vote where userid=".$userid." and end_time>".$now; |
|
38 | + $now = time(); |
|
39 | + $query = "select count(id) as count from banishment_vote where userid=".$userid." and end_time>".$now; |
|
40 | 40 | $result = _mysql_query($query); |
41 | 41 | if (!$result) { |
42 | 42 | echo "Database error attempting to read banishment_vote table 1.<p>"; |
@@ -51,56 +51,56 @@ discard block |
||
51 | 51 | return $foobar->count; |
52 | 52 | } |
53 | 53 | |
54 | -function start_vote($config,$logged_in_user,$user,$category,$reason) { |
|
55 | - $now=time(); |
|
56 | - $fin=$now+21600; |
|
54 | +function start_vote($config, $logged_in_user, $user, $category, $reason) { |
|
55 | + $now = time(); |
|
56 | + $fin = $now + 21600; |
|
57 | 57 | |
58 | 58 | |
59 | - if ( vote_is_in_progress($user->id) !=0 ) { |
|
59 | + if (vote_is_in_progress($user->id) != 0) { |
|
60 | 60 | echo "A banishment vote is already underway for this user.<p>"; |
61 | 61 | return 0; |
62 | 62 | } |
63 | - $query="insert into banishment_vote (userid,modid,start_time,end_time) values (".$user->id.",".$logged_in_user->id.",".$now.",".$fin.")"; |
|
63 | + $query = "insert into banishment_vote (userid,modid,start_time,end_time) values (".$user->id.",".$logged_in_user->id.",".$now.",".$fin.")"; |
|
64 | 64 | $result = _mysql_query($query); |
65 | 65 | if (!$result) { |
66 | 66 | echo "Database error attempting to insert to banishment_vote table.<p>"; |
67 | 67 | return 0; |
68 | 68 | } |
69 | 69 | |
70 | - $voteid=_mysql_insert_id(); |
|
71 | - $query="insert into banishment_votes (voteid,modid,time,yes) values (". $voteid .",". $logged_in_user->id .",". $now .",1)"; |
|
70 | + $voteid = _mysql_insert_id(); |
|
71 | + $query = "insert into banishment_votes (voteid,modid,time,yes) values (".$voteid.",".$logged_in_user->id.",".$now.",1)"; |
|
72 | 72 | $result = _mysql_query($query); |
73 | 73 | if (!$result) { |
74 | 74 | echo "Database error attempting to insert to banishment_votes table.<p>"; |
75 | 75 | return 0; |
76 | 76 | } |
77 | 77 | |
78 | - $query="update forum_preferences set banished_until=".$fin." where userid=".$user->id; |
|
78 | + $query = "update forum_preferences set banished_until=".$fin." where userid=".$user->id; |
|
79 | 79 | $result = _mysql_query($query); |
80 | 80 | |
81 | 81 | echo "Banishment vote started.<p><p>"; |
82 | 82 | current_tally($voteid); |
83 | - return send_banish_vote_email($user, 86400*14, $reason, $now+21600); |
|
83 | + return send_banish_vote_email($user, 86400*14, $reason, $now + 21600); |
|
84 | 84 | } |
85 | 85 | |
86 | -function vote_yes($config,$logged_in_user,$user) { |
|
87 | - $now=time(); |
|
86 | +function vote_yes($config, $logged_in_user, $user) { |
|
87 | + $now = time(); |
|
88 | 88 | // Check that a vote is underway. |
89 | - if (vote_is_in_progress($user->id)<1) { |
|
89 | + if (vote_is_in_progress($user->id) < 1) { |
|
90 | 90 | echo "No banishment vote is underway for this user.<p><p>"; |
91 | 91 | return 0; |
92 | 92 | } |
93 | 93 | // Find the voteid |
94 | - $query="select id as voteid from banishment_vote where userid=".$user->id." and end_time>".$now; |
|
94 | + $query = "select id as voteid from banishment_vote where userid=".$user->id." and end_time>".$now; |
|
95 | 95 | $result = _mysql_query($query); |
96 | 96 | $foobar = _mysql_fetch_object($result); |
97 | 97 | if (!$foobar) { |
98 | 98 | echo "Database error attempting to read banishment_vote table.<p>"; |
99 | 99 | return 0; |
100 | 100 | } |
101 | - $voteid=$foobar->voteid; |
|
101 | + $voteid = $foobar->voteid; |
|
102 | 102 | // Check whether mod has voted already. |
103 | - $query="select count(id) as count from banishment_votes where voteid=".$voteid." and modid=".$logged_in_user->id; |
|
103 | + $query = "select count(id) as count from banishment_votes where voteid=".$voteid." and modid=".$logged_in_user->id; |
|
104 | 104 | $result = _mysql_query($query); |
105 | 105 | $foobar = _mysql_fetch_object($result); |
106 | 106 | if (!$foobar) { |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | return 0; |
114 | 114 | } |
115 | 115 | // insert the vote |
116 | - $query="insert into banishment_votes (voteid,modid,time,yes) values (" . $voteid .",". $logged_in_user->id .",". $now .",1)"; |
|
116 | + $query = "insert into banishment_votes (voteid,modid,time,yes) values (".$voteid.",".$logged_in_user->id.",".$now.",1)"; |
|
117 | 117 | $result = _mysql_query($query); |
118 | 118 | if (!$result) { |
119 | 119 | echo "Database error attempting to insert to banishment_votes table.<p>"; |
@@ -124,24 +124,24 @@ discard block |
||
124 | 124 | return 1; |
125 | 125 | } |
126 | 126 | |
127 | -function vote_no($config,$logged_in_user,$user) { |
|
127 | +function vote_no($config, $logged_in_user, $user) { |
|
128 | 128 | // Check that a vote is underway. |
129 | - $now=time(); |
|
130 | - if (vote_is_in_progress($user->id)<1) { |
|
129 | + $now = time(); |
|
130 | + if (vote_is_in_progress($user->id) < 1) { |
|
131 | 131 | echo "No banishment vote is underway for this user.<p>"; |
132 | 132 | return 0; |
133 | 133 | } |
134 | 134 | // Find the voteid |
135 | - $query="select id as voteid from banishment_vote where userid=".$user->id." and end_time>".$now; |
|
135 | + $query = "select id as voteid from banishment_vote where userid=".$user->id." and end_time>".$now; |
|
136 | 136 | $result = _mysql_query($query); |
137 | 137 | $foobar = _mysql_fetch_object($result); |
138 | 138 | if (!$foobar) { |
139 | 139 | echo "Database error attempting to read banishment_vote table.<p>"; |
140 | 140 | return 0; |
141 | 141 | } |
142 | - $voteid=$foobar->voteid; |
|
142 | + $voteid = $foobar->voteid; |
|
143 | 143 | // Check whether mod has voted already. |
144 | - $query="select count(id) as count from banishment_votes where voteid=".$voteid ." and modid=".$logged_in_user->id; |
|
144 | + $query = "select count(id) as count from banishment_votes where voteid=".$voteid." and modid=".$logged_in_user->id; |
|
145 | 145 | $result = _mysql_query($query); |
146 | 146 | $foobar = _mysql_fetch_object($result); |
147 | 147 | if (!$foobar) { |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | return 0; |
155 | 155 | } |
156 | 156 | // insert the vote |
157 | - $query="insert into banishment_votes (voteid,modid,time,yes) values (" . $voteid .",". $logged_in_user->id .",". $now .",0)"; |
|
157 | + $query = "insert into banishment_votes (voteid,modid,time,yes) values (".$voteid.",".$logged_in_user->id.",".$now.",0)"; |
|
158 | 158 | $result = _mysql_query($query); |
159 | 159 | if (!$result) { |
160 | 160 | echo "Database error attempting to insert to banishment_votes table.<p>"; |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | public $title; |
31 | 31 | // Optional; used when showing course history outline. |
32 | 32 | public $is_item; |
33 | - public $attrs; // course-defined |
|
33 | + public $attrs; // course-defined |
|
34 | 34 | |
35 | 35 | abstract function walk(&$iter, $incr, &$frac_done); |
36 | 36 | // multi-purpose function for traversing a course. |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | $this->query_string = null; |
56 | 56 | } else { |
57 | 57 | $this->filename = substr($filename, 0, $p); |
58 | - $this->query_string = substr($filename, $p+1); |
|
58 | + $this->query_string = substr($filename, $p + 1); |
|
59 | 59 | } |
60 | 60 | $this->name = $filename; |
61 | 61 | $this->title = $title; |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | // look up unit by name |
163 | 163 | // |
164 | 164 | $child = null; |
165 | - for ($i=0; $i<$n; $i++) { |
|
165 | + for ($i = 0; $i < $n; $i++) { |
|
166 | 166 | $c = $this->units[$i]; |
167 | 167 | if ($c->name == $child_name) { |
168 | 168 | $child = $c; |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | if ($i >= $n) { |
178 | 178 | // and if index is too big, use last unit |
179 | 179 | // |
180 | - $i = $n-1; |
|
180 | + $i = $n - 1; |
|
181 | 181 | } |
182 | 182 | $child = $this->units[$i]; |
183 | 183 | } |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | $this->finished($iter); |
198 | 198 | return true; |
199 | 199 | } else { |
200 | - $i = ($i+1)%$n; |
|
200 | + $i = ($i + 1)%$n; |
|
201 | 201 | } |
202 | 202 | } |
203 | 203 | } |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | if (array_key_exists($this->name, $state)) { |
236 | 236 | $state_rec = $state[$this->name]; |
237 | 237 | $child_name = $state_rec['child_name']; |
238 | - foreach($this->units as $c) { |
|
238 | + foreach ($this->units as $c) { |
|
239 | 239 | if ($c->name == $child_name) { |
240 | 240 | return $c; |
241 | 241 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | |
33 | 33 | function boinc_recaptcha_get_html($publickey) { |
34 | 34 | if ($publickey) { |
35 | - return '<div class="g-recaptcha" data-sitekey="' . $publickey . '"></div>'; |
|
35 | + return '<div class="g-recaptcha" data-sitekey="'.$publickey.'"></div>'; |
|
36 | 36 | } else { |
37 | 37 | return ''; |
38 | 38 | } |
@@ -64,11 +64,11 @@ discard block |
||
64 | 64 | $dh = opendir($langdir.$transdir); |
65 | 65 | if (!$dh) die("can't open translation dir"); |
66 | 66 | while (($file = readdir($dh)) !== false) { |
67 | - if ($file==".." || $file==".") { |
|
67 | + if ($file == ".." || $file == ".") { |
|
68 | 68 | continue; |
69 | 69 | } |
70 | 70 | // only do files ending in .po |
71 | - if (substr($file,-3) != ".po"){ |
|
71 | + if (substr($file, -3) != ".po") { |
|
72 | 72 | //debug("File $file with unknown extension found in $info_dir"); |
73 | 73 | continue; |
74 | 74 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | "-------------Compiling $transdir$file------------", 0 |
77 | 77 | ); |
78 | 78 | $language = parse_po_file($langdir.$transdir.$file); |
79 | - if (!$language){ |
|
79 | + if (!$language) { |
|
80 | 80 | language_log( |
81 | 81 | "WARNING: Could not parse language ".$file |
82 | 82 | ); |
@@ -95,10 +95,10 @@ discard block |
||
95 | 95 | ); |
96 | 96 | exit; |
97 | 97 | } |
98 | - foreach ($language as $key => $value){ |
|
98 | + foreach ($language as $key => $value) { |
|
99 | 99 | if ($value !== "") { |
100 | 100 | // Skip if the msgstr is empty |
101 | - fwrite($fh, "\$language_lookup_array[\"".str_replace("\"", "\\\"", substr($file,0,-3))."\"][\"".$key."\"] = \"".$value."\";\n"); |
|
101 | + fwrite($fh, "\$language_lookup_array[\"".str_replace("\"", "\\\"", substr($file, 0, -3))."\"][\"".$key."\"] = \"".$value."\";\n"); |
|
102 | 102 | } |
103 | 103 | } |
104 | 104 | // don't write \?\> - may append |
@@ -115,26 +115,26 @@ discard block |
||
115 | 115 | function parse_po_file($file) { |
116 | 116 | $translation_file = file($file); |
117 | 117 | $first_entry = true; |
118 | - $current_token_text=""; |
|
119 | - $current_token =""; |
|
118 | + $current_token_text = ""; |
|
119 | + $current_token = ""; |
|
120 | 120 | $parsing_token = false; |
121 | 121 | $parsing_text = false; |
122 | 122 | $output = array(); |
123 | - for ($i=0; $i<sizeof($translation_file); $i++){ |
|
123 | + for ($i = 0; $i < sizeof($translation_file); $i++) { |
|
124 | 124 | $entry = trim($translation_file[$i]); |
125 | 125 | //echo "line $i: $entry\n"; |
126 | - if (substr($entry, 0, 1)=="#") { |
|
126 | + if (substr($entry, 0, 1) == "#") { |
|
127 | 127 | continue; |
128 | 128 | } elseif (strpos($entry, "msgid") !== false) { |
129 | - if (!$first_entry){ |
|
129 | + if (!$first_entry) { |
|
130 | 130 | //If this is not the first, save the previous entry |
131 | - $output[$current_token]=$current_token_text; |
|
131 | + $output[$current_token] = $current_token_text; |
|
132 | 132 | } |
133 | 133 | $current_token = get_po_line($entry, $file); |
134 | - $current_token_text=""; |
|
134 | + $current_token_text = ""; |
|
135 | 135 | $parsing_token = true; |
136 | 136 | $parsing_text = false; |
137 | - $first_entry=false; |
|
137 | + $first_entry = false; |
|
138 | 138 | } elseif (strpos($entry, "msgstr") !== false) { |
139 | 139 | $current_token_text = get_po_line($entry, $file); |
140 | 140 | $parsing_token = false; |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | |
149 | 149 | // Get the last token |
150 | 150 | // |
151 | - if ($current_token && $current_token_text){ |
|
151 | + if ($current_token && $current_token_text) { |
|
152 | 152 | $output[$current_token] = $current_token_text; |
153 | 153 | } |
154 | 154 | return $output; |
@@ -158,9 +158,9 @@ discard block |
||
158 | 158 | // Returns the contents of a line (ie removes "" from start and end) |
159 | 159 | // |
160 | 160 | function get_po_line($line, $file) { |
161 | - $start = strpos($line, '"')+1; |
|
161 | + $start = strpos($line, '"') + 1; |
|
162 | 162 | $stop = strrpos($line, '"'); |
163 | - $x = substr($line, $start, $stop-$start); |
|
163 | + $x = substr($line, $start, $stop - $start); |
|
164 | 164 | $n = preg_match("/[^\\\\]\"/", $x); |
165 | 165 | if ($n) { |
166 | 166 | echo "ERROR - MISMATCHED QUOTES IN $file: $line\n"; |
@@ -179,11 +179,11 @@ discard block |
||
179 | 179 | |
180 | 180 | // Find the string in the user's language |
181 | 181 | // |
182 | - foreach ($languages_in_use as $language){ |
|
182 | + foreach ($languages_in_use as $language) { |
|
183 | 183 | if (isset($language_lookup_array[$language][$text])) { |
184 | 184 | $text = $language_lookup_array[$language][$text]; |
185 | 185 | break; |
186 | - } else if ($language=="en"){ |
|
186 | + } else if ($language == "en") { |
|
187 | 187 | // This language is defined in the code and is always available |
188 | 188 | break; |
189 | 189 | } |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | // Replace relevant substrings with given arguments. |
193 | 193 | // Use strtr to avoid problems if an argument contains %n. |
194 | 194 | $replacements = array(); |
195 | - for ($i=1; $i<func_num_args(); $i++){ |
|
195 | + for ($i = 1; $i < func_num_args(); $i++) { |
|
196 | 196 | $replacements["%".$i] = func_get_arg($i); |
197 | 197 | } |
198 | 198 | $text = strtr($text, $replacements); |
@@ -210,13 +210,13 @@ discard block |
||
210 | 210 | return $text; |
211 | 211 | } |
212 | 212 | |
213 | -function language_log($message, $loglevel=0) { |
|
213 | +function language_log($message, $loglevel = 0) { |
|
214 | 214 | global $lang_log_level; |
215 | - if ($loglevel==0) $msg = "[ Debug ]"; |
|
216 | - if ($loglevel==1) $msg = "[ Warning ]"; |
|
217 | - if ($loglevel==2) $msg = "[ CRITICAL ]"; |
|
215 | + if ($loglevel == 0) $msg = "[ Debug ]"; |
|
216 | + if ($loglevel == 1) $msg = "[ Warning ]"; |
|
217 | + if ($loglevel == 2) $msg = "[ CRITICAL ]"; |
|
218 | 218 | |
219 | - if ($loglevel >= $lang_log_level){ |
|
219 | + if ($loglevel >= $lang_log_level) { |
|
220 | 220 | echo gmdate("Y-m-d H:i:s", time())." ".$msg." ".$message."\n"; |
221 | 221 | } |
222 | 222 | } |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | // (by looking at cookies and browser settings) |
226 | 226 | // cookies have highest priority. |
227 | 227 | |
228 | -if (isset($_COOKIE['lang'])){ |
|
228 | +if (isset($_COOKIE['lang'])) { |
|
229 | 229 | $language_string = $_COOKIE['lang'].","; |
230 | 230 | } else { |
231 | 231 | $language_string = ''; |
@@ -255,10 +255,10 @@ discard block |
||
255 | 255 | |
256 | 256 | // Loop over languages that the client requests |
257 | 257 | // |
258 | -for ($i=0; $i<sizeof($client_languages); $i++) { |
|
259 | - if ((strlen($client_languages[$i])>2) |
|
258 | +for ($i = 0; $i < sizeof($client_languages); $i++) { |
|
259 | + if ((strlen($client_languages[$i]) > 2) |
|
260 | 260 | && (substr($client_languages[$i], 2, 1) == "_" || substr($client_languages[$i], 2, 1) == "-") |
261 | - ){ |
|
261 | + ) { |
|
262 | 262 | // If this is defined as primary-secondary, represent it as xx_YY |
263 | 263 | // |
264 | 264 | $language = substr( |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | |
278 | 278 | // if main language is english, look no further |
279 | 279 | // |
280 | - if ((count($languages_in_use)==0) && ($language == 'en' || $language2 == 'en')) { |
|
280 | + if ((count($languages_in_use) == 0) && ($language == 'en' || $language2 == 'en')) { |
|
281 | 281 | break; |
282 | 282 | } |
283 | 283 | |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | // |
286 | 286 | $file_name = $lang_language_dir.$lang_compiled_dir.$language.".po.inc"; |
287 | 287 | if (file_exists($file_name)) { |
288 | - if (!in_array($language, $languages_in_use)){ |
|
288 | + if (!in_array($language, $languages_in_use)) { |
|
289 | 289 | require_once($file_name); |
290 | 290 | $languages_in_use[] = $language; |
291 | 291 | } |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | if ($language2) { |
294 | 294 | $file_name = $lang_language_dir.$lang_compiled_dir.$language2.".po.inc"; |
295 | 295 | if (file_exists($file_name)) { |
296 | - if (!in_array($language2, $languages_in_use)){ |
|
296 | + if (!in_array($language2, $languages_in_use)) { |
|
297 | 297 | require_once($file_name); |
298 | 298 | $languages_in_use[] = $language2; |
299 | 299 | } |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | } |
302 | 302 | } |
303 | 303 | |
304 | -$GLOBALS['languages_in_use'] = $languages_in_use; // for Drupal |
|
304 | +$GLOBALS['languages_in_use'] = $languages_in_use; // for Drupal |
|
305 | 305 | |
306 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
306 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
307 | 307 | ?> |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | continue; |
69 | 69 | } |
70 | 70 | // only do files ending in .po |
71 | - if (substr($file,-3) != ".po"){ |
|
71 | + if (substr($file,-3) != ".po") { |
|
72 | 72 | //debug("File $file with unknown extension found in $info_dir"); |
73 | 73 | continue; |
74 | 74 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | "-------------Compiling $transdir$file------------", 0 |
77 | 77 | ); |
78 | 78 | $language = parse_po_file($langdir.$transdir.$file); |
79 | - if (!$language){ |
|
79 | + if (!$language) { |
|
80 | 80 | language_log( |
81 | 81 | "WARNING: Could not parse language ".$file |
82 | 82 | ); |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | ); |
96 | 96 | exit; |
97 | 97 | } |
98 | - foreach ($language as $key => $value){ |
|
98 | + foreach ($language as $key => $value) { |
|
99 | 99 | if ($value !== "") { |
100 | 100 | // Skip if the msgstr is empty |
101 | 101 | fwrite($fh, "\$language_lookup_array[\"".str_replace("\"", "\\\"", substr($file,0,-3))."\"][\"".$key."\"] = \"".$value."\";\n"); |
@@ -120,13 +120,13 @@ discard block |
||
120 | 120 | $parsing_token = false; |
121 | 121 | $parsing_text = false; |
122 | 122 | $output = array(); |
123 | - for ($i=0; $i<sizeof($translation_file); $i++){ |
|
123 | + for ($i=0; $i<sizeof($translation_file); $i++) { |
|
124 | 124 | $entry = trim($translation_file[$i]); |
125 | 125 | //echo "line $i: $entry\n"; |
126 | 126 | if (substr($entry, 0, 1)=="#") { |
127 | 127 | continue; |
128 | 128 | } elseif (strpos($entry, "msgid") !== false) { |
129 | - if (!$first_entry){ |
|
129 | + if (!$first_entry) { |
|
130 | 130 | //If this is not the first, save the previous entry |
131 | 131 | $output[$current_token]=$current_token_text; |
132 | 132 | } |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | |
149 | 149 | // Get the last token |
150 | 150 | // |
151 | - if ($current_token && $current_token_text){ |
|
151 | + if ($current_token && $current_token_text) { |
|
152 | 152 | $output[$current_token] = $current_token_text; |
153 | 153 | } |
154 | 154 | return $output; |
@@ -179,11 +179,11 @@ discard block |
||
179 | 179 | |
180 | 180 | // Find the string in the user's language |
181 | 181 | // |
182 | - foreach ($languages_in_use as $language){ |
|
182 | + foreach ($languages_in_use as $language) { |
|
183 | 183 | if (isset($language_lookup_array[$language][$text])) { |
184 | 184 | $text = $language_lookup_array[$language][$text]; |
185 | 185 | break; |
186 | - } else if ($language=="en"){ |
|
186 | + } else if ($language=="en") { |
|
187 | 187 | // This language is defined in the code and is always available |
188 | 188 | break; |
189 | 189 | } |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | // Replace relevant substrings with given arguments. |
193 | 193 | // Use strtr to avoid problems if an argument contains %n. |
194 | 194 | $replacements = array(); |
195 | - for ($i=1; $i<func_num_args(); $i++){ |
|
195 | + for ($i=1; $i<func_num_args(); $i++) { |
|
196 | 196 | $replacements["%".$i] = func_get_arg($i); |
197 | 197 | } |
198 | 198 | $text = strtr($text, $replacements); |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | if ($loglevel==1) $msg = "[ Warning ]"; |
217 | 217 | if ($loglevel==2) $msg = "[ CRITICAL ]"; |
218 | 218 | |
219 | - if ($loglevel >= $lang_log_level){ |
|
219 | + if ($loglevel >= $lang_log_level) { |
|
220 | 220 | echo gmdate("Y-m-d H:i:s", time())." ".$msg." ".$message."\n"; |
221 | 221 | } |
222 | 222 | } |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | // (by looking at cookies and browser settings) |
226 | 226 | // cookies have highest priority. |
227 | 227 | |
228 | -if (isset($_COOKIE['lang'])){ |
|
228 | +if (isset($_COOKIE['lang'])) { |
|
229 | 229 | $language_string = $_COOKIE['lang'].","; |
230 | 230 | } else { |
231 | 231 | $language_string = ''; |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | for ($i=0; $i<sizeof($client_languages); $i++) { |
259 | 259 | if ((strlen($client_languages[$i])>2) |
260 | 260 | && (substr($client_languages[$i], 2, 1) == "_" || substr($client_languages[$i], 2, 1) == "-") |
261 | - ){ |
|
261 | + ) { |
|
262 | 262 | // If this is defined as primary-secondary, represent it as xx_YY |
263 | 263 | // |
264 | 264 | $language = substr( |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | // |
286 | 286 | $file_name = $lang_language_dir.$lang_compiled_dir.$language.".po.inc"; |
287 | 287 | if (file_exists($file_name)) { |
288 | - if (!in_array($language, $languages_in_use)){ |
|
288 | + if (!in_array($language, $languages_in_use)) { |
|
289 | 289 | require_once($file_name); |
290 | 290 | $languages_in_use[] = $language; |
291 | 291 | } |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | if ($language2) { |
294 | 294 | $file_name = $lang_language_dir.$lang_compiled_dir.$language2.".po.inc"; |
295 | 295 | if (file_exists($file_name)) { |
296 | - if (!in_array($language2, $languages_in_use)){ |
|
296 | + if (!in_array($language2, $languages_in_use)) { |
|
297 | 297 | require_once($file_name); |
298 | 298 | $languages_in_use[] = $language2; |
299 | 299 | } |
@@ -164,7 +164,7 @@ |
||
164 | 164 | $user->prefs = $prefs; |
165 | 165 | } |
166 | 166 | function privilege($specialbit) { |
167 | - return (substr($this->special_user, $specialbit,1)==1); |
|
167 | + return (substr($this->special_user, $specialbit,1)==1); |
|
168 | 168 | } |
169 | 169 | function update($clause) { |
170 | 170 | $db = BoincDb::get(); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | $db = BoincDb::get(); |
28 | 28 | return $db->lookup('category', 'BoincCategory', $clause); |
29 | 29 | } |
30 | - static function enum($clause=null) { |
|
30 | + static function enum($clause = null) { |
|
31 | 31 | $db = BoincDb::get(); |
32 | 32 | return $db->enum('category', 'BoincCategory', $clause); |
33 | 33 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | $db = BoincDb::get(); |
79 | 79 | return $db->update($this, 'thread', $clause); |
80 | 80 | } |
81 | - static function enum($clause="") { |
|
81 | + static function enum($clause = "") { |
|
82 | 82 | $db = BoincDb::get(); |
83 | 83 | return $db->enum('thread', 'BoincThread', $clause); |
84 | 84 | } |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | $db = BoincDb::get(); |
143 | 143 | $ret = $db->insert('forum_preferences', $clause); |
144 | 144 | } |
145 | - static function lookup(&$user, $nocache=false) { |
|
145 | + static function lookup(&$user, $nocache = false) { |
|
146 | 146 | if (!$user) return; |
147 | 147 | if (isset($user->prefs)) return; |
148 | 148 | if (!$nocache && isset(self::$cache[$user->id])) { |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | $user->prefs = $prefs; |
165 | 165 | } |
166 | 166 | function privilege($specialbit) { |
167 | - return (substr($this->special_user, $specialbit,1)==1); |
|
167 | + return (substr($this->special_user, $specialbit, 1) == 1); |
|
168 | 168 | } |
169 | 169 | function update($clause) { |
170 | 170 | $db = BoincDb::get(); |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | $db = BoincDb::get(); |
176 | 176 | return $db->delete_aux('forum_preferences', "userid=$this->userid"); |
177 | 177 | } |
178 | - static function enum($clause=null) { |
|
178 | + static function enum($clause = null) { |
|
179 | 179 | $db = BoincDb::get(); |
180 | 180 | return $db->enum('forum_preferences', 'BoincForumPrefs', $clause); |
181 | 181 | } |
@@ -215,8 +215,8 @@ discard block |
||
215 | 215 | // |
216 | 216 | $fl = BoincForumLogging::lookup(0, 0); |
217 | 217 | if ($fl) { |
218 | - if ($fl->timestamp<time()-MAX_FORUM_LOGGING_TIME){ |
|
219 | - BoincForumLogging::delete_aux("timestamp<'".(time()-MAX_FORUM_LOGGING_TIME)."' and userid != 0"); |
|
218 | + if ($fl->timestamp < time() - MAX_FORUM_LOGGING_TIME) { |
|
219 | + BoincForumLogging::delete_aux("timestamp<'".(time() - MAX_FORUM_LOGGING_TIME)."' and userid != 0"); |
|
220 | 220 | BoincForumLogging::replace(0, 0, time()); |
221 | 221 | } |
222 | 222 | } else { |
@@ -322,9 +322,9 @@ discard block |
||
322 | 322 | } |
323 | 323 | } |
324 | 324 | |
325 | -define ('NOTIFY_FRIEND_REQ', 1); |
|
326 | -define ('NOTIFY_FRIEND_ACCEPT', 2); |
|
327 | -define ('NOTIFY_PM', 3); |
|
328 | -define ('NOTIFY_SUBSCRIBED_POST', 4); |
|
325 | +define('NOTIFY_FRIEND_REQ', 1); |
|
326 | +define('NOTIFY_FRIEND_ACCEPT', 2); |
|
327 | +define('NOTIFY_PM', 3); |
|
328 | +define('NOTIFY_SUBSCRIBED_POST', 4); |
|
329 | 329 | |
330 | 330 | ?> |
@@ -215,7 +215,7 @@ |
||
215 | 215 | // |
216 | 216 | $fl = BoincForumLogging::lookup(0, 0); |
217 | 217 | if ($fl) { |
218 | - if ($fl->timestamp<time()-MAX_FORUM_LOGGING_TIME){ |
|
218 | + if ($fl->timestamp<time()-MAX_FORUM_LOGGING_TIME) { |
|
219 | 219 | BoincForumLogging::delete_aux("timestamp<'".(time()-MAX_FORUM_LOGGING_TIME)."' and userid != 0"); |
220 | 220 | BoincForumLogging::replace(0, 0, time()); |
221 | 221 | } |
@@ -24,13 +24,13 @@ |
||
24 | 24 | function update_average($now, $work_start_time, $work, &$avg, &$avg_time) { |
25 | 25 | if ($avg_time) { |
26 | 26 | $diff = $now - $avg_time; |
27 | - if ($diff <0) $diff = 0; |
|
27 | + if ($diff < 0) $diff = 0; |
|
28 | 28 | $diff_days = $diff/86400; |
29 | 29 | $weight = exp(-$diff*M_LN2/CREDIT_HALF_LIFE); |
30 | 30 | $avg *= $weight; |
31 | 31 | |
32 | - if ((1.0-$weight)>0.000001) { |
|
33 | - $avg += (1.0-$weight)*($work/$diff_days); |
|
32 | + if ((1.0 - $weight) > 0.000001) { |
|
33 | + $avg += (1.0 - $weight)*($work/$diff_days); |
|
34 | 34 | } |
35 | 35 | else { |
36 | 36 | $avg += M_LN2*$work*86400/CREDIT_HALF_LIFE; |
@@ -31,8 +31,7 @@ |
||
31 | 31 | |
32 | 32 | if ((1.0-$weight)>0.000001) { |
33 | 33 | $avg += (1.0-$weight)*($work/$diff_days); |
34 | - } |
|
35 | - else { |
|
34 | + } else { |
|
36 | 35 | $avg += M_LN2*$work*86400/CREDIT_HALF_LIFE; |
37 | 36 | } |
38 | 37 | } else if ($work) { |
@@ -118,5 +118,5 @@ |
||
118 | 118 | "; |
119 | 119 | } |
120 | 120 | |
121 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
121 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
122 | 122 | ?> |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | |
63 | 63 | function print_text_field($text,$name,$value) { |
64 | 64 | echo "$text <input type=\"text\" size=\"10\" name=\"$name\" value=\"$value\">\n" |
65 | - . "<p>\n"; |
|
65 | + . "<p>\n"; |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | function row($x, $y) { |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | $db->do_query($q4); |
379 | 379 | return 2; |
380 | 380 | } else if (!$db->do_query($q3)) { |
381 | - echo "MySQL command '$q3' failed:<br/>unable to cancel workunits and trigger transitioner.<br>\n"; |
|
381 | + echo "MySQL command '$q3' failed:<br/>unable to cancel workunits and trigger transitioner.<br>\n"; |
|
382 | 382 | $db->do_query($q4); |
383 | 383 | return 3; |
384 | 384 | } |
@@ -46,21 +46,21 @@ discard block |
||
46 | 46 | |
47 | 47 | // TODO: get rid of all the following |
48 | 48 | |
49 | -function print_checkbox($text,$name,$checked) { |
|
49 | +function print_checkbox($text, $name, $checked) { |
|
50 | 50 | echo "<input type=\"checkbox\" name=\"$name\"" |
51 | - . (strlen($checked) ? " checked=\"checked\"" : "") . ">" |
|
51 | + . (strlen($checked) ? " checked=\"checked\"" : "").">" |
|
52 | 52 | . "$text\n" |
53 | 53 | . "<p>\n"; |
54 | 54 | } |
55 | 55 | |
56 | -function print_radio_button($text,$name,$value,$checked) { |
|
56 | +function print_radio_button($text, $name, $value, $checked) { |
|
57 | 57 | echo "<input type=\"radio\" name=\"$name\" value=\"$value\"" |
58 | - . (strlen($checked) ? " checked=\"checked\"" : "") . ">" |
|
58 | + . (strlen($checked) ? " checked=\"checked\"" : "").">" |
|
59 | 59 | . "$text\n" |
60 | 60 | . "<br>\n"; |
61 | 61 | } |
62 | 62 | |
63 | -function print_text_field($text,$name,$value) { |
|
63 | +function print_text_field($text, $name, $value) { |
|
64 | 64 | echo "$text <input type=\"text\" size=\"10\" name=\"$name\" value=\"$value\">\n" |
65 | 65 | . "<p>\n"; |
66 | 66 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | if ($host == null) { |
92 | 92 | $host = "localhost"; |
93 | 93 | } |
94 | - $in = fopen("php://stdin","r"); |
|
94 | + $in = fopen("php://stdin", "r"); |
|
95 | 95 | print "Database username (default: owner of mysqld process): "; |
96 | 96 | $user = rtrim(fgets($in, 80)); |
97 | 97 | print "Database password (if any): "; |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | } |
104 | 104 | } |
105 | 105 | |
106 | -function print_login_form_ops($next_url='') { |
|
106 | +function print_login_form_ops($next_url = '') { |
|
107 | 107 | if ($next_url == '') $next_url = $_SERVER['REQUEST_URI']; |
108 | 108 | start_table(); |
109 | 109 | echo " |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | // return a list of the current, non-deprecated ones |
201 | 201 | // |
202 | 202 | function current_versions($avs) { |
203 | - foreach($avs as $av) { |
|
203 | + foreach ($avs as $av) { |
|
204 | 204 | foreach ($avs as $av2) { |
205 | 205 | if ($av->id == $av2->id) continue; |
206 | 206 | if ($av->platformid == $av2->platformid && $av->plan_class == $av2->plan_class && $av->version_num > $av2->version_num) { |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | } |
210 | 210 | } |
211 | 211 | $x = array(); |
212 | - foreach($avs as $av) { |
|
212 | + foreach ($avs as $av) { |
|
213 | 213 | if (!$av->deprecated) $x[] = $av; |
214 | 214 | } |
215 | 215 | return $x; |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | // |
322 | 322 | function unassign_badges($is_user, $item, $badges, $k) { |
323 | 323 | $list = null; |
324 | - for ($i=0; $i<count($badges); $i++) { |
|
324 | + for ($i = 0; $i < count($badges); $i++) { |
|
325 | 325 | if ($i == $k) continue; |
326 | 326 | $badge = $badges[$i]; |
327 | 327 | if ($list) { |
@@ -74,7 +74,7 @@ |
||
74 | 74 | } |
75 | 75 | |
76 | 76 | function show_profile_link_ops($user) { |
77 | - if ($user->has_profile) { |
|
77 | + if ($user->has_profile) { |
|
78 | 78 | row2("Profile", |
79 | 79 | "<a href=\"".url_base()."view_profile.php?userid=$user->id\">View</a>" |
80 | 80 | ); |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | } |
31 | 31 | |
32 | 32 | function show_forum_rss_item($thread, $userid, $threads_only, $no_images) { |
33 | - $unique_url=secure_url_base()."forum_thread.php?id=".$thread->id; |
|
33 | + $unique_url = secure_url_base()."forum_thread.php?id=".$thread->id; |
|
34 | 34 | |
35 | 35 | $clause2 = " and hidden=0 "; |
36 | 36 | if ($userid) $clause2 .= "and user=$userid"; |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | } |
42 | 42 | if (!count($posts)) return; |
43 | 43 | $post = $posts[0]; |
44 | - $post_date = gmdate('D, d M Y H:i:s',$post->timestamp).' GMT'; |
|
44 | + $post_date = gmdate('D, d M Y H:i:s', $post->timestamp).' GMT'; |
|
45 | 45 | $post_user = BOincUser::lookup_id($post->user); |
46 | 46 | BoincForumPrefs::lookup($post_user); |
47 | 47 | $options = new output_options(); |
@@ -84,25 +84,25 @@ discard block |
||
84 | 84 | |
85 | 85 | // Now construct header |
86 | 86 | // |
87 | - header ("Expires: " . gmdate('D, d M Y H:i:s', time()+86400) . " GMT"); |
|
87 | + header("Expires: ".gmdate('D, d M Y H:i:s', time() + 86400)." GMT"); |
|
88 | 88 | if (sizeof($threads)) { |
89 | 89 | $t = $threads[0]; |
90 | - $last_mod_time = $threads_only?$t->create_time:$t->timestamp; |
|
91 | - $create_date = gmdate('D, d M Y H:i:s', $last_mod_time) . ' GMT'; |
|
92 | - header ("Last-Modified: " . $create_date); |
|
90 | + $last_mod_time = $threads_only ? $t->create_time : $t->timestamp; |
|
91 | + $create_date = gmdate('D, d M Y H:i:s', $last_mod_time).' GMT'; |
|
92 | + header("Last-Modified: ".$create_date); |
|
93 | 93 | } else { |
94 | - $create_date = gmdate('D, d M Y H:i:s') . ' GMT'; |
|
94 | + $create_date = gmdate('D, d M Y H:i:s').' GMT'; |
|
95 | 95 | } |
96 | - header ("Content-Type: application/xml"); |
|
96 | + header("Content-Type: application/xml"); |
|
97 | 97 | |
98 | - $forum=BoincForum::lookup_id($forumid); |
|
98 | + $forum = BoincForum::lookup_id($forumid); |
|
99 | 99 | // Create channel header and open XML content |
100 | 100 | // |
101 | 101 | $description = PROJECT.": $forum->title"; |
102 | 102 | if ($userid) { |
103 | 103 | $description .= " (posts by $user->name)"; |
104 | 104 | } |
105 | - $channel_image = secure_url_base() . "rss_image.gif"; |
|
105 | + $channel_image = secure_url_base()."rss_image.gif"; |
|
106 | 106 | $language = "en-us"; |
107 | 107 | echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?> |
108 | 108 | <rss version=\"2.0\"> |