@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * Add the functions implemented in this file to the $smcFunc array. |
@@ -23,8 +24,8 @@ discard block |
||
23 | 24 | { |
24 | 25 | global $smcFunc; |
25 | 26 | |
26 | - if (!isset($smcFunc['db_backup_table']) || $smcFunc['db_backup_table'] != 'smf_db_backup_table') |
|
27 | - $smcFunc += array( |
|
27 | + if (!isset($smcFunc['db_backup_table']) || $smcFunc['db_backup_table'] != 'smf_db_backup_table') { |
|
28 | + $smcFunc += array( |
|
28 | 29 | 'db_backup_table' => 'smf_db_backup_table', |
29 | 30 | 'db_optimize_table' => 'smf_db_optimize_table', |
30 | 31 | 'db_table_sql' => 'smf_db_table_sql', |
@@ -33,7 +34,8 @@ discard block |
||
33 | 34 | 'db_get_vendor' => 'smf_db_get_vendor', |
34 | 35 | 'db_allow_persistent' => 'smf_db_allow_persistent', |
35 | 36 | ); |
36 | -} |
|
37 | + } |
|
38 | + } |
|
37 | 39 | |
38 | 40 | /** |
39 | 41 | * Backup $table to $backup_table. |
@@ -75,8 +77,9 @@ discard block |
||
75 | 77 | )); |
76 | 78 | |
77 | 79 | // Old school or no school? |
78 | - if ($request) |
|
79 | - return $request; |
|
80 | + if ($request) { |
|
81 | + return $request; |
|
82 | + } |
|
80 | 83 | } |
81 | 84 | |
82 | 85 | // At this point, the quick method failed. |
@@ -100,8 +103,9 @@ discard block |
||
100 | 103 | foreach ($create as $k => $l) |
101 | 104 | { |
102 | 105 | // Get the name of the auto_increment column. |
103 | - if (strpos($l, 'auto_increment')) |
|
104 | - $auto_inc = trim($l); |
|
106 | + if (strpos($l, 'auto_increment')) { |
|
107 | + $auto_inc = trim($l); |
|
108 | + } |
|
105 | 109 | |
106 | 110 | // For the engine type, see if we can work out what it is. |
107 | 111 | if (strpos($l, 'ENGINE') !== false || strpos($l, 'TYPE') !== false) |
@@ -109,30 +113,36 @@ discard block |
||
109 | 113 | // Extract the engine type. |
110 | 114 | preg_match('~(ENGINE|TYPE)=(\w+)(\sDEFAULT)?(\sCHARSET=(\w+))?(\sCOLLATE=(\w+))?~', $l, $match); |
111 | 115 | |
112 | - if (!empty($match[1])) |
|
113 | - $engine = $match[1]; |
|
116 | + if (!empty($match[1])) { |
|
117 | + $engine = $match[1]; |
|
118 | + } |
|
114 | 119 | |
115 | - if (!empty($match[2])) |
|
116 | - $engine = $match[2]; |
|
120 | + if (!empty($match[2])) { |
|
121 | + $engine = $match[2]; |
|
122 | + } |
|
117 | 123 | |
118 | - if (!empty($match[5])) |
|
119 | - $charset = $match[5]; |
|
124 | + if (!empty($match[5])) { |
|
125 | + $charset = $match[5]; |
|
126 | + } |
|
120 | 127 | |
121 | - if (!empty($match[7])) |
|
122 | - $collate = $match[7]; |
|
128 | + if (!empty($match[7])) { |
|
129 | + $collate = $match[7]; |
|
130 | + } |
|
123 | 131 | } |
124 | 132 | |
125 | 133 | // Skip everything but keys... |
126 | - if (strpos($l, 'KEY') === false) |
|
127 | - unset($create[$k]); |
|
134 | + if (strpos($l, 'KEY') === false) { |
|
135 | + unset($create[$k]); |
|
136 | + } |
|
128 | 137 | } |
129 | 138 | |
130 | - if (!empty($create)) |
|
131 | - $create = '( |
|
139 | + if (!empty($create)) { |
|
140 | + $create = '( |
|
132 | 141 | ' . implode(' |
133 | 142 | ', $create) . ')'; |
134 | - else |
|
135 | - $create = ''; |
|
143 | + } else { |
|
144 | + $create = ''; |
|
145 | + } |
|
136 | 146 | |
137 | 147 | $request = $smcFunc['db_query']('', ' |
138 | 148 | CREATE TABLE {raw:backup_table} {raw:create} |
@@ -151,8 +161,9 @@ discard block |
||
151 | 161 | |
152 | 162 | if ($auto_inc != '') |
153 | 163 | { |
154 | - if (preg_match('~\`(.+?)\`\s~', $auto_inc, $match) != 0 && substr($auto_inc, -1, 1) == ',') |
|
155 | - $auto_inc = substr($auto_inc, 0, -1); |
|
164 | + if (preg_match('~\`(.+?)\`\s~', $auto_inc, $match) != 0 && substr($auto_inc, -1, 1) == ',') { |
|
165 | + $auto_inc = substr($auto_inc, 0, -1); |
|
166 | + } |
|
156 | 167 | |
157 | 168 | $smcFunc['db_query']('', ' |
158 | 169 | ALTER TABLE {raw:backup_table} |
@@ -196,8 +207,9 @@ discard block |
||
196 | 207 | 'table' => $table, |
197 | 208 | ) |
198 | 209 | ); |
199 | - if (!$request) |
|
200 | - return -1; |
|
210 | + if (!$request) { |
|
211 | + return -1; |
|
212 | + } |
|
201 | 213 | |
202 | 214 | // How much left? |
203 | 215 | $request = $smcFunc['db_query']('', ' |
@@ -240,8 +252,9 @@ discard block |
||
240 | 252 | ) |
241 | 253 | ); |
242 | 254 | $tables = array(); |
243 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
244 | - $tables[] = $row[0]; |
|
255 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
256 | + $tables[] = $row[0]; |
|
257 | + } |
|
245 | 258 | $smcFunc['db_free_result']($request); |
246 | 259 | |
247 | 260 | return $tables; |
@@ -285,8 +298,9 @@ discard block |
||
285 | 298 | if (!empty($row['Default']) || $row['Null'] !== 'YES') |
286 | 299 | { |
287 | 300 | // Make a special case of auto-timestamp. |
288 | - if ($row['Default'] == 'CURRENT_TIMESTAMP') |
|
289 | - $schema_create .= ' /*!40102 NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP */'; |
|
301 | + if ($row['Default'] == 'CURRENT_TIMESTAMP') { |
|
302 | + $schema_create .= ' /*!40102 NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP */'; |
|
303 | + } |
|
290 | 304 | // Text shouldn't have a default. |
291 | 305 | elseif ($row['Default'] !== null) |
292 | 306 | { |
@@ -321,14 +335,16 @@ discard block |
||
321 | 335 | $row['Key_name'] = $row['Key_name'] == 'PRIMARY' ? 'PRIMARY KEY' : (empty($row['Non_unique']) ? 'UNIQUE ' : ($row['Comment'] == 'FULLTEXT' || (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT') ? 'FULLTEXT ' : 'KEY ')) . '`' . $row['Key_name'] . '`'; |
322 | 336 | |
323 | 337 | // Is this the first column in the index? |
324 | - if (empty($indexes[$row['Key_name']])) |
|
325 | - $indexes[$row['Key_name']] = array(); |
|
338 | + if (empty($indexes[$row['Key_name']])) { |
|
339 | + $indexes[$row['Key_name']] = array(); |
|
340 | + } |
|
326 | 341 | |
327 | 342 | // A sub part, like only indexing 15 characters of a varchar. |
328 | - if (!empty($row['Sub_part'])) |
|
329 | - $indexes[$row['Key_name']][$row['Seq_in_index']] = '`' . $row['Column_name'] . '`(' . $row['Sub_part'] . ')'; |
|
330 | - else |
|
331 | - $indexes[$row['Key_name']][$row['Seq_in_index']] = '`' . $row['Column_name'] . '`'; |
|
343 | + if (!empty($row['Sub_part'])) { |
|
344 | + $indexes[$row['Key_name']][$row['Seq_in_index']] = '`' . $row['Column_name'] . '`(' . $row['Sub_part'] . ')'; |
|
345 | + } else { |
|
346 | + $indexes[$row['Key_name']][$row['Seq_in_index']] = '`' . $row['Column_name'] . '`'; |
|
347 | + } |
|
332 | 348 | } |
333 | 349 | $smcFunc['db_free_result']($result); |
334 | 350 | |
@@ -366,8 +382,9 @@ discard block |
||
366 | 382 | { |
367 | 383 | static $ver; |
368 | 384 | |
369 | - if (!empty($ver)) |
|
370 | - return $ver; |
|
385 | + if (!empty($ver)) { |
|
386 | + return $ver; |
|
387 | + } |
|
371 | 388 | |
372 | 389 | global $smcFunc; |
373 | 390 | |
@@ -392,8 +409,9 @@ discard block |
||
392 | 409 | global $smcFunc; |
393 | 410 | static $db_type; |
394 | 411 | |
395 | - if (!empty($db_type)) |
|
396 | - return $db_type; |
|
412 | + if (!empty($db_type)) { |
|
413 | + return $db_type; |
|
414 | + } |
|
397 | 415 | |
398 | 416 | $request = $smcFunc['db_query']('', 'SELECT @@version_comment'); |
399 | 417 | list ($comment) = $smcFunc['db_fetch_row']($request); |
@@ -402,13 +420,15 @@ discard block |
||
402 | 420 | // Skip these if we don't have a comment. |
403 | 421 | if (!empty($comment)) |
404 | 422 | { |
405 | - if (stripos($comment, 'percona') !== false) |
|
406 | - return 'Percona'; |
|
407 | - if (stripos($comment, 'mariadb') !== false) |
|
408 | - return 'MariaDB'; |
|
423 | + if (stripos($comment, 'percona') !== false) { |
|
424 | + return 'Percona'; |
|
425 | + } |
|
426 | + if (stripos($comment, 'mariadb') !== false) { |
|
427 | + return 'MariaDB'; |
|
428 | + } |
|
429 | + } else { |
|
430 | + return 'fail'; |
|
409 | 431 | } |
410 | - else |
|
411 | - return 'fail'; |
|
412 | 432 | |
413 | 433 | return 'MySQL'; |
414 | 434 | } |
@@ -421,10 +441,11 @@ discard block |
||
421 | 441 | function smf_db_allow_persistent() |
422 | 442 | { |
423 | 443 | $value = ini_get('mysqli.allow_persistent'); |
424 | - if (strtolower($value) == 'on' || strtolower($value) == 'true' || $value == '1') |
|
425 | - return true; |
|
426 | - else |
|
427 | - return false; |
|
428 | -} |
|
444 | + if (strtolower($value) == 'on' || strtolower($value) == 'true' || $value == '1') { |
|
445 | + return true; |
|
446 | + } else { |
|
447 | + return false; |
|
448 | + } |
|
449 | + } |
|
429 | 450 | |
430 | 451 | ?> |
431 | 452 | \ No newline at end of file |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * Add the functions implemented in this file to the $smcFunc array. |
@@ -23,8 +24,8 @@ discard block |
||
23 | 24 | { |
24 | 25 | global $smcFunc; |
25 | 26 | |
26 | - if (!isset($smcFunc['db_backup_table']) || $smcFunc['db_backup_table'] != 'smf_db_backup_table') |
|
27 | - $smcFunc += array( |
|
27 | + if (!isset($smcFunc['db_backup_table']) || $smcFunc['db_backup_table'] != 'smf_db_backup_table') { |
|
28 | + $smcFunc += array( |
|
28 | 29 | 'db_backup_table' => 'smf_db_backup_table', |
29 | 30 | 'db_optimize_table' => 'smf_db_optimize_table', |
30 | 31 | 'db_table_sql' => 'smf_db_table_sql', |
@@ -33,7 +34,8 @@ discard block |
||
33 | 34 | 'db_get_vendor' => 'smf_db_get_vendor', |
34 | 35 | 'db_allow_persistent' => 'smf_db_allow_persistent', |
35 | 36 | ); |
36 | -} |
|
37 | + } |
|
38 | + } |
|
37 | 39 | |
38 | 40 | /** |
39 | 41 | * Backup $table to $backup_table. |
@@ -49,13 +51,14 @@ discard block |
||
49 | 51 | |
50 | 52 | // Do we need to drop it first? |
51 | 53 | $tables = smf_db_list_tables(false, $backup_table); |
52 | - if (!empty($tables)) |
|
53 | - $smcFunc['db_query']('', ' |
|
54 | + if (!empty($tables)) { |
|
55 | + $smcFunc['db_query']('', ' |
|
54 | 56 | DROP TABLE {raw:backup_table}', |
55 | 57 | array( |
56 | 58 | 'backup_table' => $backup_table, |
57 | 59 | ) |
58 | 60 | ); |
61 | + } |
|
59 | 62 | |
60 | 63 | /** |
61 | 64 | * @todo Should we create backups of sequences as well? |
@@ -118,8 +121,9 @@ discard block |
||
118 | 121 | ) |
119 | 122 | ); |
120 | 123 | |
121 | - if (!$request) |
|
122 | - return -1; |
|
124 | + if (!$request) { |
|
125 | + return -1; |
|
126 | + } |
|
123 | 127 | |
124 | 128 | $request = $smcFunc['db_query']('', ' |
125 | 129 | SELECT pg_relation_size(C.oid) AS "size" |
@@ -137,11 +141,12 @@ discard block |
||
137 | 141 | $row = $smcFunc['db_fetch_assoc']($request); |
138 | 142 | $smcFunc['db_free_result']($request); |
139 | 143 | |
140 | - if (isset($row['size'])) |
|
141 | - return ($old_size - $row['size']) / 1024; |
|
142 | - else |
|
143 | - return 0; |
|
144 | -} |
|
144 | + if (isset($row['size'])) { |
|
145 | + return ($old_size - $row['size']) / 1024; |
|
146 | + } else { |
|
147 | + return 0; |
|
148 | + } |
|
149 | + } |
|
145 | 150 | |
146 | 151 | /** |
147 | 152 | * This function lists all tables in the database. |
@@ -168,8 +173,9 @@ discard block |
||
168 | 173 | ); |
169 | 174 | |
170 | 175 | $tables = array(); |
171 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
172 | - $tables[] = $row[0]; |
|
176 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
177 | + $tables[] = $row[0]; |
|
178 | + } |
|
173 | 179 | $smcFunc['db_free_result']($request); |
174 | 180 | |
175 | 181 | return $tables; |
@@ -210,12 +216,14 @@ discard block |
||
210 | 216 | ); |
211 | 217 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
212 | 218 | { |
213 | - if ($row['data_type'] == 'character varying') |
|
214 | - $row['data_type'] = 'varchar'; |
|
215 | - elseif ($row['data_type'] == 'character') |
|
216 | - $row['data_type'] = 'char'; |
|
217 | - if ($row['character_maximum_length']) |
|
218 | - $row['data_type'] .= '(' . $row['character_maximum_length'] . ')'; |
|
219 | + if ($row['data_type'] == 'character varying') { |
|
220 | + $row['data_type'] = 'varchar'; |
|
221 | + } elseif ($row['data_type'] == 'character') { |
|
222 | + $row['data_type'] = 'char'; |
|
223 | + } |
|
224 | + if ($row['character_maximum_length']) { |
|
225 | + $row['data_type'] .= '(' . $row['character_maximum_length'] . ')'; |
|
226 | + } |
|
219 | 227 | |
220 | 228 | // Make the CREATE for this column. |
221 | 229 | $schema_create .= ' "' . $row['column_name'] . '" ' . $row['data_type'] . ($row['is_nullable'] != 'YES' ? ' NOT NULL' : ''); |
@@ -266,13 +274,14 @@ discard block |
||
266 | 274 | { |
267 | 275 | if ($row['is_primary']) |
268 | 276 | { |
269 | - if (preg_match('~\(([^\)]+?)\)~i', $row['inddef'], $matches) == 0) |
|
270 | - continue; |
|
277 | + if (preg_match('~\(([^\)]+?)\)~i', $row['inddef'], $matches) == 0) { |
|
278 | + continue; |
|
279 | + } |
|
271 | 280 | |
272 | 281 | $index_create .= $crlf . 'ALTER TABLE ' . $tableName . ' ADD PRIMARY KEY ("' . $matches[1] . '");'; |
282 | + } else { |
|
283 | + $index_create .= $crlf . $row['inddef'] . ';'; |
|
273 | 284 | } |
274 | - else |
|
275 | - $index_create .= $crlf . $row['inddef'] . ';'; |
|
276 | 285 | } |
277 | 286 | $smcFunc['db_free_result']($result); |
278 | 287 | |
@@ -291,8 +300,9 @@ discard block |
||
291 | 300 | global $db_connection; |
292 | 301 | static $ver; |
293 | 302 | |
294 | - if(!empty($ver)) |
|
295 | - return $ver; |
|
303 | + if(!empty($ver)) { |
|
304 | + return $ver; |
|
305 | + } |
|
296 | 306 | |
297 | 307 | $ver = pg_version($db_connection)['server']; |
298 | 308 | |
@@ -317,10 +327,11 @@ discard block |
||
317 | 327 | function smf_db_allow_persistent() |
318 | 328 | { |
319 | 329 | $value = ini_get('pgsql.allow_persistent'); |
320 | - if (strtolower($value) == 'on' || strtolower($value) == 'true' || $value == '1') |
|
321 | - return true; |
|
322 | - else |
|
323 | - return false; |
|
324 | -} |
|
330 | + if (strtolower($value) == 'on' || strtolower($value) == 'true' || $value == '1') { |
|
331 | + return true; |
|
332 | + } else { |
|
333 | + return false; |
|
334 | + } |
|
335 | + } |
|
325 | 336 | |
326 | 337 | ?> |
327 | 338 | \ No newline at end of file |
@@ -44,10 +44,11 @@ discard block |
||
44 | 44 | <dt>', $txt['users_online_today'], ':</dt> |
45 | 45 | <dd>', $context['online_today'], '</dd>'; |
46 | 46 | |
47 | - if (!empty($modSettings['hitStats'])) |
|
48 | - echo ' |
|
47 | + if (!empty($modSettings['hitStats'])) { |
|
48 | + echo ' |
|
49 | 49 | <dt>', $txt['num_hits'], ':</dt> |
50 | 50 | <dd>', $context['num_hits'], '</dd>'; |
51 | + } |
|
51 | 52 | |
52 | 53 | echo ' |
53 | 54 | </dl> |
@@ -71,17 +72,19 @@ discard block |
||
71 | 72 | <dt>', $txt['gender_stats'], ':</dt> |
72 | 73 | <dd>'; |
73 | 74 | |
74 | - foreach ($context['gender'] as $g => $n) |
|
75 | - echo $g, ': ', $n, '<br>'; |
|
75 | + foreach ($context['gender'] as $g => $n) { |
|
76 | + echo $g, ': ', $n, '<br>'; |
|
77 | + } |
|
76 | 78 | |
77 | 79 | echo ' |
78 | 80 | </dd>'; |
79 | 81 | } |
80 | 82 | |
81 | - if (!empty($modSettings['hitStats'])) |
|
82 | - echo ' |
|
83 | + if (!empty($modSettings['hitStats'])) { |
|
84 | + echo ' |
|
83 | 85 | <dt>', $txt['average_hits'], ':</dt> |
84 | 86 | <dd>', $context['average_hits'], '</dd>'; |
87 | + } |
|
85 | 88 | |
86 | 89 | echo ' |
87 | 90 | </dl>'; |
@@ -105,12 +108,13 @@ discard block |
||
105 | 108 | </dt> |
106 | 109 | <dd class="statsbar generic_bar righttext">'; |
107 | 110 | |
108 | - if (!empty($item['percent'])) |
|
109 | - echo ' |
|
111 | + if (!empty($item['percent'])) { |
|
112 | + echo ' |
|
110 | 113 | <div class="bar" style="width: ', $item['percent'], '%;"></div>'; |
111 | - else |
|
112 | - echo ' |
|
113 | - <div class="bar empty"></div>'; |
|
114 | + } else { |
|
115 | + echo ' |
|
116 | + <div class="bar empty"></div>'; |
|
117 | + } |
|
114 | 118 | |
115 | 119 | echo ' |
116 | 120 | <span>', $item['num'], '</span> |
@@ -143,9 +147,10 @@ discard block |
||
143 | 147 | <th>', $txt['stats_new_members'], '</th> |
144 | 148 | <th>', $txt['most_online'], '</th>'; |
145 | 149 | |
146 | - if (!empty($modSettings['hitStats'])) |
|
147 | - echo ' |
|
150 | + if (!empty($modSettings['hitStats'])) { |
|
151 | + echo ' |
|
148 | 152 | <th>', $txt['page_views'], '</th>'; |
153 | + } |
|
149 | 154 | |
150 | 155 | echo ' |
151 | 156 | </tr> |
@@ -164,9 +169,10 @@ discard block |
||
164 | 169 | <th>', $year['new_members'], '</th> |
165 | 170 | <th>', $year['most_members_online'], '</th>'; |
166 | 171 | |
167 | - if (!empty($modSettings['hitStats'])) |
|
168 | - echo ' |
|
172 | + if (!empty($modSettings['hitStats'])) { |
|
173 | + echo ' |
|
169 | 174 | <th>', $year['hits'], '</th>'; |
175 | + } |
|
170 | 176 | |
171 | 177 | echo ' |
172 | 178 | </tr>'; |
@@ -183,9 +189,10 @@ discard block |
||
183 | 189 | <th>', $month['new_members'], '</th> |
184 | 190 | <th>', $month['most_members_online'], '</th>'; |
185 | 191 | |
186 | - if (!empty($modSettings['hitStats'])) |
|
187 | - echo ' |
|
192 | + if (!empty($modSettings['hitStats'])) { |
|
193 | + echo ' |
|
188 | 194 | <th>', $month['hits'], '</th>'; |
195 | + } |
|
189 | 196 | |
190 | 197 | echo ' |
191 | 198 | </tr>'; |
@@ -202,9 +209,10 @@ discard block |
||
202 | 209 | <td>', $day['new_members'], '</td> |
203 | 210 | <td>', $day['most_members_online'], '</td>'; |
204 | 211 | |
205 | - if (!empty($modSettings['hitStats'])) |
|
206 | - echo ' |
|
212 | + if (!empty($modSettings['hitStats'])) { |
|
213 | + echo ' |
|
207 | 214 | <td>', $day['hits'], '</td>'; |
215 | + } |
|
208 | 216 | |
209 | 217 | echo ' |
210 | 218 | </tr>'; |
@@ -31,9 +31,10 @@ discard block |
||
31 | 31 | echo ' |
32 | 32 | <ul id="smf_slider" class="roundframe">'; |
33 | 33 | |
34 | - foreach ($context['news_lines'] as $news) |
|
35 | - echo ' |
|
34 | + foreach ($context['news_lines'] as $news) { |
|
35 | + echo ' |
|
36 | 36 | <li>', $news, '</li>'; |
37 | + } |
|
37 | 38 | |
38 | 39 | echo ' |
39 | 40 | </ul> |
@@ -65,8 +66,9 @@ discard block |
||
65 | 66 | foreach ($context['categories'] as $category) |
66 | 67 | { |
67 | 68 | // If theres no parent boards we can see, avoid showing an empty category (unless its collapsed) |
68 | - if (empty($category['boards']) && !$category['is_collapsed']) |
|
69 | - continue; |
|
69 | + if (empty($category['boards']) && !$category['is_collapsed']) { |
|
70 | + continue; |
|
71 | + } |
|
70 | 72 | |
71 | 73 | echo ' |
72 | 74 | <div class="main_container"> |
@@ -74,9 +76,10 @@ discard block |
||
74 | 76 | <h3 class="catbg">'; |
75 | 77 | |
76 | 78 | // If this category even can collapse, show a link to collapse it. |
77 | - if ($category['can_collapse']) |
|
78 | - echo ' |
|
79 | + if ($category['can_collapse']) { |
|
80 | + echo ' |
|
79 | 81 | <span id="category_', $category['id'], '_upshrink" class="', $category['is_collapsed'] ? 'toggle_down' : 'toggle_up', ' floatright" data-collapsed="', (int) $category['is_collapsed'], '" title="', !$category['is_collapsed'] ? $txt['hide_category'] : $txt['show_category'], '" style="display: none;"></span>'; |
82 | + } |
|
80 | 83 | |
81 | 84 | echo ' |
82 | 85 | ', $category['link'], ' |
@@ -106,10 +109,11 @@ discard block |
||
106 | 109 | </div>'; |
107 | 110 | |
108 | 111 | // Won't somebody think of the children! |
109 | - if (function_exists('template_bi_' . $board['type'] . '_children')) |
|
110 | - call_user_func('template_bi_' . $board['type'] . '_children', $board); |
|
111 | - else |
|
112 | - template_bi_board_children($board); |
|
112 | + if (function_exists('template_bi_' . $board['type'] . '_children')) { |
|
113 | + call_user_func('template_bi_' . $board['type'] . '_children', $board); |
|
114 | + } else { |
|
115 | + template_bi_board_children($board); |
|
116 | + } |
|
113 | 117 | |
114 | 118 | echo ' |
115 | 119 | </div><!-- #board_[id] -->'; |
@@ -124,12 +128,13 @@ discard block |
||
124 | 128 | </div><!-- #boardindex_table -->'; |
125 | 129 | |
126 | 130 | // Show the mark all as read button? |
127 | - if ($context['user']['is_logged'] && !empty($context['categories'])) |
|
128 | - echo ' |
|
131 | + if ($context['user']['is_logged'] && !empty($context['categories'])) { |
|
132 | + echo ' |
|
129 | 133 | <div class="mark_read"> |
130 | 134 | ', template_button_strip($context['mark_read_button'], 'right'), ' |
131 | 135 | </div>'; |
132 | -} |
|
136 | + } |
|
137 | + } |
|
133 | 138 | |
134 | 139 | /** |
135 | 140 | * Outputs the board icon for a standard board. |
@@ -173,18 +178,20 @@ discard block |
||
173 | 178 | </a>'; |
174 | 179 | |
175 | 180 | // Has it outstanding posts for approval? |
176 | - if ($board['can_approve_posts'] && ($board['unapproved_posts'] || $board['unapproved_topics'])) |
|
177 | - echo ' |
|
181 | + if ($board['can_approve_posts'] && ($board['unapproved_posts'] || $board['unapproved_topics'])) { |
|
182 | + echo ' |
|
178 | 183 | <a href="', $scripturl, '?action=moderate;area=postmod;sa=', ($board['unapproved_topics'] > 0 ? 'topics' : 'posts'), ';brd=', $board['id'], ';', $context['session_var'], '=', $context['session_id'], '" title="', sprintf($txt['unapproved_posts'], $board['unapproved_topics'], $board['unapproved_posts']), '" class="moderation_link">(!)</a>'; |
184 | + } |
|
179 | 185 | |
180 | 186 | echo ' |
181 | 187 | <p class="board_description">', $board['description'], '</p>'; |
182 | 188 | |
183 | 189 | // Show the "Moderators: ". Each has name, href, link, and id. (but we're gonna use link_moderators.) |
184 | - if (!empty($board['link_moderators'])) |
|
185 | - echo ' |
|
190 | + if (!empty($board['link_moderators'])) { |
|
191 | + echo ' |
|
186 | 192 | <p class="moderators">', count($board['link_moderators']) == 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $board['link_moderators']), '</p>'; |
187 | -} |
|
193 | + } |
|
194 | + } |
|
188 | 195 | |
189 | 196 | /** |
190 | 197 | * Outputs the board stats for a standard board. |
@@ -225,10 +232,11 @@ discard block |
||
225 | 232 | */ |
226 | 233 | function template_bi_board_lastpost($board) |
227 | 234 | { |
228 | - if (!empty($board['last_post']['id'])) |
|
229 | - echo ' |
|
235 | + if (!empty($board['last_post']['id'])) { |
|
236 | + echo ' |
|
230 | 237 | <p>', $board['last_post']['last_post_message'], '</p>'; |
231 | -} |
|
238 | + } |
|
239 | + } |
|
232 | 240 | |
233 | 241 | /** |
234 | 242 | * Outputs the board children for a standard board. |
@@ -248,14 +256,16 @@ discard block |
||
248 | 256 | id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */ |
249 | 257 | foreach ($board['children'] as $child) |
250 | 258 | { |
251 | - if (!$child['is_redirect']) |
|
252 | - $child['link'] = ''. ($child['new'] ? '<a href="' . $scripturl . '?action=unread;board=' . $child['id'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')" class="new_posts">' . $txt['new'] . '</a>' : '') . '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="board_new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . '</a>'; |
|
253 | - else |
|
254 | - $child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . ' - ' . $child['short_description'] . '">' . $child['name'] . '</a>'; |
|
259 | + if (!$child['is_redirect']) { |
|
260 | + $child['link'] = ''. ($child['new'] ? '<a href="' . $scripturl . '?action=unread;board=' . $child['id'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')" class="new_posts">' . $txt['new'] . '</a>' : '') . '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="board_new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . '</a>'; |
|
261 | + } else { |
|
262 | + $child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . ' - ' . $child['short_description'] . '">' . $child['name'] . '</a>'; |
|
263 | + } |
|
255 | 264 | |
256 | 265 | // Has it posts awaiting approval? |
257 | - if ($child['can_approve_posts'] && ($child['unapproved_posts'] || $child['unapproved_topics'])) |
|
258 | - $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > 0 ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>'; |
|
266 | + if ($child['can_approve_posts'] && ($child['unapproved_posts'] || $child['unapproved_topics'])) { |
|
267 | + $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > 0 ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>'; |
|
268 | + } |
|
259 | 269 | |
260 | 270 | $children[] = $child['new'] ? '<span class="strong">' . $child['link'] . '</span>' : '<span>' . $child['link'] . '</span>'; |
261 | 271 | } |
@@ -282,8 +292,9 @@ discard block |
||
282 | 292 | { |
283 | 293 | global $context, $options, $txt; |
284 | 294 | |
285 | - if (empty($context['info_center'])) |
|
286 | - return; |
|
295 | + if (empty($context['info_center'])) { |
|
296 | + return; |
|
297 | + } |
|
287 | 298 | |
288 | 299 | // Here's where the "Info Center" starts... |
289 | 300 | echo ' |
@@ -383,14 +394,15 @@ discard block |
||
383 | 394 | /* Each post in latest_posts has: |
384 | 395 | board (with an id, name, and link.), topic (the topic's id.), poster (with id, name, and link.), |
385 | 396 | subject, short_subject (shortened with...), time, link, and href. */ |
386 | - foreach ($context['latest_posts'] as $post) |
|
387 | - echo ' |
|
397 | + foreach ($context['latest_posts'] as $post) { |
|
398 | + echo ' |
|
388 | 399 | <tr class="windowbg"> |
389 | 400 | <td class="recentpost"><strong>', $post['link'], '</strong></td> |
390 | 401 | <td class="recentposter">', $post['poster']['link'], '</td> |
391 | 402 | <td class="recentboard">', $post['board']['link'], '</td> |
392 | 403 | <td class="recenttime">', $post['time'], '</td> |
393 | 404 | </tr>'; |
405 | + } |
|
394 | 406 | echo ' |
395 | 407 | </table>'; |
396 | 408 | } |
@@ -414,11 +426,12 @@ discard block |
||
414 | 426 | </div>'; |
415 | 427 | |
416 | 428 | // Holidays like "Christmas", "Chanukah", and "We Love [Unknown] Day" :P |
417 | - if (!empty($context['calendar_holidays'])) |
|
418 | - echo ' |
|
429 | + if (!empty($context['calendar_holidays'])) { |
|
430 | + echo ' |
|
419 | 431 | <p class="inline holiday"> |
420 | 432 | <span>', $txt['calendar_prompt'], '</span> ', implode(', ', $context['calendar_holidays']), ' |
421 | 433 | </p>'; |
434 | + } |
|
422 | 435 | |
423 | 436 | // People's birthdays. Like mine. And yours, I guess. Kidding. |
424 | 437 | if (!empty($context['calendar_birthdays'])) |
@@ -428,9 +441,10 @@ discard block |
||
428 | 441 | <span class="birthday">', $context['calendar_only_today'] ? $txt['birthdays'] : $txt['birthdays_upcoming'], '</span>'; |
429 | 442 | |
430 | 443 | // Each member in calendar_birthdays has: id, name (person), age (if they have one set?), is_last. (last in list?), and is_today (birthday is today?) |
431 | - foreach ($context['calendar_birthdays'] as $member) |
|
432 | - echo ' |
|
444 | + foreach ($context['calendar_birthdays'] as $member) { |
|
445 | + echo ' |
|
433 | 446 | <a href="', $scripturl, '?action=profile;u=', $member['id'], '">', $member['is_today'] ? '<strong class="fix_rtl_names">' : '', $member['name'], $member['is_today'] ? '</strong>' : '', isset($member['age']) ? ' (' . $member['age'] . ')' : '', '</a>', $member['is_last'] ? '' : ', '; |
447 | + } |
|
434 | 448 | |
435 | 449 | echo ' |
436 | 450 | </p>'; |
@@ -445,9 +459,10 @@ discard block |
||
445 | 459 | |
446 | 460 | // Each event in calendar_events should have: |
447 | 461 | // title, href, is_last, can_edit (are they allowed?), modify_href, and is_today. |
448 | - foreach ($context['calendar_events'] as $event) |
|
449 | - echo ' |
|
462 | + foreach ($context['calendar_events'] as $event) { |
|
463 | + echo ' |
|
450 | 464 | ', $event['can_edit'] ? '<a href="' . $event['modify_href'] . '" title="' . $txt['calendar_edit'] . '"><span class="generic_icons calendar_modify"></span></a> ' : '', $event['href'] == '' ? '' : '<a href="' . $event['href'] . '">', $event['is_today'] ? '<strong>' . $event['title'] . '</strong>' : $event['title'], $event['href'] == '' ? '' : '</a>', $event['is_last'] ? '<br>' : ', '; |
465 | + } |
|
451 | 466 | echo ' |
452 | 467 | </p>'; |
453 | 468 | } |
@@ -493,17 +508,21 @@ discard block |
||
493 | 508 | // Handle hidden users and buddies. |
494 | 509 | $bracketList = array(); |
495 | 510 | |
496 | - if ($context['show_buddies']) |
|
497 | - $bracketList[] = comma_format($context['num_buddies']) . ' ' . ($context['num_buddies'] == 1 ? $txt['buddy'] : $txt['buddies']); |
|
511 | + if ($context['show_buddies']) { |
|
512 | + $bracketList[] = comma_format($context['num_buddies']) . ' ' . ($context['num_buddies'] == 1 ? $txt['buddy'] : $txt['buddies']); |
|
513 | + } |
|
498 | 514 | |
499 | - if (!empty($context['num_spiders'])) |
|
500 | - $bracketList[] = comma_format($context['num_spiders']) . ' ' . ($context['num_spiders'] == 1 ? $txt['spider'] : $txt['spiders']); |
|
515 | + if (!empty($context['num_spiders'])) { |
|
516 | + $bracketList[] = comma_format($context['num_spiders']) . ' ' . ($context['num_spiders'] == 1 ? $txt['spider'] : $txt['spiders']); |
|
517 | + } |
|
501 | 518 | |
502 | - if (!empty($context['num_users_hidden'])) |
|
503 | - $bracketList[] = comma_format($context['num_users_hidden']) . ' ' . ($context['num_spiders'] == 1 ? $txt['hidden'] : $txt['hidden_s']); |
|
519 | + if (!empty($context['num_users_hidden'])) { |
|
520 | + $bracketList[] = comma_format($context['num_users_hidden']) . ' ' . ($context['num_spiders'] == 1 ? $txt['hidden'] : $txt['hidden_s']); |
|
521 | + } |
|
504 | 522 | |
505 | - if (!empty($bracketList)) |
|
506 | - echo ' (' . implode(', ', $bracketList) . ')'; |
|
523 | + if (!empty($bracketList)) { |
|
524 | + echo ' (' . implode(', ', $bracketList) . ')'; |
|
525 | + } |
|
507 | 526 | |
508 | 527 | echo $context['show_who'] ? '</a>' : '', ' |
509 | 528 | |
@@ -517,9 +536,10 @@ discard block |
||
517 | 536 | ', sprintf($txt['users_active'], $modSettings['lastActive']), ': ', implode(', ', $context['list_users_online']); |
518 | 537 | |
519 | 538 | // Showing membergroups? |
520 | - if (!empty($settings['show_group_key']) && !empty($context['membergroups'])) |
|
521 | - echo ' |
|
539 | + if (!empty($settings['show_group_key']) && !empty($context['membergroups'])) { |
|
540 | + echo ' |
|
522 | 541 | <span class="membergroups">' . implode(', ', $context['membergroups']) . '</span>'; |
542 | + } |
|
523 | 543 | } |
524 | 544 | |
525 | 545 | echo ' |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * Entry point function, permission checks, admin bars, etc. |
@@ -99,27 +100,27 @@ discard block |
||
99 | 100 | 'function' => function($rowData) use ($scripturl) |
100 | 101 | { |
101 | 102 | // Since the moderator group has no explicit members, no link is needed. |
102 | - if ($rowData['id_group'] == 3) |
|
103 | - $group_name = $rowData['group_name']; |
|
104 | - else |
|
103 | + if ($rowData['id_group'] == 3) { |
|
104 | + $group_name = $rowData['group_name']; |
|
105 | + } else |
|
105 | 106 | { |
106 | 107 | $color_style = empty($rowData['online_color']) ? '' : sprintf(' style="color: %1$s;"', $rowData['online_color']); |
107 | 108 | |
108 | 109 | if (allowedTo('manage_membergroups')) |
109 | 110 | { |
110 | 111 | $group_name = sprintf('<a href="%1$s?action=admin;area=membergroups;sa=members;group=%2$d"%3$s>%4$s</a>', $scripturl, $rowData['id_group'], $color_style, $rowData['group_name']); |
111 | - } |
|
112 | - else |
|
112 | + } else |
|
113 | 113 | { |
114 | 114 | $group_name = sprintf('<a href="%1$s?action=groups;sa=members;group=%2$d"%3$s>%4$s</a>', $scripturl, $rowData['id_group'], $color_style, $rowData['group_name']); |
115 | 115 | } |
116 | 116 | } |
117 | 117 | |
118 | 118 | // Add a help option for moderator and administrator. |
119 | - if ($rowData['id_group'] == 1) |
|
120 | - $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_administrator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
121 | - elseif ($rowData['id_group'] == 3) |
|
122 | - $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_moderator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
119 | + if ($rowData['id_group'] == 1) { |
|
120 | + $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_administrator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
121 | + } elseif ($rowData['id_group'] == 3) { |
|
122 | + $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_moderator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
123 | + } |
|
123 | 124 | |
124 | 125 | return $group_name; |
125 | 126 | }, |
@@ -198,8 +199,9 @@ discard block |
||
198 | 199 | $_REQUEST['group'] = isset($_REQUEST['group']) ? (int) $_REQUEST['group'] : 0; |
199 | 200 | |
200 | 201 | // No browsing of guests, membergroup 0 or moderators. |
201 | - if (in_array($_REQUEST['group'], array(-1, 0, 3))) |
|
202 | - fatal_lang_error('membergroup_does_not_exist', false); |
|
202 | + if (in_array($_REQUEST['group'], array(-1, 0, 3))) { |
|
203 | + fatal_lang_error('membergroup_does_not_exist', false); |
|
204 | + } |
|
203 | 205 | |
204 | 206 | // Load up the group details. |
205 | 207 | $request = $smcFunc['db_query']('', ' |
@@ -214,8 +216,9 @@ discard block |
||
214 | 216 | ) |
215 | 217 | ); |
216 | 218 | // Doesn't exist? |
217 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
218 | - fatal_lang_error('membergroup_does_not_exist', false); |
|
219 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
220 | + fatal_lang_error('membergroup_does_not_exist', false); |
|
221 | + } |
|
219 | 222 | $context['group'] = $smcFunc['db_fetch_assoc']($request); |
220 | 223 | $smcFunc['db_free_result']($request); |
221 | 224 | |
@@ -248,21 +251,25 @@ discard block |
||
248 | 251 | 'name' => $row['real_name'] |
249 | 252 | ); |
250 | 253 | |
251 | - if ($user_info['id'] == $row['id_member'] && $context['group']['group_type'] != 1) |
|
252 | - $context['group']['can_moderate'] = true; |
|
254 | + if ($user_info['id'] == $row['id_member'] && $context['group']['group_type'] != 1) { |
|
255 | + $context['group']['can_moderate'] = true; |
|
256 | + } |
|
253 | 257 | } |
254 | 258 | $smcFunc['db_free_result']($request); |
255 | 259 | |
256 | 260 | // If this group is hidden then it can only "exists" if the user can moderate it! |
257 | - if ($context['group']['hidden'] && !$context['group']['can_moderate']) |
|
258 | - fatal_lang_error('membergroup_does_not_exist', false); |
|
261 | + if ($context['group']['hidden'] && !$context['group']['can_moderate']) { |
|
262 | + fatal_lang_error('membergroup_does_not_exist', false); |
|
263 | + } |
|
259 | 264 | |
260 | 265 | // You can only assign membership if you are the moderator and/or can manage groups! |
261 | - if (!$context['group']['can_moderate']) |
|
262 | - $context['group']['assignable'] = 0; |
|
266 | + if (!$context['group']['can_moderate']) { |
|
267 | + $context['group']['assignable'] = 0; |
|
268 | + } |
|
263 | 269 | // Non-admins cannot assign admins. |
264 | - elseif ($context['group']['id'] == 1 && !allowedTo('admin_forum')) |
|
265 | - $context['group']['assignable'] = 0; |
|
270 | + elseif ($context['group']['id'] == 1 && !allowedTo('admin_forum')) { |
|
271 | + $context['group']['assignable'] = 0; |
|
272 | + } |
|
266 | 273 | |
267 | 274 | // Removing member from group? |
268 | 275 | if (isset($_POST['remove']) && !empty($_REQUEST['rem']) && is_array($_REQUEST['rem']) && $context['group']['assignable']) |
@@ -271,8 +278,9 @@ discard block |
||
271 | 278 | validateToken('mod-mgm'); |
272 | 279 | |
273 | 280 | // Make sure we're dealing with integers only. |
274 | - foreach ($_REQUEST['rem'] as $key => $group) |
|
275 | - $_REQUEST['rem'][$key] = (int) $group; |
|
281 | + foreach ($_REQUEST['rem'] as $key => $group) { |
|
282 | + $_REQUEST['rem'][$key] = (int) $group; |
|
283 | + } |
|
276 | 284 | |
277 | 285 | require_once($sourcedir . '/Subs-Membergroups.php'); |
278 | 286 | removeMembersFromGroups($_REQUEST['rem'], $_REQUEST['group'], true); |
@@ -295,16 +303,18 @@ discard block |
||
295 | 303 | { |
296 | 304 | $member_names[$index] = trim($smcFunc['strtolower']($member_names[$index])); |
297 | 305 | |
298 | - if (strlen($member_names[$index]) == 0) |
|
299 | - unset($member_names[$index]); |
|
306 | + if (strlen($member_names[$index]) == 0) { |
|
307 | + unset($member_names[$index]); |
|
308 | + } |
|
300 | 309 | } |
301 | 310 | |
302 | 311 | // Any passed by ID? |
303 | 312 | $member_ids = array(); |
304 | - if (!empty($_REQUEST['member_add'])) |
|
305 | - foreach ($_REQUEST['member_add'] as $id) |
|
313 | + if (!empty($_REQUEST['member_add'])) { |
|
314 | + foreach ($_REQUEST['member_add'] as $id) |
|
306 | 315 | if ($id > 0) |
307 | 316 | $member_ids[] = (int) $id; |
317 | + } |
|
308 | 318 | |
309 | 319 | // Construct the query pelements. |
310 | 320 | if (!empty($member_ids)) |
@@ -332,8 +342,9 @@ discard block |
||
332 | 342 | 'id_group' => $_REQUEST['group'], |
333 | 343 | )) |
334 | 344 | ); |
335 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
336 | - $members[] = $row['id_member']; |
|
345 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
346 | + $members[] = $row['id_member']; |
|
347 | + } |
|
337 | 348 | $smcFunc['db_free_result']($request); |
338 | 349 | } |
339 | 350 | |
@@ -372,10 +383,11 @@ discard block |
||
372 | 383 | $context['sort_direction'] = isset($_REQUEST['desc']) ? 'down' : 'up'; |
373 | 384 | |
374 | 385 | // The where on the query is interesting. Non-moderators should only see people who are in this group as primary. |
375 | - if ($context['group']['can_moderate']) |
|
376 | - $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group} OR FIND_IN_SET({int:group}, additional_groups) != 0'; |
|
377 | - else |
|
378 | - $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group}'; |
|
386 | + if ($context['group']['can_moderate']) { |
|
387 | + $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group} OR FIND_IN_SET({int:group}, additional_groups) != 0'; |
|
388 | + } else { |
|
389 | + $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group}'; |
|
390 | + } |
|
379 | 391 | |
380 | 392 | // Count members of the group. |
381 | 393 | $request = $smcFunc['db_query']('', ' |
@@ -416,8 +428,9 @@ discard block |
||
416 | 428 | $last_online = empty($row['last_login']) ? $txt['never'] : timeformat($row['last_login']); |
417 | 429 | |
418 | 430 | // Italicize the online note if they aren't activated. |
419 | - if ($row['is_activated'] % 10 != 1) |
|
420 | - $last_online = '<em title="' . $txt['not_activated'] . '">' . $last_online . '</em>'; |
|
431 | + if ($row['is_activated'] % 10 != 1) { |
|
432 | + $last_online = '<em title="' . $txt['not_activated'] . '">' . $last_online . '</em>'; |
|
433 | + } |
|
421 | 434 | |
422 | 435 | $context['members'][] = array( |
423 | 436 | 'id' => $row['id_member'], |
@@ -437,9 +450,10 @@ discard block |
||
437 | 450 | $context['page_title'] = $txt['membergroups_members_title'] . ': ' . $context['group']['name']; |
438 | 451 | createToken('mod-mgm'); |
439 | 452 | |
440 | - if ($context['group']['assignable']) |
|
441 | - loadJavaScriptFile('suggest.js', array('defer' => false, 'minimize' => true), 'smf_suggest'); |
|
442 | -} |
|
453 | + if ($context['group']['assignable']) { |
|
454 | + loadJavaScriptFile('suggest.js', array('defer' => false, 'minimize' => true), 'smf_suggest'); |
|
455 | + } |
|
456 | + } |
|
443 | 457 | |
444 | 458 | /** |
445 | 459 | * Show and manage all group requests. |
@@ -453,16 +467,18 @@ discard block |
||
453 | 467 | $context['sub_template'] = 'show_list'; |
454 | 468 | |
455 | 469 | // Verify we can be here. |
456 | - if ($user_info['mod_cache']['gq'] == '0=1') |
|
457 | - isAllowedTo('manage_membergroups'); |
|
470 | + if ($user_info['mod_cache']['gq'] == '0=1') { |
|
471 | + isAllowedTo('manage_membergroups'); |
|
472 | + } |
|
458 | 473 | |
459 | 474 | // Normally, we act normally... |
460 | 475 | $where = ($user_info['mod_cache']['gq'] == '1=1' || $user_info['mod_cache']['gq'] == '0=1' ? $user_info['mod_cache']['gq'] : 'lgr.' . $user_info['mod_cache']['gq']); |
461 | 476 | |
462 | - if (isset($_GET['closed'])) |
|
463 | - $where .= ' AND lgr.status != {int:status_open}'; |
|
464 | - else |
|
465 | - $where .= ' AND lgr.status = {int:status_open}'; |
|
477 | + if (isset($_GET['closed'])) { |
|
478 | + $where .= ' AND lgr.status != {int:status_open}'; |
|
479 | + } else { |
|
480 | + $where .= ' AND lgr.status = {int:status_open}'; |
|
481 | + } |
|
466 | 482 | |
467 | 483 | $where_parameters = array( |
468 | 484 | 'status_open' => 0, |
@@ -475,8 +491,9 @@ discard block |
||
475 | 491 | validateToken('mod-gr'); |
476 | 492 | |
477 | 493 | // Clean the values. |
478 | - foreach ($_POST['groupr'] as $k => $request) |
|
479 | - $_POST['groupr'][$k] = (int) $request; |
|
494 | + foreach ($_POST['groupr'] as $k => $request) { |
|
495 | + $_POST['groupr'][$k] = (int) $request; |
|
496 | + } |
|
480 | 497 | |
481 | 498 | $log_changes = array(); |
482 | 499 | |
@@ -513,8 +530,8 @@ discard block |
||
513 | 530 | $request_list = array(); |
514 | 531 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
515 | 532 | { |
516 | - if (!isset($log_changes[$row['id_request']])) |
|
517 | - $log_changes[$row['id_request']] = array( |
|
533 | + if (!isset($log_changes[$row['id_request']])) { |
|
534 | + $log_changes[$row['id_request']] = array( |
|
518 | 535 | 'id_request' => $row['id_request'], |
519 | 536 | 'status' => $_POST['req_action'] == 'approve' ? 1 : 2, // 1 = approved, 2 = rejected |
520 | 537 | 'id_member_acted' => $user_info['id'], |
@@ -522,6 +539,7 @@ discard block |
||
522 | 539 | 'time_acted' => time(), |
523 | 540 | 'act_reason' => $_POST['req_action'] != 'approve' && !empty($_POST['groupreason']) && !empty($_POST['groupreason'][$row['id_request']]) ? $smcFunc['htmlspecialchars']($_POST['groupreason'][$row['id_request']], ENT_QUOTES) : '', |
524 | 541 | ); |
542 | + } |
|
525 | 543 | $request_list[] = $row['id_request']; |
526 | 544 | } |
527 | 545 | $smcFunc['db_free_result']($request); |
@@ -744,21 +762,24 @@ discard block |
||
744 | 762 | $group_requests = array(); |
745 | 763 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
746 | 764 | { |
747 | - if (empty($row['reason'])) |
|
748 | - $reason = '<em>(' . $txt['mc_groupr_no_reason'] . ')</em>'; |
|
749 | - else |
|
750 | - $reason = censorText($row['reason']); |
|
765 | + if (empty($row['reason'])) { |
|
766 | + $reason = '<em>(' . $txt['mc_groupr_no_reason'] . ')</em>'; |
|
767 | + } else { |
|
768 | + $reason = censorText($row['reason']); |
|
769 | + } |
|
751 | 770 | |
752 | 771 | if (isset($_GET['closed'])) |
753 | 772 | { |
754 | - if ($row['status'] == 1) |
|
755 | - $reason .= '<br><br><strong>' . $txt['mc_groupr_approved'] . '</strong>'; |
|
756 | - elseif ($row['status'] == 2) |
|
757 | - $reason .= '<br><br><strong>' . $txt['mc_groupr_rejected'] . '</strong>'; |
|
773 | + if ($row['status'] == 1) { |
|
774 | + $reason .= '<br><br><strong>' . $txt['mc_groupr_approved'] . '</strong>'; |
|
775 | + } elseif ($row['status'] == 2) { |
|
776 | + $reason .= '<br><br><strong>' . $txt['mc_groupr_rejected'] . '</strong>'; |
|
777 | + } |
|
758 | 778 | |
759 | 779 | $reason .= ' (' . timeformat($row['time_acted']) . ')'; |
760 | - if (!empty($row['act_reason'])) |
|
761 | - $reason .= '<br><br>' . censorText($row['act_reason']); |
|
780 | + if (!empty($row['act_reason'])) { |
|
781 | + $reason .= '<br><br>' . censorText($row['act_reason']); |
|
782 | + } |
|
762 | 783 | } |
763 | 784 | |
764 | 785 | $group_requests[] = array( |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * The main admin handling function.<br> |
@@ -444,8 +445,9 @@ discard block |
||
444 | 445 | foreach ($admin_includes as $include) |
445 | 446 | { |
446 | 447 | $include = strtr(trim($include), array('$boarddir' => $boarddir, '$sourcedir' => $sourcedir, '$themedir' => $settings['theme_dir'])); |
447 | - if (file_exists($include)) |
|
448 | - require_once($include); |
|
448 | + if (file_exists($include)) { |
|
449 | + require_once($include); |
|
450 | + } |
|
449 | 451 | } |
450 | 452 | } |
451 | 453 | |
@@ -457,24 +459,27 @@ discard block |
||
457 | 459 | unset($admin_areas); |
458 | 460 | |
459 | 461 | // Nothing valid? |
460 | - if ($admin_include_data == false) |
|
461 | - fatal_lang_error('no_access', false); |
|
462 | + if ($admin_include_data == false) { |
|
463 | + fatal_lang_error('no_access', false); |
|
464 | + } |
|
462 | 465 | |
463 | 466 | // Build the link tree. |
464 | 467 | $context['linktree'][] = array( |
465 | 468 | 'url' => $scripturl . '?action=admin', |
466 | 469 | 'name' => $txt['admin_center'], |
467 | 470 | ); |
468 | - if (isset($admin_include_data['current_area']) && $admin_include_data['current_area'] != 'index') |
|
469 | - $context['linktree'][] = array( |
|
471 | + if (isset($admin_include_data['current_area']) && $admin_include_data['current_area'] != 'index') { |
|
472 | + $context['linktree'][] = array( |
|
470 | 473 | 'url' => $scripturl . '?action=admin;area=' . $admin_include_data['current_area'] . ';' . $context['session_var'] . '=' . $context['session_id'], |
471 | 474 | 'name' => $admin_include_data['label'], |
472 | 475 | ); |
473 | - if (!empty($admin_include_data['current_subsection']) && $admin_include_data['subsections'][$admin_include_data['current_subsection']][0] != $admin_include_data['label']) |
|
474 | - $context['linktree'][] = array( |
|
476 | + } |
|
477 | + if (!empty($admin_include_data['current_subsection']) && $admin_include_data['subsections'][$admin_include_data['current_subsection']][0] != $admin_include_data['label']) { |
|
478 | + $context['linktree'][] = array( |
|
475 | 479 | 'url' => $scripturl . '?action=admin;area=' . $admin_include_data['current_area'] . ';sa=' . $admin_include_data['current_subsection'] . ';' . $context['session_var'] . '=' . $context['session_id'], |
476 | 480 | 'name' => $admin_include_data['subsections'][$admin_include_data['current_subsection']][0], |
477 | 481 | ); |
482 | + } |
|
478 | 483 | |
479 | 484 | // Make a note of the Unique ID for this menu. |
480 | 485 | $context['admin_menu_id'] = $context['max_menu_id']; |
@@ -484,16 +489,18 @@ discard block |
||
484 | 489 | $context['admin_area'] = $admin_include_data['current_area']; |
485 | 490 | |
486 | 491 | // Now - finally - call the right place! |
487 | - if (isset($admin_include_data['file'])) |
|
488 | - require_once($sourcedir . '/' . $admin_include_data['file']); |
|
492 | + if (isset($admin_include_data['file'])) { |
|
493 | + require_once($sourcedir . '/' . $admin_include_data['file']); |
|
494 | + } |
|
489 | 495 | |
490 | 496 | // Get the right callable. |
491 | 497 | $call = call_helper($admin_include_data['function'], true); |
492 | 498 | |
493 | 499 | // Is it valid? |
494 | - if (!empty($call)) |
|
495 | - call_user_func($call); |
|
496 | -} |
|
500 | + if (!empty($call)) { |
|
501 | + call_user_func($call); |
|
502 | + } |
|
503 | + } |
|
497 | 504 | |
498 | 505 | /** |
499 | 506 | * The main administration section. |
@@ -547,13 +554,14 @@ discard block |
||
547 | 554 | |
548 | 555 | $context['sub_template'] = $context['admin_area'] == 'credits' ? 'credits' : 'admin'; |
549 | 556 | $context['page_title'] = $context['admin_area'] == 'credits' ? $txt['support_credits_title'] : $txt['admin_center']; |
550 | - if ($context['admin_area'] != 'credits') |
|
551 | - $context[$context['admin_menu_name']]['tab_data'] = array( |
|
557 | + if ($context['admin_area'] != 'credits') { |
|
558 | + $context[$context['admin_menu_name']]['tab_data'] = array( |
|
552 | 559 | 'title' => $txt['admin_center'], |
553 | 560 | 'help' => '', |
554 | 561 | 'description' => '<strong>' . $txt['hello_guest'] . ' ' . $context['user']['name'] . '!</strong> |
555 | 562 | ' . sprintf($txt['admin_main_welcome'], $txt['admin_center'], $txt['help'], $txt['help']), |
556 | 563 | ); |
564 | + } |
|
557 | 565 | |
558 | 566 | // Lastly, fill in the blanks in the support resources paragraphs. |
559 | 567 | $txt['support_resources_p1'] = sprintf($txt['support_resources_p1'], |
@@ -571,9 +579,10 @@ discard block |
||
571 | 579 | 'https://www.simplemachines.org/redirect/customize_support' |
572 | 580 | ); |
573 | 581 | |
574 | - if ($context['admin_area'] == 'admin') |
|
575 | - loadJavaScriptFile('admin.js', array('defer' => false, 'minimize' => true), 'smf_admin'); |
|
576 | -} |
|
582 | + if ($context['admin_area'] == 'admin') { |
|
583 | + loadJavaScriptFile('admin.js', array('defer' => false, 'minimize' => true), 'smf_admin'); |
|
584 | + } |
|
585 | + } |
|
577 | 586 | |
578 | 587 | /** |
579 | 588 | * Get one of the admin information files from Simple Machines. |
@@ -584,8 +593,9 @@ discard block |
||
584 | 593 | |
585 | 594 | setMemoryLimit('32M'); |
586 | 595 | |
587 | - if (empty($_REQUEST['filename']) || !is_string($_REQUEST['filename'])) |
|
588 | - fatal_lang_error('no_access', false); |
|
596 | + if (empty($_REQUEST['filename']) || !is_string($_REQUEST['filename'])) { |
|
597 | + fatal_lang_error('no_access', false); |
|
598 | + } |
|
589 | 599 | |
590 | 600 | // Strip off the forum cache part or we won't find it... |
591 | 601 | $_REQUEST['filename'] = str_replace($modSettings['browser_cache'], '', $_REQUEST['filename']); |
@@ -600,27 +610,30 @@ discard block |
||
600 | 610 | ) |
601 | 611 | ); |
602 | 612 | |
603 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
604 | - fatal_lang_error('admin_file_not_found', true, array($_REQUEST['filename']), 404); |
|
613 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
614 | + fatal_lang_error('admin_file_not_found', true, array($_REQUEST['filename']), 404); |
|
615 | + } |
|
605 | 616 | |
606 | 617 | list ($file_data, $filetype) = $smcFunc['db_fetch_row']($request); |
607 | 618 | $smcFunc['db_free_result']($request); |
608 | 619 | |
609 | 620 | // @todo Temp |
610 | 621 | // Figure out if sesc is still being used. |
611 | - if (strpos($file_data, ';sesc=') !== false && $filetype == 'text/javascript') |
|
612 | - $file_data = ' |
|
622 | + if (strpos($file_data, ';sesc=') !== false && $filetype == 'text/javascript') { |
|
623 | + $file_data = ' |
|
613 | 624 | if (!(\'smfForum_sessionvar\' in window)) |
614 | 625 | window.smfForum_sessionvar = \'sesc\'; |
615 | 626 | ' . strtr($file_data, array(';sesc=' => ';\' + window.smfForum_sessionvar + \'=')); |
627 | + } |
|
616 | 628 | |
617 | 629 | $context['template_layers'] = array(); |
618 | 630 | // Lets make sure we aren't going to output anything nasty. |
619 | 631 | @ob_end_clean(); |
620 | - if (!empty($modSettings['enableCompressedOutput'])) |
|
621 | - @ob_start('ob_gzhandler'); |
|
622 | - else |
|
623 | - @ob_start(); |
|
632 | + if (!empty($modSettings['enableCompressedOutput'])) { |
|
633 | + @ob_start('ob_gzhandler'); |
|
634 | + } else { |
|
635 | + @ob_start(); |
|
636 | + } |
|
624 | 637 | |
625 | 638 | // Make sure they know what type of file we are. |
626 | 639 | header('content-type: ' . $filetype); |
@@ -660,11 +673,12 @@ discard block |
||
660 | 673 | updateAdminPreferences(); |
661 | 674 | } |
662 | 675 | |
663 | - if (trim($context['search_term']) == '') |
|
664 | - $context['search_results'] = array(); |
|
665 | - else |
|
666 | - call_helper($subActions[$context['search_type']]); |
|
667 | -} |
|
676 | + if (trim($context['search_term']) == '') { |
|
677 | + $context['search_results'] = array(); |
|
678 | + } else { |
|
679 | + call_helper($subActions[$context['search_type']]); |
|
680 | + } |
|
681 | + } |
|
668 | 682 | |
669 | 683 | /** |
670 | 684 | * A complicated but relatively quick internal search. |
@@ -728,8 +742,9 @@ discard block |
||
728 | 742 | |
729 | 743 | loadLanguage(implode('+', $language_files)); |
730 | 744 | |
731 | - foreach ($include_files as $file) |
|
732 | - require_once($sourcedir . '/' . $file . '.php'); |
|
745 | + foreach ($include_files as $file) { |
|
746 | + require_once($sourcedir . '/' . $file . '.php'); |
|
747 | + } |
|
733 | 748 | |
734 | 749 | /* This is the huge array that defines everything... it's a huge array of items formatted as follows: |
735 | 750 | 0 = Language index (Can be array of indexes) to search through for this setting. |
@@ -753,11 +768,12 @@ discard block |
||
753 | 768 | foreach ($section['areas'] as $menu_key => $menu_item) |
754 | 769 | { |
755 | 770 | $search_data['sections'][] = array($menu_item['label'], 'area=' . $menu_key); |
756 | - if (!empty($menu_item['subsections'])) |
|
757 | - foreach ($menu_item['subsections'] as $key => $sublabel) |
|
771 | + if (!empty($menu_item['subsections'])) { |
|
772 | + foreach ($menu_item['subsections'] as $key => $sublabel) |
|
758 | 773 | { |
759 | 774 | if (isset($sublabel['label'])) |
760 | 775 | $search_data['sections'][] = array($sublabel['label'], 'area=' . $menu_key . ';sa=' . $key); |
776 | + } |
|
761 | 777 | } |
762 | 778 | } |
763 | 779 | } |
@@ -767,9 +783,10 @@ discard block |
||
767 | 783 | // Get a list of their variables. |
768 | 784 | $config_vars = $setting_area[0](true); |
769 | 785 | |
770 | - foreach ($config_vars as $var) |
|
771 | - if (!empty($var[1]) && !in_array($var[0], array('permissions', 'switch', 'desc'))) |
|
786 | + foreach ($config_vars as $var) { |
|
787 | + if (!empty($var[1]) && !in_array($var[0], array('permissions', 'switch', 'desc'))) |
|
772 | 788 | $search_data['settings'][] = array($var[(isset($var[2]) && in_array($var[2], array('file', 'db'))) ? 0 : 1], $setting_area[1], 'alttxt' => (isset($var[2]) && in_array($var[2], array('file', 'db'))) || isset($var[3]) ? (in_array($var[2], array('file', 'db')) ? $var[1] : $var[3]) : ''); |
789 | + } |
|
773 | 790 | } |
774 | 791 | |
775 | 792 | $context['page_title'] = $txt['admin_search_results']; |
@@ -782,8 +799,9 @@ discard block |
||
782 | 799 | foreach ($data as $item) |
783 | 800 | { |
784 | 801 | $found = false; |
785 | - if (!is_array($item[0])) |
|
786 | - $item[0] = array($item[0]); |
|
802 | + if (!is_array($item[0])) { |
|
803 | + $item[0] = array($item[0]); |
|
804 | + } |
|
787 | 805 | foreach ($item[0] as $term) |
788 | 806 | { |
789 | 807 | if (stripos($term, $search_term) !== false || (isset($txt[$term]) && stripos($txt[$term], $search_term) !== false) || (isset($txt['setting_' . $term]) && stripos($txt['setting_' . $term], $search_term) !== false)) |
@@ -841,8 +859,9 @@ discard block |
||
841 | 859 | $postVars = explode(' ', $context['search_term']); |
842 | 860 | |
843 | 861 | // Encode the search data. |
844 | - foreach ($postVars as $k => $v) |
|
845 | - $postVars[$k] = urlencode($v); |
|
862 | + foreach ($postVars as $k => $v) { |
|
863 | + $postVars[$k] = urlencode($v); |
|
864 | + } |
|
846 | 865 | |
847 | 866 | // This is what we will send. |
848 | 867 | $postVars = implode('+', $postVars); |
@@ -853,8 +872,9 @@ discard block |
||
853 | 872 | $search_results = fetch_web_data($context['doc_apiurl'] . '?action=query&list=search&srprop=timestamp|snippet&format=xml&srwhat=text&srsearch=' . $postVars); |
854 | 873 | |
855 | 874 | // If we didn't get any xml back we are in trouble - perhaps the doc site is overloaded? |
856 | - if (!$search_results || preg_match('~<' . '\?xml\sversion="\d+\.\d+"\?' . '>\s*(<api>.+?</api>)~is', $search_results, $matches) != true) |
|
857 | - fatal_lang_error('cannot_connect_doc_site'); |
|
875 | + if (!$search_results || preg_match('~<' . '\?xml\sversion="\d+\.\d+"\?' . '>\s*(<api>.+?</api>)~is', $search_results, $matches) != true) { |
|
876 | + fatal_lang_error('cannot_connect_doc_site'); |
|
877 | + } |
|
858 | 878 | |
859 | 879 | $search_results = $matches[1]; |
860 | 880 | |
@@ -866,8 +886,9 @@ discard block |
||
866 | 886 | $results = new xmlArray($search_results, false); |
867 | 887 | |
868 | 888 | // Move through the api layer. |
869 | - if (!$results->exists('api')) |
|
870 | - fatal_lang_error('cannot_connect_doc_site'); |
|
889 | + if (!$results->exists('api')) { |
|
890 | + fatal_lang_error('cannot_connect_doc_site'); |
|
891 | + } |
|
871 | 892 | |
872 | 893 | // Are there actually some results? |
873 | 894 | if ($results->exists('api/query/search/p')) |
@@ -903,8 +924,9 @@ discard block |
||
903 | 924 | ); |
904 | 925 | |
905 | 926 | // If it's not got a sa set it must have come here for first time, pretend error log should be reversed. |
906 | - if (!isset($_REQUEST['sa'])) |
|
907 | - $_REQUEST['desc'] = true; |
|
927 | + if (!isset($_REQUEST['sa'])) { |
|
928 | + $_REQUEST['desc'] = true; |
|
929 | + } |
|
908 | 930 | |
909 | 931 | // Setup some tab stuff. |
910 | 932 | $context[$context['admin_menu_name']]['tab_data'] = array( |
@@ -954,9 +976,10 @@ discard block |
||
954 | 976 | unset($_SESSION['admin_time']); |
955 | 977 | |
956 | 978 | // Clean any admin tokens as well. |
957 | - foreach ($_SESSION['token'] as $key => $token) |
|
958 | - if (strpos($key, '-admin') !== false) |
|
979 | + foreach ($_SESSION['token'] as $key => $token) { |
|
980 | + if (strpos($key, '-admin') !== false) |
|
959 | 981 | unset($_SESSION['token'][$key]); |
982 | + } |
|
960 | 983 | |
961 | 984 | redirectexit(); |
962 | 985 | } |
@@ -15,8 +15,9 @@ discard block |
||
15 | 15 | * @version 2.1 Beta 4 |
16 | 16 | */ |
17 | 17 | |
18 | -if (!defined('SMF')) |
|
18 | +if (!defined('SMF')) { |
|
19 | 19 | die('No direct access...'); |
20 | +} |
|
20 | 21 | |
21 | 22 | /** |
22 | 23 | * The main designating function for modifying profiles. Loads up info, determins what to do, etc. |
@@ -29,18 +30,21 @@ discard block |
||
29 | 30 | global $modSettings, $memberContext, $profile_vars, $post_errors, $smcFunc; |
30 | 31 | |
31 | 32 | // Don't reload this as we may have processed error strings. |
32 | - if (empty($post_errors)) |
|
33 | - loadLanguage('Profile+Drafts'); |
|
33 | + if (empty($post_errors)) { |
|
34 | + loadLanguage('Profile+Drafts'); |
|
35 | + } |
|
34 | 36 | loadTemplate('Profile'); |
35 | 37 | |
36 | 38 | require_once($sourcedir . '/Subs-Menu.php'); |
37 | 39 | |
38 | 40 | // Did we get the user by name... |
39 | - if (isset($_REQUEST['user'])) |
|
40 | - $memberResult = loadMemberData($_REQUEST['user'], true, 'profile'); |
|
41 | + if (isset($_REQUEST['user'])) { |
|
42 | + $memberResult = loadMemberData($_REQUEST['user'], true, 'profile'); |
|
43 | + } |
|
41 | 44 | // ... or by id_member? |
42 | - elseif (!empty($_REQUEST['u'])) |
|
43 | - $memberResult = loadMemberData((int) $_REQUEST['u'], false, 'profile'); |
|
45 | + elseif (!empty($_REQUEST['u'])) { |
|
46 | + $memberResult = loadMemberData((int) $_REQUEST['u'], false, 'profile'); |
|
47 | + } |
|
44 | 48 | // If it was just ?action=profile, edit your own profile, but only if you're not a guest. |
45 | 49 | else |
46 | 50 | { |
@@ -50,8 +54,9 @@ discard block |
||
50 | 54 | } |
51 | 55 | |
52 | 56 | // Check if loadMemberData() has returned a valid result. |
53 | - if (!$memberResult) |
|
54 | - fatal_lang_error('not_a_user', false, 404); |
|
57 | + if (!$memberResult) { |
|
58 | + fatal_lang_error('not_a_user', false, 404); |
|
59 | + } |
|
55 | 60 | |
56 | 61 | // If all went well, we have a valid member ID! |
57 | 62 | list ($memID) = $memberResult; |
@@ -67,8 +72,9 @@ discard block |
||
67 | 72 | |
68 | 73 | // Group management isn't actually a permission. But we need it to be for this, so we need a phantom permission. |
69 | 74 | // And we care about what the current user can do, not what the user whose profile it is. |
70 | - if ($user_info['mod_cache']['gq'] != '0=1') |
|
71 | - $user_info['permissions'][] = 'approve_group_requests'; |
|
75 | + if ($user_info['mod_cache']['gq'] != '0=1') { |
|
76 | + $user_info['permissions'][] = 'approve_group_requests'; |
|
77 | + } |
|
72 | 78 | |
73 | 79 | // If paid subscriptions are enabled, make sure we actually have at least one subscription available... |
74 | 80 | $context['subs_available'] = false; |
@@ -436,21 +442,25 @@ discard block |
||
436 | 442 | foreach ($section['areas'] as $area_id => $area) |
437 | 443 | { |
438 | 444 | // If it said no permissions that meant it wasn't valid! |
439 | - if (empty($area['permission'][$context['user']['is_owner'] ? 'own' : 'any'])) |
|
440 | - $profile_areas[$section_id]['areas'][$area_id]['enabled'] = false; |
|
445 | + if (empty($area['permission'][$context['user']['is_owner'] ? 'own' : 'any'])) { |
|
446 | + $profile_areas[$section_id]['areas'][$area_id]['enabled'] = false; |
|
447 | + } |
|
441 | 448 | // Otherwise pick the right set. |
442 | - else |
|
443 | - $profile_areas[$section_id]['areas'][$area_id]['permission'] = $area['permission'][$context['user']['is_owner'] ? 'own' : 'any']; |
|
449 | + else { |
|
450 | + $profile_areas[$section_id]['areas'][$area_id]['permission'] = $area['permission'][$context['user']['is_owner'] ? 'own' : 'any']; |
|
451 | + } |
|
444 | 452 | |
445 | 453 | // Password required in most cases |
446 | - if (!empty($area['password'])) |
|
447 | - $context['password_areas'][] = $area_id; |
|
454 | + if (!empty($area['password'])) { |
|
455 | + $context['password_areas'][] = $area_id; |
|
456 | + } |
|
448 | 457 | } |
449 | 458 | } |
450 | 459 | |
451 | 460 | // Is there an updated message to show? |
452 | - if (isset($_GET['updated'])) |
|
453 | - $context['profile_updated'] = $txt['profile_updated_own']; |
|
461 | + if (isset($_GET['updated'])) { |
|
462 | + $context['profile_updated'] = $txt['profile_updated_own']; |
|
463 | + } |
|
454 | 464 | |
455 | 465 | // Set a few options for the menu. |
456 | 466 | $menuOptions = array( |
@@ -465,8 +475,9 @@ discard block |
||
465 | 475 | $profile_include_data = createMenu($profile_areas, $menuOptions); |
466 | 476 | |
467 | 477 | // No menu means no access. |
468 | - if (!$profile_include_data && (!$user_info['is_guest'] || validateSession())) |
|
469 | - fatal_lang_error('no_access', false); |
|
478 | + if (!$profile_include_data && (!$user_info['is_guest'] || validateSession())) { |
|
479 | + fatal_lang_error('no_access', false); |
|
480 | + } |
|
470 | 481 | |
471 | 482 | // Make a note of the Unique ID for this menu. |
472 | 483 | $context['profile_menu_id'] = $context['max_menu_id']; |
@@ -492,8 +503,9 @@ discard block |
||
492 | 503 | if ($current_area == $area_id) |
493 | 504 | { |
494 | 505 | // This can't happen - but is a security check. |
495 | - if ((isset($section['enabled']) && $section['enabled'] == false) || (isset($area['enabled']) && $area['enabled'] == false)) |
|
496 | - fatal_lang_error('no_access', false); |
|
506 | + if ((isset($section['enabled']) && $section['enabled'] == false) || (isset($area['enabled']) && $area['enabled'] == false)) { |
|
507 | + fatal_lang_error('no_access', false); |
|
508 | + } |
|
497 | 509 | |
498 | 510 | // Are we saving data in a valid area? |
499 | 511 | if (isset($area['sc']) && (isset($_REQUEST['save']) || $context['do_preview'])) |
@@ -512,12 +524,14 @@ discard block |
||
512 | 524 | } |
513 | 525 | |
514 | 526 | // Does this require session validating? |
515 | - if (!empty($area['validate']) || (isset($_REQUEST['save']) && !$context['user']['is_owner'])) |
|
516 | - $security_checks['validate'] = true; |
|
527 | + if (!empty($area['validate']) || (isset($_REQUEST['save']) && !$context['user']['is_owner'])) { |
|
528 | + $security_checks['validate'] = true; |
|
529 | + } |
|
517 | 530 | |
518 | 531 | // Permissions for good measure. |
519 | - if (!empty($profile_include_data['permission'])) |
|
520 | - $security_checks['permission'] = $profile_include_data['permission']; |
|
532 | + if (!empty($profile_include_data['permission'])) { |
|
533 | + $security_checks['permission'] = $profile_include_data['permission']; |
|
534 | + } |
|
521 | 535 | |
522 | 536 | // Either way got something. |
523 | 537 | $found_area = true; |
@@ -526,21 +540,26 @@ discard block |
||
526 | 540 | } |
527 | 541 | |
528 | 542 | // Oh dear, some serious security lapse is going on here... we'll put a stop to that! |
529 | - if (!$found_area) |
|
530 | - fatal_lang_error('no_access', false); |
|
543 | + if (!$found_area) { |
|
544 | + fatal_lang_error('no_access', false); |
|
545 | + } |
|
531 | 546 | |
532 | 547 | // Release this now. |
533 | 548 | unset($profile_areas); |
534 | 549 | |
535 | 550 | // Now the context is setup have we got any security checks to carry out additional to that above? |
536 | - if (isset($security_checks['session'])) |
|
537 | - checkSession($security_checks['session']); |
|
538 | - if (isset($security_checks['validate'])) |
|
539 | - validateSession(); |
|
540 | - if (isset($security_checks['validateToken'])) |
|
541 | - validateToken($token_name, $token_type); |
|
542 | - if (isset($security_checks['permission'])) |
|
543 | - isAllowedTo($security_checks['permission']); |
|
551 | + if (isset($security_checks['session'])) { |
|
552 | + checkSession($security_checks['session']); |
|
553 | + } |
|
554 | + if (isset($security_checks['validate'])) { |
|
555 | + validateSession(); |
|
556 | + } |
|
557 | + if (isset($security_checks['validateToken'])) { |
|
558 | + validateToken($token_name, $token_type); |
|
559 | + } |
|
560 | + if (isset($security_checks['permission'])) { |
|
561 | + isAllowedTo($security_checks['permission']); |
|
562 | + } |
|
544 | 563 | |
545 | 564 | // Create a token if needed. |
546 | 565 | if (isset($security_checks['needsToken']) || isset($security_checks['validateToken'])) |
@@ -550,8 +569,9 @@ discard block |
||
550 | 569 | } |
551 | 570 | |
552 | 571 | // File to include? |
553 | - if (isset($profile_include_data['file'])) |
|
554 | - require_once($sourcedir . '/' . $profile_include_data['file']); |
|
572 | + if (isset($profile_include_data['file'])) { |
|
573 | + require_once($sourcedir . '/' . $profile_include_data['file']); |
|
574 | + } |
|
555 | 575 | |
556 | 576 | // Build the link tree. |
557 | 577 | $context['linktree'][] = array( |
@@ -559,17 +579,19 @@ discard block |
||
559 | 579 | 'name' => sprintf($txt['profile_of_username'], $context['member']['name']), |
560 | 580 | ); |
561 | 581 | |
562 | - if (!empty($profile_include_data['label'])) |
|
563 | - $context['linktree'][] = array( |
|
582 | + if (!empty($profile_include_data['label'])) { |
|
583 | + $context['linktree'][] = array( |
|
564 | 584 | 'url' => $scripturl . '?action=profile' . ($memID != $user_info['id'] ? ';u=' . $memID : '') . ';area=' . $profile_include_data['current_area'], |
565 | 585 | 'name' => $profile_include_data['label'], |
566 | 586 | ); |
587 | + } |
|
567 | 588 | |
568 | - if (!empty($profile_include_data['current_subsection']) && $profile_include_data['subsections'][$profile_include_data['current_subsection']][0] != $profile_include_data['label']) |
|
569 | - $context['linktree'][] = array( |
|
589 | + if (!empty($profile_include_data['current_subsection']) && $profile_include_data['subsections'][$profile_include_data['current_subsection']][0] != $profile_include_data['label']) { |
|
590 | + $context['linktree'][] = array( |
|
570 | 591 | 'url' => $scripturl . '?action=profile' . ($memID != $user_info['id'] ? ';u=' . $memID : '') . ';area=' . $profile_include_data['current_area'] . ';sa=' . $profile_include_data['current_subsection'], |
571 | 592 | 'name' => $profile_include_data['subsections'][$profile_include_data['current_subsection']][0], |
572 | 593 | ); |
594 | + } |
|
573 | 595 | |
574 | 596 | // Set the template for this area and add the profile layer. |
575 | 597 | $context['sub_template'] = $profile_include_data['function']; |
@@ -595,12 +617,14 @@ discard block |
||
595 | 617 | if ($check_password) |
596 | 618 | { |
597 | 619 | // Check to ensure we're forcing SSL for authentication |
598 | - if (!empty($modSettings['force_ssl']) && empty($maintenance) && !httpsOn()) |
|
599 | - fatal_lang_error('login_ssl_required'); |
|
620 | + if (!empty($modSettings['force_ssl']) && empty($maintenance) && !httpsOn()) { |
|
621 | + fatal_lang_error('login_ssl_required'); |
|
622 | + } |
|
600 | 623 | |
601 | 624 | // You didn't even enter a password! |
602 | - if (trim($_POST['oldpasswrd']) == '') |
|
603 | - $post_errors[] = 'no_password'; |
|
625 | + if (trim($_POST['oldpasswrd']) == '') { |
|
626 | + $post_errors[] = 'no_password'; |
|
627 | + } |
|
604 | 628 | |
605 | 629 | // Since the password got modified due to all the $_POST cleaning, lets undo it so we can get the correct password |
606 | 630 | $_POST['oldpasswrd'] = un_htmlspecialchars($_POST['oldpasswrd']); |
@@ -609,42 +633,43 @@ discard block |
||
609 | 633 | $good_password = in_array(true, call_integration_hook('integrate_verify_password', array($cur_profile['member_name'], $_POST['oldpasswrd'], false)), true); |
610 | 634 | |
611 | 635 | // Bad password!!! |
612 | - if (!$good_password && !hash_verify_password($user_profile[$memID]['member_name'], un_htmlspecialchars(stripslashes($_POST['oldpasswrd'])), $user_info['passwd'])) |
|
613 | - $post_errors[] = 'bad_password'; |
|
636 | + if (!$good_password && !hash_verify_password($user_profile[$memID]['member_name'], un_htmlspecialchars(stripslashes($_POST['oldpasswrd'])), $user_info['passwd'])) { |
|
637 | + $post_errors[] = 'bad_password'; |
|
638 | + } |
|
614 | 639 | |
615 | 640 | // Warn other elements not to jump the gun and do custom changes! |
616 | - if (in_array('bad_password', $post_errors)) |
|
617 | - $context['password_auth_failed'] = true; |
|
641 | + if (in_array('bad_password', $post_errors)) { |
|
642 | + $context['password_auth_failed'] = true; |
|
643 | + } |
|
618 | 644 | } |
619 | 645 | |
620 | 646 | // Change the IP address in the database. |
621 | - if ($context['user']['is_owner']) |
|
622 | - $profile_vars['member_ip'] = $user_info['ip']; |
|
647 | + if ($context['user']['is_owner']) { |
|
648 | + $profile_vars['member_ip'] = $user_info['ip']; |
|
649 | + } |
|
623 | 650 | |
624 | 651 | // Now call the sub-action function... |
625 | 652 | if ($current_area == 'activateaccount') |
626 | 653 | { |
627 | - if (empty($post_errors)) |
|
628 | - activateAccount($memID); |
|
629 | - } |
|
630 | - elseif ($current_area == 'deleteaccount') |
|
654 | + if (empty($post_errors)) { |
|
655 | + activateAccount($memID); |
|
656 | + } |
|
657 | + } elseif ($current_area == 'deleteaccount') |
|
631 | 658 | { |
632 | 659 | if (empty($post_errors)) |
633 | 660 | { |
634 | 661 | deleteAccount2($memID); |
635 | 662 | redirectexit(); |
636 | 663 | } |
637 | - } |
|
638 | - elseif ($current_area == 'groupmembership' && empty($post_errors)) |
|
664 | + } elseif ($current_area == 'groupmembership' && empty($post_errors)) |
|
639 | 665 | { |
640 | 666 | $msg = groupMembership2($profile_vars, $post_errors, $memID); |
641 | 667 | |
642 | 668 | // Whatever we've done, we have nothing else to do here... |
643 | 669 | redirectexit('action=profile' . ($context['user']['is_owner'] ? '' : ';u=' . $memID) . ';area=groupmembership' . (!empty($msg) ? ';msg=' . $msg : '')); |
644 | - } |
|
645 | - elseif (in_array($current_area, array('account', 'forumprofile', 'theme'))) |
|
646 | - saveProfileFields(); |
|
647 | - else |
|
670 | + } elseif (in_array($current_area, array('account', 'forumprofile', 'theme'))) { |
|
671 | + saveProfileFields(); |
|
672 | + } else |
|
648 | 673 | { |
649 | 674 | $force_redirect = true; |
650 | 675 | // Ensure we include this. |
@@ -660,34 +685,36 @@ discard block |
||
660 | 685 | // Load the language file so we can give a nice explanation of the errors. |
661 | 686 | loadLanguage('Errors'); |
662 | 687 | $context['post_errors'] = $post_errors; |
663 | - } |
|
664 | - elseif (!empty($profile_vars)) |
|
688 | + } elseif (!empty($profile_vars)) |
|
665 | 689 | { |
666 | 690 | // If we've changed the password, notify any integration that may be listening in. |
667 | - if (isset($profile_vars['passwd'])) |
|
668 | - call_integration_hook('integrate_reset_pass', array($cur_profile['member_name'], $cur_profile['member_name'], $_POST['passwrd2'])); |
|
691 | + if (isset($profile_vars['passwd'])) { |
|
692 | + call_integration_hook('integrate_reset_pass', array($cur_profile['member_name'], $cur_profile['member_name'], $_POST['passwrd2'])); |
|
693 | + } |
|
669 | 694 | |
670 | 695 | updateMemberData($memID, $profile_vars); |
671 | 696 | |
672 | 697 | // What if this is the newest member? |
673 | - if ($modSettings['latestMember'] == $memID) |
|
674 | - updateStats('member'); |
|
675 | - elseif (isset($profile_vars['real_name'])) |
|
676 | - updateSettings(array('memberlist_updated' => time())); |
|
698 | + if ($modSettings['latestMember'] == $memID) { |
|
699 | + updateStats('member'); |
|
700 | + } elseif (isset($profile_vars['real_name'])) { |
|
701 | + updateSettings(array('memberlist_updated' => time())); |
|
702 | + } |
|
677 | 703 | |
678 | 704 | // If the member changed his/her birthdate, update calendar statistics. |
679 | - if (isset($profile_vars['birthdate']) || isset($profile_vars['real_name'])) |
|
680 | - updateSettings(array( |
|
705 | + if (isset($profile_vars['birthdate']) || isset($profile_vars['real_name'])) { |
|
706 | + updateSettings(array( |
|
681 | 707 | 'calendar_updated' => time(), |
682 | 708 | )); |
709 | + } |
|
683 | 710 | |
684 | 711 | // Anything worth logging? |
685 | 712 | if (!empty($context['log_changes']) && !empty($modSettings['modlog_enabled'])) |
686 | 713 | { |
687 | 714 | $log_changes = array(); |
688 | 715 | require_once($sourcedir . '/Logging.php'); |
689 | - foreach ($context['log_changes'] as $k => $v) |
|
690 | - $log_changes[] = array( |
|
716 | + foreach ($context['log_changes'] as $k => $v) { |
|
717 | + $log_changes[] = array( |
|
691 | 718 | 'action' => $k, |
692 | 719 | 'log_type' => 'user', |
693 | 720 | 'extra' => array_merge($v, array( |
@@ -695,14 +722,16 @@ discard block |
||
695 | 722 | 'member_affected' => $memID, |
696 | 723 | )), |
697 | 724 | ); |
725 | + } |
|
698 | 726 | |
699 | 727 | logActions($log_changes); |
700 | 728 | } |
701 | 729 | |
702 | 730 | // Have we got any post save functions to execute? |
703 | - if (!empty($context['profile_execute_on_save'])) |
|
704 | - foreach ($context['profile_execute_on_save'] as $saveFunc) |
|
731 | + if (!empty($context['profile_execute_on_save'])) { |
|
732 | + foreach ($context['profile_execute_on_save'] as $saveFunc) |
|
705 | 733 | $saveFunc(); |
734 | + } |
|
706 | 735 | |
707 | 736 | // Let them know it worked! |
708 | 737 | $context['profile_updated'] = $context['user']['is_owner'] ? $txt['profile_updated_own'] : sprintf($txt['profile_updated_else'], $cur_profile['member_name']); |
@@ -716,27 +745,31 @@ discard block |
||
716 | 745 | if (!empty($post_errors)) |
717 | 746 | { |
718 | 747 | // Set all the errors so the template knows what went wrong. |
719 | - foreach ($post_errors as $error_type) |
|
720 | - $context['modify_error'][$error_type] = true; |
|
748 | + foreach ($post_errors as $error_type) { |
|
749 | + $context['modify_error'][$error_type] = true; |
|
750 | + } |
|
721 | 751 | } |
722 | 752 | // If it's you then we should redirect upon save. |
723 | - elseif (!empty($profile_vars) && $context['user']['is_owner'] && !$context['do_preview']) |
|
724 | - redirectexit('action=profile;area=' . $current_area . (!empty($current_sa) ? ';sa=' . $current_sa : '') . ';updated'); |
|
725 | - elseif (!empty($force_redirect)) |
|
726 | - redirectexit('action=profile' . ($context['user']['is_owner'] ? '' : ';u=' . $memID) . ';area=' . $current_area); |
|
753 | + elseif (!empty($profile_vars) && $context['user']['is_owner'] && !$context['do_preview']) { |
|
754 | + redirectexit('action=profile;area=' . $current_area . (!empty($current_sa) ? ';sa=' . $current_sa : '') . ';updated'); |
|
755 | + } elseif (!empty($force_redirect)) { |
|
756 | + redirectexit('action=profile' . ($context['user']['is_owner'] ? '' : ';u=' . $memID) . ';area=' . $current_area); |
|
757 | + } |
|
727 | 758 | |
728 | 759 | |
729 | 760 | // Get the right callable. |
730 | 761 | $call = call_helper($profile_include_data['function'], true); |
731 | 762 | |
732 | 763 | // Is it valid? |
733 | - if (!empty($call)) |
|
734 | - call_user_func($call, $memID); |
|
764 | + if (!empty($call)) { |
|
765 | + call_user_func($call, $memID); |
|
766 | + } |
|
735 | 767 | |
736 | 768 | // Set the page title if it's not already set... |
737 | - if (!isset($context['page_title'])) |
|
738 | - $context['page_title'] = $txt['profile'] . (isset($txt[$current_area]) ? ' - ' . $txt[$current_area] : ''); |
|
739 | -} |
|
769 | + if (!isset($context['page_title'])) { |
|
770 | + $context['page_title'] = $txt['profile'] . (isset($txt[$current_area]) ? ' - ' . $txt[$current_area] : ''); |
|
771 | + } |
|
772 | + } |
|
740 | 773 | |
741 | 774 | /** |
742 | 775 | * Set up the requirements for the profile popup - the area that is shown as the popup menu for the current user. |
@@ -859,16 +892,18 @@ discard block |
||
859 | 892 | if (!allowedTo('admin_forum') && $area != 'register') |
860 | 893 | { |
861 | 894 | // If it's the owner they can see two types of private fields, regardless. |
862 | - if ($memID == $user_info['id']) |
|
863 | - $where .= $area == 'summary' ? ' AND private < 3' : ' AND (private = 0 OR private = 2)'; |
|
864 | - else |
|
865 | - $where .= $area == 'summary' ? ' AND private < 2' : ' AND private = 0'; |
|
895 | + if ($memID == $user_info['id']) { |
|
896 | + $where .= $area == 'summary' ? ' AND private < 3' : ' AND (private = 0 OR private = 2)'; |
|
897 | + } else { |
|
898 | + $where .= $area == 'summary' ? ' AND private < 2' : ' AND private = 0'; |
|
899 | + } |
|
866 | 900 | } |
867 | 901 | |
868 | - if ($area == 'register') |
|
869 | - $where .= ' AND show_reg != 0'; |
|
870 | - elseif ($area != 'summary') |
|
871 | - $where .= ' AND show_profile = {string:area}'; |
|
902 | + if ($area == 'register') { |
|
903 | + $where .= ' AND show_reg != 0'; |
|
904 | + } elseif ($area != 'summary') { |
|
905 | + $where .= ' AND show_profile = {string:area}'; |
|
906 | + } |
|
872 | 907 | |
873 | 908 | // Load all the relevant fields - and data. |
874 | 909 | $request = $smcFunc['db_query']('', ' |
@@ -893,8 +928,9 @@ discard block |
||
893 | 928 | $fieldOptions = explode(',', $row['field_options']); |
894 | 929 | foreach ($fieldOptions as $k => $v) |
895 | 930 | { |
896 | - if (empty($currentKey)) |
|
897 | - $currentKey = $v === $value ? $k : 0; |
|
931 | + if (empty($currentKey)) { |
|
932 | + $currentKey = $v === $value ? $k : 0; |
|
933 | + } |
|
898 | 934 | } |
899 | 935 | } |
900 | 936 | |
@@ -906,13 +942,15 @@ discard block |
||
906 | 942 | if (isset($_POST['customfield']) && isset($_POST['customfield'][$row['col_name']])) |
907 | 943 | { |
908 | 944 | $value = $smcFunc['htmlspecialchars']($_POST['customfield'][$row['col_name']]); |
909 | - if (in_array($row['field_type'], array('select', 'radio'))) |
|
910 | - $value = ($options = explode(',', $row['field_options'])) && isset($options[$value]) ? $options[$value] : ''; |
|
945 | + if (in_array($row['field_type'], array('select', 'radio'))) { |
|
946 | + $value = ($options = explode(',', $row['field_options'])) && isset($options[$value]) ? $options[$value] : ''; |
|
947 | + } |
|
911 | 948 | } |
912 | 949 | |
913 | 950 | // Don't show the "disabled" option for the "gender" field if we are on the "summary" area. |
914 | - if ($area == 'summary' && $row['col_name'] == 'cust_gender' && $value == 'None') |
|
915 | - continue; |
|
951 | + if ($area == 'summary' && $row['col_name'] == 'cust_gender' && $value == 'None') { |
|
952 | + continue; |
|
953 | + } |
|
916 | 954 | |
917 | 955 | // HTML for the input form. |
918 | 956 | $output_html = $value; |
@@ -921,8 +959,7 @@ discard block |
||
921 | 959 | $true = (!$exists && $row['default_value']) || $value; |
922 | 960 | $input_html = '<input type="checkbox" name="customfield[' . $row['col_name'] . ']" id="customfield[' . $row['col_name'] . ']"' . ($true ? ' checked' : '') . '>'; |
923 | 961 | $output_html = $true ? $txt['yes'] : $txt['no']; |
924 | - } |
|
925 | - elseif ($row['field_type'] == 'select') |
|
962 | + } elseif ($row['field_type'] == 'select') |
|
926 | 963 | { |
927 | 964 | $input_html = '<select name="customfield[' . $row['col_name'] . ']" id="customfield[' . $row['col_name'] . ']"><option value="-1"></option>'; |
928 | 965 | $options = explode(',', $row['field_options']); |
@@ -930,13 +967,13 @@ discard block |
||
930 | 967 | { |
931 | 968 | $true = (!$exists && $row['default_value'] == $v) || $value == $v; |
932 | 969 | $input_html .= '<option value="' . $k . '"' . ($true ? ' selected' : '') . '>' . $v . '</option>'; |
933 | - if ($true) |
|
934 | - $output_html = $v; |
|
970 | + if ($true) { |
|
971 | + $output_html = $v; |
|
972 | + } |
|
935 | 973 | } |
936 | 974 | |
937 | 975 | $input_html .= '</select>'; |
938 | - } |
|
939 | - elseif ($row['field_type'] == 'radio') |
|
976 | + } elseif ($row['field_type'] == 'radio') |
|
940 | 977 | { |
941 | 978 | $input_html = '<fieldset>'; |
942 | 979 | $options = explode(',', $row['field_options']); |
@@ -944,37 +981,38 @@ discard block |
||
944 | 981 | { |
945 | 982 | $true = (!$exists && $row['default_value'] == $v) || $value == $v; |
946 | 983 | $input_html .= '<label for="customfield_' . $row['col_name'] . '_' . $k . '"><input type="radio" name="customfield[' . $row['col_name'] . ']" id="customfield_' . $row['col_name'] . '_' . $k . '" value="' . $k . '"' . ($true ? ' checked' : '') . '>' . $v . '</label><br>'; |
947 | - if ($true) |
|
948 | - $output_html = $v; |
|
984 | + if ($true) { |
|
985 | + $output_html = $v; |
|
986 | + } |
|
949 | 987 | } |
950 | 988 | $input_html .= '</fieldset>'; |
951 | - } |
|
952 | - elseif ($row['field_type'] == 'text') |
|
989 | + } elseif ($row['field_type'] == 'text') |
|
953 | 990 | { |
954 | 991 | $input_html = '<input type="text" name="customfield[' . $row['col_name'] . ']" id="customfield[' . $row['col_name'] . ']"' . ($row['field_length'] != 0 ? ' maxlength="' . $row['field_length'] . '"' : '') . ' size="' . ($row['field_length'] == 0 || $row['field_length'] >= 50 ? 50 : ($row['field_length'] > 30 ? 30 : ($row['field_length'] > 10 ? 20 : 10))) . '" value="' . un_htmlspecialchars($value) . '"' . ($row['show_reg'] == 2 ? ' required' : '') . '>'; |
955 | - } |
|
956 | - else |
|
992 | + } else |
|
957 | 993 | { |
958 | 994 | @list ($rows, $cols) = @explode(',', $row['default_value']); |
959 | 995 | $input_html = '<textarea name="customfield[' . $row['col_name'] . ']" id="customfield[' . $row['col_name'] . ']"' . (!empty($rows) ? ' rows="' . $rows . '"' : '') . (!empty($cols) ? ' cols="' . $cols . '"' : '') . ($row['show_reg'] == 2 ? ' required' : '') . '>' . un_htmlspecialchars($value) . '</textarea>'; |
960 | 996 | } |
961 | 997 | |
962 | 998 | // Parse BBCode |
963 | - if ($row['bbc']) |
|
964 | - $output_html = parse_bbc($output_html); |
|
965 | - elseif ($row['field_type'] == 'textarea') |
|
966 | - // Allow for newlines at least |
|
999 | + if ($row['bbc']) { |
|
1000 | + $output_html = parse_bbc($output_html); |
|
1001 | + } elseif ($row['field_type'] == 'textarea') { |
|
1002 | + // Allow for newlines at least |
|
967 | 1003 | $output_html = strtr($output_html, array("\n" => '<br>')); |
1004 | + } |
|
968 | 1005 | |
969 | 1006 | // Enclosing the user input within some other text? |
970 | - if (!empty($row['enclose']) && !empty($output_html)) |
|
971 | - $output_html = strtr($row['enclose'], array( |
|
1007 | + if (!empty($row['enclose']) && !empty($output_html)) { |
|
1008 | + $output_html = strtr($row['enclose'], array( |
|
972 | 1009 | '{SCRIPTURL}' => $scripturl, |
973 | 1010 | '{IMAGES_URL}' => $settings['images_url'], |
974 | 1011 | '{DEFAULT_IMAGES_URL}' => $settings['default_images_url'], |
975 | 1012 | '{INPUT}' => un_htmlspecialchars($output_html), |
976 | 1013 | '{KEY}' => $currentKey |
977 | 1014 | )); |
1015 | + } |
|
978 | 1016 | |
979 | 1017 | $context['custom_fields'][] = array( |
980 | 1018 | 'name' => $row['field_name'], |
@@ -14,8 +14,9 @@ discard block |
||
14 | 14 | * @version 2.1 Beta 4 |
15 | 15 | */ |
16 | 16 | |
17 | -if (!defined('SMF')) |
|
17 | +if (!defined('SMF')) { |
|
18 | 18 | die('No direct access...'); |
19 | +} |
|
19 | 20 | |
20 | 21 | /** |
21 | 22 | * This function makes sure the requested subaction does exists, if it doesn't, it sets a default action or. |
@@ -206,16 +207,18 @@ discard block |
||
206 | 207 | { |
207 | 208 | $all_zones = timezone_identifiers_list(); |
208 | 209 | // Make sure we set the value to the same as the printed value. |
209 | - foreach ($all_zones as $zone) |
|
210 | - $config_vars['default_timezone'][2][$zone] = $zone; |
|
210 | + foreach ($all_zones as $zone) { |
|
211 | + $config_vars['default_timezone'][2][$zone] = $zone; |
|
212 | + } |
|
213 | + } else { |
|
214 | + unset($config_vars['default_timezone']); |
|
211 | 215 | } |
212 | - else |
|
213 | - unset($config_vars['default_timezone']); |
|
214 | 216 | |
215 | 217 | call_integration_hook('integrate_modify_basic_settings', array(&$config_vars)); |
216 | 218 | |
217 | - if ($return_config) |
|
218 | - return $config_vars; |
|
219 | + if ($return_config) { |
|
220 | + return $config_vars; |
|
221 | + } |
|
219 | 222 | |
220 | 223 | // Saving? |
221 | 224 | if (isset($_GET['save'])) |
@@ -223,8 +226,9 @@ discard block |
||
223 | 226 | checkSession(); |
224 | 227 | |
225 | 228 | // Prevent absurd boundaries here - make it a day tops. |
226 | - if (isset($_POST['lastActive'])) |
|
227 | - $_POST['lastActive'] = min((int) $_POST['lastActive'], 1440); |
|
229 | + if (isset($_POST['lastActive'])) { |
|
230 | + $_POST['lastActive'] = min((int) $_POST['lastActive'], 1440); |
|
231 | + } |
|
228 | 232 | |
229 | 233 | call_integration_hook('integrate_save_basic_settings'); |
230 | 234 | |
@@ -232,8 +236,9 @@ discard block |
||
232 | 236 | $_SESSION['adm-save'] = true; |
233 | 237 | |
234 | 238 | // Do a bit of housekeeping |
235 | - if (empty($_POST['minimize_files'])) |
|
236 | - deleteAllMinified(); |
|
239 | + if (empty($_POST['minimize_files'])) { |
|
240 | + deleteAllMinified(); |
|
241 | + } |
|
237 | 242 | |
238 | 243 | writeLog(); |
239 | 244 | redirectexit('action=admin;area=featuresettings;sa=basic'); |
@@ -273,8 +278,9 @@ discard block |
||
273 | 278 | |
274 | 279 | call_integration_hook('integrate_modify_bbc_settings', array(&$config_vars)); |
275 | 280 | |
276 | - if ($return_config) |
|
277 | - return $config_vars; |
|
281 | + if ($return_config) { |
|
282 | + return $config_vars; |
|
283 | + } |
|
278 | 284 | |
279 | 285 | // Setup the template. |
280 | 286 | require_once($sourcedir . '/ManageServer.php'); |
@@ -291,13 +297,15 @@ discard block |
||
291 | 297 | |
292 | 298 | // Clean up the tags. |
293 | 299 | $bbcTags = array(); |
294 | - foreach (parse_bbc(false) as $tag) |
|
295 | - $bbcTags[] = $tag['tag']; |
|
300 | + foreach (parse_bbc(false) as $tag) { |
|
301 | + $bbcTags[] = $tag['tag']; |
|
302 | + } |
|
296 | 303 | |
297 | - if (!isset($_POST['disabledBBC_enabledTags'])) |
|
298 | - $_POST['disabledBBC_enabledTags'] = array(); |
|
299 | - elseif (!is_array($_POST['disabledBBC_enabledTags'])) |
|
300 | - $_POST['disabledBBC_enabledTags'] = array($_POST['disabledBBC_enabledTags']); |
|
304 | + if (!isset($_POST['disabledBBC_enabledTags'])) { |
|
305 | + $_POST['disabledBBC_enabledTags'] = array(); |
|
306 | + } elseif (!is_array($_POST['disabledBBC_enabledTags'])) { |
|
307 | + $_POST['disabledBBC_enabledTags'] = array($_POST['disabledBBC_enabledTags']); |
|
308 | + } |
|
301 | 309 | // Work out what is actually disabled! |
302 | 310 | $_POST['disabledBBC'] = implode(',', array_diff($bbcTags, $_POST['disabledBBC_enabledTags'])); |
303 | 311 | |
@@ -341,8 +349,9 @@ discard block |
||
341 | 349 | |
342 | 350 | call_integration_hook('integrate_layout_settings', array(&$config_vars)); |
343 | 351 | |
344 | - if ($return_config) |
|
345 | - return $config_vars; |
|
352 | + if ($return_config) { |
|
353 | + return $config_vars; |
|
354 | + } |
|
346 | 355 | |
347 | 356 | // Saving? |
348 | 357 | if (isset($_GET['save'])) |
@@ -382,8 +391,9 @@ discard block |
||
382 | 391 | |
383 | 392 | call_integration_hook('integrate_likes_settings', array(&$config_vars)); |
384 | 393 | |
385 | - if ($return_config) |
|
386 | - return $config_vars; |
|
394 | + if ($return_config) { |
|
395 | + return $config_vars; |
|
396 | + } |
|
387 | 397 | |
388 | 398 | // Saving? |
389 | 399 | if (isset($_GET['save'])) |
@@ -421,8 +431,9 @@ discard block |
||
421 | 431 | |
422 | 432 | call_integration_hook('integrate_mentions_settings', array(&$config_vars)); |
423 | 433 | |
424 | - if ($return_config) |
|
425 | - return $config_vars; |
|
434 | + if ($return_config) { |
|
435 | + return $config_vars; |
|
436 | + } |
|
426 | 437 | |
427 | 438 | // Saving? |
428 | 439 | if (isset($_GET['save'])) |
@@ -466,8 +477,8 @@ discard block |
||
466 | 477 | 'enable' => array('check', 'warning_enable'), |
467 | 478 | ); |
468 | 479 | |
469 | - if (!empty($modSettings['warning_settings']) && $currently_enabled) |
|
470 | - $config_vars += array( |
|
480 | + if (!empty($modSettings['warning_settings']) && $currently_enabled) { |
|
481 | + $config_vars += array( |
|
471 | 482 | '', |
472 | 483 | array('int', 'warning_watch', 'subtext' => $txt['setting_warning_watch_note'] . ' ' . $txt['zero_to_disable']), |
473 | 484 | 'moderate' => array('int', 'warning_moderate', 'subtext' => $txt['setting_warning_moderate_note'] . ' ' . $txt['zero_to_disable']), |
@@ -476,15 +487,18 @@ discard block |
||
476 | 487 | 'rem2' => array('int', 'warning_decrement', 'subtext' => $txt['setting_warning_decrement_note'] . ' ' . $txt['zero_to_disable']), |
477 | 488 | array('permissions', 'view_warning'), |
478 | 489 | ); |
490 | + } |
|
479 | 491 | |
480 | 492 | call_integration_hook('integrate_warning_settings', array(&$config_vars)); |
481 | 493 | |
482 | - if ($return_config) |
|
483 | - return $config_vars; |
|
494 | + if ($return_config) { |
|
495 | + return $config_vars; |
|
496 | + } |
|
484 | 497 | |
485 | 498 | // Cannot use moderation if post moderation is not enabled. |
486 | - if (!$modSettings['postmod_active']) |
|
487 | - unset($config_vars['moderate']); |
|
499 | + if (!$modSettings['postmod_active']) { |
|
500 | + unset($config_vars['moderate']); |
|
501 | + } |
|
488 | 502 | |
489 | 503 | // Will need the utility functions from here. |
490 | 504 | require_once($sourcedir . '/ManageServer.php'); |
@@ -509,16 +523,16 @@ discard block |
||
509 | 523 | 'warning_watch' => 10, |
510 | 524 | 'warning_mute' => 60, |
511 | 525 | ); |
512 | - if ($modSettings['postmod_active']) |
|
513 | - $vars['warning_moderate'] = 35; |
|
526 | + if ($modSettings['postmod_active']) { |
|
527 | + $vars['warning_moderate'] = 35; |
|
528 | + } |
|
514 | 529 | |
515 | 530 | foreach ($vars as $var => $value) |
516 | 531 | { |
517 | 532 | $config_vars[] = array('int', $var); |
518 | 533 | $_POST[$var] = $value; |
519 | 534 | } |
520 | - } |
|
521 | - else |
|
535 | + } else |
|
522 | 536 | { |
523 | 537 | $_POST['warning_watch'] = min($_POST['warning_watch'], 100); |
524 | 538 | $_POST['warning_moderate'] = $modSettings['postmod_active'] ? min($_POST['warning_moderate'], 100) : 0; |
@@ -606,8 +620,9 @@ discard block |
||
606 | 620 | |
607 | 621 | call_integration_hook('integrate_spam_settings', array(&$config_vars)); |
608 | 622 | |
609 | - if ($return_config) |
|
610 | - return $config_vars; |
|
623 | + if ($return_config) { |
|
624 | + return $config_vars; |
|
625 | + } |
|
611 | 626 | |
612 | 627 | // You need to be an admin to edit settings! |
613 | 628 | isAllowedTo('admin_forum'); |
@@ -641,8 +656,9 @@ discard block |
||
641 | 656 | |
642 | 657 | if (empty($context['qa_by_lang'][strtr($language, array('-utf8' => ''))]) && !empty($context['question_answers'])) |
643 | 658 | { |
644 | - if (empty($context['settings_insert_above'])) |
|
645 | - $context['settings_insert_above'] = ''; |
|
659 | + if (empty($context['settings_insert_above'])) { |
|
660 | + $context['settings_insert_above'] = ''; |
|
661 | + } |
|
646 | 662 | |
647 | 663 | $context['settings_insert_above'] .= '<div class="noticebox">' . sprintf($txt['question_not_defined'], $context['languages'][$language]['name']) . '</div>'; |
648 | 664 | } |
@@ -685,8 +701,9 @@ discard block |
||
685 | 701 | $_POST['pm_spam_settings'] = (int) $_POST['max_pm_recipients'] . ',' . (int) $_POST['pm_posts_verification'] . ',' . (int) $_POST['pm_posts_per_hour']; |
686 | 702 | |
687 | 703 | // Hack in guest requiring verification! |
688 | - if (empty($_POST['posts_require_captcha']) && !empty($_POST['guests_require_captcha'])) |
|
689 | - $_POST['posts_require_captcha'] = -1; |
|
704 | + if (empty($_POST['posts_require_captcha']) && !empty($_POST['guests_require_captcha'])) { |
|
705 | + $_POST['posts_require_captcha'] = -1; |
|
706 | + } |
|
690 | 707 | |
691 | 708 | $save_vars = $config_vars; |
692 | 709 | unset($save_vars['pm1'], $save_vars['pm2'], $save_vars['pm3'], $save_vars['guest_verify']); |
@@ -703,14 +720,16 @@ discard block |
||
703 | 720 | foreach ($context['qa_languages'] as $lang_id => $dummy) |
704 | 721 | { |
705 | 722 | // If we had some questions for this language before, but don't now, delete everything from that language. |
706 | - if ((!isset($_POST['question'][$lang_id]) || !is_array($_POST['question'][$lang_id])) && !empty($context['qa_by_lang'][$lang_id])) |
|
707 | - $changes['delete'] = array_merge($questions['delete'], $context['qa_by_lang'][$lang_id]); |
|
723 | + if ((!isset($_POST['question'][$lang_id]) || !is_array($_POST['question'][$lang_id])) && !empty($context['qa_by_lang'][$lang_id])) { |
|
724 | + $changes['delete'] = array_merge($questions['delete'], $context['qa_by_lang'][$lang_id]); |
|
725 | + } |
|
708 | 726 | |
709 | 727 | // Now step through and see if any existing questions no longer exist. |
710 | - if (!empty($context['qa_by_lang'][$lang_id])) |
|
711 | - foreach ($context['qa_by_lang'][$lang_id] as $q_id) |
|
728 | + if (!empty($context['qa_by_lang'][$lang_id])) { |
|
729 | + foreach ($context['qa_by_lang'][$lang_id] as $q_id) |
|
712 | 730 | if (empty($_POST['question'][$lang_id][$q_id])) |
713 | 731 | $changes['delete'][] = $q_id; |
732 | + } |
|
714 | 733 | |
715 | 734 | // Now let's see if there are new questions or ones that need updating. |
716 | 735 | if (isset($_POST['question'][$lang_id])) |
@@ -719,14 +738,16 @@ discard block |
||
719 | 738 | { |
720 | 739 | // Ignore junky ids. |
721 | 740 | $q_id = (int) $q_id; |
722 | - if ($q_id <= 0) |
|
723 | - continue; |
|
741 | + if ($q_id <= 0) { |
|
742 | + continue; |
|
743 | + } |
|
724 | 744 | |
725 | 745 | // Check the question isn't empty (because they want to delete it?) |
726 | 746 | if (empty($question) || trim($question) == '') |
727 | 747 | { |
728 | - if (isset($context['question_answers'][$q_id])) |
|
729 | - $changes['delete'][] = $q_id; |
|
748 | + if (isset($context['question_answers'][$q_id])) { |
|
749 | + $changes['delete'][] = $q_id; |
|
750 | + } |
|
730 | 751 | continue; |
731 | 752 | } |
732 | 753 | $question = $smcFunc['htmlspecialchars'](trim($question)); |
@@ -734,19 +755,22 @@ discard block |
||
734 | 755 | // Get the answers. Firstly check there actually might be some. |
735 | 756 | if (!isset($_POST['answer'][$lang_id][$q_id]) || !is_array($_POST['answer'][$lang_id][$q_id])) |
736 | 757 | { |
737 | - if (isset($context['question_answers'][$q_id])) |
|
738 | - $changes['delete'][] = $q_id; |
|
758 | + if (isset($context['question_answers'][$q_id])) { |
|
759 | + $changes['delete'][] = $q_id; |
|
760 | + } |
|
739 | 761 | continue; |
740 | 762 | } |
741 | 763 | // Now get them and check that they might be viable. |
742 | 764 | $answers = array(); |
743 | - foreach ($_POST['answer'][$lang_id][$q_id] as $answer) |
|
744 | - if (!empty($answer) && trim($answer) !== '') |
|
765 | + foreach ($_POST['answer'][$lang_id][$q_id] as $answer) { |
|
766 | + if (!empty($answer) && trim($answer) !== '') |
|
745 | 767 | $answers[] = $smcFunc['htmlspecialchars'](trim($answer)); |
768 | + } |
|
746 | 769 | if (empty($answers)) |
747 | 770 | { |
748 | - if (isset($context['question_answers'][$q_id])) |
|
749 | - $changes['delete'][] = $q_id; |
|
771 | + if (isset($context['question_answers'][$q_id])) { |
|
772 | + $changes['delete'][] = $q_id; |
|
773 | + } |
|
750 | 774 | continue; |
751 | 775 | } |
752 | 776 | $answers = $smcFunc['json_encode']($answers); |
@@ -756,16 +780,17 @@ discard block |
||
756 | 780 | { |
757 | 781 | // New question. Now, we don't want to randomly consume ids, so we'll set those, rather than trusting the browser's supplied ids. |
758 | 782 | $changes['insert'][] = array($lang_id, $question, $answers); |
759 | - } |
|
760 | - else |
|
783 | + } else |
|
761 | 784 | { |
762 | 785 | // It's an existing question. Let's see what's changed, if anything. |
763 | - if ($lang_id != $context['question_answers'][$q_id]['lngfile'] || $question != $context['question_answers'][$q_id]['question'] || $answers != $context['question_answers'][$q_id]['answers']) |
|
764 | - $changes['replace'][$q_id] = array('lngfile' => $lang_id, 'question' => $question, 'answers' => $answers); |
|
786 | + if ($lang_id != $context['question_answers'][$q_id]['lngfile'] || $question != $context['question_answers'][$q_id]['question'] || $answers != $context['question_answers'][$q_id]['answers']) { |
|
787 | + $changes['replace'][$q_id] = array('lngfile' => $lang_id, 'question' => $question, 'answers' => $answers); |
|
788 | + } |
|
765 | 789 | } |
766 | 790 | |
767 | - if (!isset($qs_per_lang[$lang_id])) |
|
768 | - $qs_per_lang[$lang_id] = 0; |
|
791 | + if (!isset($qs_per_lang[$lang_id])) { |
|
792 | + $qs_per_lang[$lang_id] = 0; |
|
793 | + } |
|
769 | 794 | $qs_per_lang[$lang_id]++; |
770 | 795 | } |
771 | 796 | } |
@@ -815,8 +840,9 @@ discard block |
||
815 | 840 | |
816 | 841 | // Lastly, the count of messages needs to be no more than the lowest number of questions for any one language. |
817 | 842 | $count_questions = empty($qs_per_lang) ? 0 : min($qs_per_lang); |
818 | - if (empty($count_questions) || $_POST['qa_verification_number'] > $count_questions) |
|
819 | - $_POST['qa_verification_number'] = $count_questions; |
|
843 | + if (empty($count_questions) || $_POST['qa_verification_number'] > $count_questions) { |
|
844 | + $_POST['qa_verification_number'] = $count_questions; |
|
845 | + } |
|
820 | 846 | |
821 | 847 | call_integration_hook('integrate_save_spam_settings', array(&$save_vars)); |
822 | 848 | |
@@ -831,24 +857,27 @@ discard block |
||
831 | 857 | |
832 | 858 | $character_range = array_merge(range('A', 'H'), array('K', 'M', 'N', 'P', 'R'), range('T', 'Y')); |
833 | 859 | $_SESSION['visual_verification_code'] = ''; |
834 | - for ($i = 0; $i < 6; $i++) |
|
835 | - $_SESSION['visual_verification_code'] .= $character_range[array_rand($character_range)]; |
|
860 | + for ($i = 0; $i < 6; $i++) { |
|
861 | + $_SESSION['visual_verification_code'] .= $character_range[array_rand($character_range)]; |
|
862 | + } |
|
836 | 863 | |
837 | 864 | // Some javascript for CAPTCHA. |
838 | 865 | $context['settings_post_javascript'] = ''; |
839 | - if ($context['use_graphic_library']) |
|
840 | - $context['settings_post_javascript'] .= ' |
|
866 | + if ($context['use_graphic_library']) { |
|
867 | + $context['settings_post_javascript'] .= ' |
|
841 | 868 | function refreshImages() |
842 | 869 | { |
843 | 870 | var imageType = document.getElementById(\'visual_verification_type\').value; |
844 | 871 | document.getElementById(\'verification_image\').src = \'' . $context['verification_image_href'] . ';type=\' + imageType; |
845 | 872 | }'; |
873 | + } |
|
846 | 874 | |
847 | 875 | // Show the image itself, or text saying we can't. |
848 | - if ($context['use_graphic_library']) |
|
849 | - $config_vars['vv']['postinput'] = '<br><img src="' . $context['verification_image_href'] . ';type=' . (empty($modSettings['visual_verification_type']) ? 0 : $modSettings['visual_verification_type']) . '" alt="' . $txt['setting_image_verification_sample'] . '" id="verification_image"><br>'; |
|
850 | - else |
|
851 | - $config_vars['vv']['postinput'] = '<br><span class="smalltext">' . $txt['setting_image_verification_nogd'] . '</span>'; |
|
876 | + if ($context['use_graphic_library']) { |
|
877 | + $config_vars['vv']['postinput'] = '<br><img src="' . $context['verification_image_href'] . ';type=' . (empty($modSettings['visual_verification_type']) ? 0 : $modSettings['visual_verification_type']) . '" alt="' . $txt['setting_image_verification_sample'] . '" id="verification_image"><br>'; |
|
878 | + } else { |
|
879 | + $config_vars['vv']['postinput'] = '<br><span class="smalltext">' . $txt['setting_image_verification_nogd'] . '</span>'; |
|
880 | + } |
|
852 | 881 | |
853 | 882 | // Hack for PM spam settings. |
854 | 883 | list ($modSettings['max_pm_recipients'], $modSettings['pm_posts_verification'], $modSettings['pm_posts_per_hour']) = explode(',', $modSettings['pm_spam_settings']); |
@@ -858,9 +887,10 @@ discard block |
||
858 | 887 | $modSettings['posts_require_captcha'] = !isset($modSettings['posts_require_captcha']) || $modSettings['posts_require_captcha'] == -1 ? 0 : $modSettings['posts_require_captcha']; |
859 | 888 | |
860 | 889 | // Some minor javascript for the guest post setting. |
861 | - if ($modSettings['posts_require_captcha']) |
|
862 | - $context['settings_post_javascript'] .= ' |
|
890 | + if ($modSettings['posts_require_captcha']) { |
|
891 | + $context['settings_post_javascript'] .= ' |
|
863 | 892 | document.getElementById(\'guests_require_captcha\').disabled = true;'; |
893 | + } |
|
864 | 894 | |
865 | 895 | // And everything else. |
866 | 896 | $context['post_url'] = $scripturl . '?action=admin;area=antispam;save'; |
@@ -907,8 +937,9 @@ discard block |
||
907 | 937 | |
908 | 938 | call_integration_hook('integrate_signature_settings', array(&$config_vars)); |
909 | 939 | |
910 | - if ($return_config) |
|
911 | - return $config_vars; |
|
940 | + if ($return_config) { |
|
941 | + return $config_vars; |
|
942 | + } |
|
912 | 943 | |
913 | 944 | // Setup the template. |
914 | 945 | $context['page_title'] = $txt['signature_settings']; |
@@ -963,8 +994,9 @@ discard block |
||
963 | 994 | $sig = strtr($row['signature'], array('<br>' => "\n")); |
964 | 995 | |
965 | 996 | // Max characters... |
966 | - if (!empty($sig_limits[1])) |
|
967 | - $sig = $smcFunc['substr']($sig, 0, $sig_limits[1]); |
|
997 | + if (!empty($sig_limits[1])) { |
|
998 | + $sig = $smcFunc['substr']($sig, 0, $sig_limits[1]); |
|
999 | + } |
|
968 | 1000 | // Max lines... |
969 | 1001 | if (!empty($sig_limits[2])) |
970 | 1002 | { |
@@ -974,8 +1006,9 @@ discard block |
||
974 | 1006 | if ($sig[$i] == "\n") |
975 | 1007 | { |
976 | 1008 | $count++; |
977 | - if ($count >= $sig_limits[2]) |
|
978 | - $sig = substr($sig, 0, $i) . strtr(substr($sig, $i), array("\n" => ' ')); |
|
1009 | + if ($count >= $sig_limits[2]) { |
|
1010 | + $sig = substr($sig, 0, $i) . strtr(substr($sig, $i), array("\n" => ' ')); |
|
1011 | + } |
|
979 | 1012 | } |
980 | 1013 | } |
981 | 1014 | } |
@@ -986,17 +1019,19 @@ discard block |
||
986 | 1019 | { |
987 | 1020 | $limit_broke = 0; |
988 | 1021 | // Attempt to allow all sizes of abuse, so to speak. |
989 | - if ($matches[2][$ind] == 'px' && $size > $sig_limits[7]) |
|
990 | - $limit_broke = $sig_limits[7] . 'px'; |
|
991 | - elseif ($matches[2][$ind] == 'pt' && $size > ($sig_limits[7] * 0.75)) |
|
992 | - $limit_broke = ((int) $sig_limits[7] * 0.75) . 'pt'; |
|
993 | - elseif ($matches[2][$ind] == 'em' && $size > ((float) $sig_limits[7] / 16)) |
|
994 | - $limit_broke = ((float) $sig_limits[7] / 16) . 'em'; |
|
995 | - elseif ($matches[2][$ind] != 'px' && $matches[2][$ind] != 'pt' && $matches[2][$ind] != 'em' && $sig_limits[7] < 18) |
|
996 | - $limit_broke = 'large'; |
|
997 | - |
|
998 | - if ($limit_broke) |
|
999 | - $sig = str_replace($matches[0][$ind], '[size=' . $sig_limits[7] . 'px', $sig); |
|
1022 | + if ($matches[2][$ind] == 'px' && $size > $sig_limits[7]) { |
|
1023 | + $limit_broke = $sig_limits[7] . 'px'; |
|
1024 | + } elseif ($matches[2][$ind] == 'pt' && $size > ($sig_limits[7] * 0.75)) { |
|
1025 | + $limit_broke = ((int) $sig_limits[7] * 0.75) . 'pt'; |
|
1026 | + } elseif ($matches[2][$ind] == 'em' && $size > ((float) $sig_limits[7] / 16)) { |
|
1027 | + $limit_broke = ((float) $sig_limits[7] / 16) . 'em'; |
|
1028 | + } elseif ($matches[2][$ind] != 'px' && $matches[2][$ind] != 'pt' && $matches[2][$ind] != 'em' && $sig_limits[7] < 18) { |
|
1029 | + $limit_broke = 'large'; |
|
1030 | + } |
|
1031 | + |
|
1032 | + if ($limit_broke) { |
|
1033 | + $sig = str_replace($matches[0][$ind], '[size=' . $sig_limits[7] . 'px', $sig); |
|
1034 | + } |
|
1000 | 1035 | } |
1001 | 1036 | } |
1002 | 1037 | |
@@ -1052,32 +1087,34 @@ discard block |
||
1052 | 1087 | $img_offset = false; |
1053 | 1088 | } |
1054 | 1089 | } |
1090 | + } else { |
|
1091 | + $replaces[$image] = ''; |
|
1055 | 1092 | } |
1056 | - else |
|
1057 | - $replaces[$image] = ''; |
|
1058 | 1093 | |
1059 | 1094 | continue; |
1060 | 1095 | } |
1061 | 1096 | |
1062 | 1097 | // Does it have predefined restraints? Width first. |
1063 | - if ($matches[6][$key]) |
|
1064 | - $matches[2][$key] = $matches[6][$key]; |
|
1098 | + if ($matches[6][$key]) { |
|
1099 | + $matches[2][$key] = $matches[6][$key]; |
|
1100 | + } |
|
1065 | 1101 | if ($matches[2][$key] && $sig_limits[5] && $matches[2][$key] > $sig_limits[5]) |
1066 | 1102 | { |
1067 | 1103 | $width = $sig_limits[5]; |
1068 | 1104 | $matches[4][$key] = $matches[4][$key] * ($width / $matches[2][$key]); |
1105 | + } elseif ($matches[2][$key]) { |
|
1106 | + $width = $matches[2][$key]; |
|
1069 | 1107 | } |
1070 | - elseif ($matches[2][$key]) |
|
1071 | - $width = $matches[2][$key]; |
|
1072 | 1108 | // ... and height. |
1073 | 1109 | if ($matches[4][$key] && $sig_limits[6] && $matches[4][$key] > $sig_limits[6]) |
1074 | 1110 | { |
1075 | 1111 | $height = $sig_limits[6]; |
1076 | - if ($width != -1) |
|
1077 | - $width = $width * ($height / $matches[4][$key]); |
|
1112 | + if ($width != -1) { |
|
1113 | + $width = $width * ($height / $matches[4][$key]); |
|
1114 | + } |
|
1115 | + } elseif ($matches[4][$key]) { |
|
1116 | + $height = $matches[4][$key]; |
|
1078 | 1117 | } |
1079 | - elseif ($matches[4][$key]) |
|
1080 | - $height = $matches[4][$key]; |
|
1081 | 1118 | |
1082 | 1119 | // If the dimensions are still not fixed - we need to check the actual image. |
1083 | 1120 | if (($width == -1 && $sig_limits[5]) || ($height == -1 && $sig_limits[6])) |
@@ -1095,12 +1132,13 @@ discard block |
||
1095 | 1132 | if ($sizes[1] > $sig_limits[6] && $sig_limits[6]) |
1096 | 1133 | { |
1097 | 1134 | $height = $sig_limits[6]; |
1098 | - if ($width == -1) |
|
1099 | - $width = $sizes[0]; |
|
1135 | + if ($width == -1) { |
|
1136 | + $width = $sizes[0]; |
|
1137 | + } |
|
1100 | 1138 | $width = $width * ($height / $sizes[1]); |
1139 | + } elseif ($width != -1) { |
|
1140 | + $height = $sizes[1]; |
|
1101 | 1141 | } |
1102 | - elseif ($width != -1) |
|
1103 | - $height = $sizes[1]; |
|
1104 | 1142 | } |
1105 | 1143 | } |
1106 | 1144 | |
@@ -1113,8 +1151,9 @@ discard block |
||
1113 | 1151 | // Record that we got one. |
1114 | 1152 | $image_count_holder[$image] = isset($image_count_holder[$image]) ? $image_count_holder[$image] + 1 : 1; |
1115 | 1153 | } |
1116 | - if (!empty($replaces)) |
|
1117 | - $sig = str_replace(array_keys($replaces), array_values($replaces), $sig); |
|
1154 | + if (!empty($replaces)) { |
|
1155 | + $sig = str_replace(array_keys($replaces), array_values($replaces), $sig); |
|
1156 | + } |
|
1118 | 1157 | } |
1119 | 1158 | } |
1120 | 1159 | // Try to fix disabled tags. |
@@ -1126,18 +1165,20 @@ discard block |
||
1126 | 1165 | |
1127 | 1166 | $sig = strtr($sig, array("\n" => '<br>')); |
1128 | 1167 | call_integration_hook('integrate_apply_signature_settings', array(&$sig, $sig_limits, $disabledTags)); |
1129 | - if ($sig != $row['signature']) |
|
1130 | - $changes[$row['id_member']] = $sig; |
|
1168 | + if ($sig != $row['signature']) { |
|
1169 | + $changes[$row['id_member']] = $sig; |
|
1170 | + } |
|
1171 | + } |
|
1172 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1173 | + $done = true; |
|
1131 | 1174 | } |
1132 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1133 | - $done = true; |
|
1134 | 1175 | $smcFunc['db_free_result']($request); |
1135 | 1176 | |
1136 | 1177 | // Do we need to delete what we have? |
1137 | 1178 | if (!empty($changes)) |
1138 | 1179 | { |
1139 | - foreach ($changes as $id => $sig) |
|
1140 | - $smcFunc['db_query']('', ' |
|
1180 | + foreach ($changes as $id => $sig) { |
|
1181 | + $smcFunc['db_query']('', ' |
|
1141 | 1182 | UPDATE {db_prefix}members |
1142 | 1183 | SET signature = {string:signature} |
1143 | 1184 | WHERE id_member = {int:id_member}', |
@@ -1146,11 +1187,13 @@ discard block |
||
1146 | 1187 | 'signature' => $sig, |
1147 | 1188 | ) |
1148 | 1189 | ); |
1190 | + } |
|
1149 | 1191 | } |
1150 | 1192 | |
1151 | 1193 | $_GET['step'] += 50; |
1152 | - if (!$done) |
|
1153 | - pauseSignatureApplySettings(); |
|
1194 | + if (!$done) { |
|
1195 | + pauseSignatureApplySettings(); |
|
1196 | + } |
|
1154 | 1197 | } |
1155 | 1198 | $settings_applied = true; |
1156 | 1199 | } |
@@ -1168,8 +1211,9 @@ discard block |
||
1168 | 1211 | ); |
1169 | 1212 | |
1170 | 1213 | // Temporarily make each setting a modSetting! |
1171 | - foreach ($context['signature_settings'] as $key => $value) |
|
1172 | - $modSettings['signature_' . $key] = $value; |
|
1214 | + foreach ($context['signature_settings'] as $key => $value) { |
|
1215 | + $modSettings['signature_' . $key] = $value; |
|
1216 | + } |
|
1173 | 1217 | |
1174 | 1218 | // Make sure we check the right tags! |
1175 | 1219 | $modSettings['bbc_disabled_signature_bbc'] = $disabledTags; |
@@ -1181,23 +1225,26 @@ discard block |
||
1181 | 1225 | |
1182 | 1226 | // Clean up the tag stuff! |
1183 | 1227 | $bbcTags = array(); |
1184 | - foreach (parse_bbc(false) as $tag) |
|
1185 | - $bbcTags[] = $tag['tag']; |
|
1228 | + foreach (parse_bbc(false) as $tag) { |
|
1229 | + $bbcTags[] = $tag['tag']; |
|
1230 | + } |
|
1186 | 1231 | |
1187 | - if (!isset($_POST['signature_bbc_enabledTags'])) |
|
1188 | - $_POST['signature_bbc_enabledTags'] = array(); |
|
1189 | - elseif (!is_array($_POST['signature_bbc_enabledTags'])) |
|
1190 | - $_POST['signature_bbc_enabledTags'] = array($_POST['signature_bbc_enabledTags']); |
|
1232 | + if (!isset($_POST['signature_bbc_enabledTags'])) { |
|
1233 | + $_POST['signature_bbc_enabledTags'] = array(); |
|
1234 | + } elseif (!is_array($_POST['signature_bbc_enabledTags'])) { |
|
1235 | + $_POST['signature_bbc_enabledTags'] = array($_POST['signature_bbc_enabledTags']); |
|
1236 | + } |
|
1191 | 1237 | |
1192 | 1238 | $sig_limits = array(); |
1193 | 1239 | foreach ($context['signature_settings'] as $key => $value) |
1194 | 1240 | { |
1195 | - if ($key == 'allow_smileys') |
|
1196 | - continue; |
|
1197 | - elseif ($key == 'max_smileys' && empty($_POST['signature_allow_smileys'])) |
|
1198 | - $sig_limits[] = -1; |
|
1199 | - else |
|
1200 | - $sig_limits[] = !empty($_POST['signature_' . $key]) ? max(1, (int) $_POST['signature_' . $key]) : 0; |
|
1241 | + if ($key == 'allow_smileys') { |
|
1242 | + continue; |
|
1243 | + } elseif ($key == 'max_smileys' && empty($_POST['signature_allow_smileys'])) { |
|
1244 | + $sig_limits[] = -1; |
|
1245 | + } else { |
|
1246 | + $sig_limits[] = !empty($_POST['signature_' . $key]) ? max(1, (int) $_POST['signature_' . $key]) : 0; |
|
1247 | + } |
|
1201 | 1248 | } |
1202 | 1249 | |
1203 | 1250 | call_integration_hook('integrate_save_signature_settings', array(&$sig_limits, &$bbcTags)); |
@@ -1230,12 +1277,14 @@ discard block |
||
1230 | 1277 | |
1231 | 1278 | // Try get more time... |
1232 | 1279 | @set_time_limit(600); |
1233 | - if (function_exists('apache_reset_timeout')) |
|
1234 | - @apache_reset_timeout(); |
|
1280 | + if (function_exists('apache_reset_timeout')) { |
|
1281 | + @apache_reset_timeout(); |
|
1282 | + } |
|
1235 | 1283 | |
1236 | 1284 | // Have we exhausted all the time we allowed? |
1237 | - if (time() - array_sum(explode(' ', $sig_start)) < 3) |
|
1238 | - return; |
|
1285 | + if (time() - array_sum(explode(' ', $sig_start)) < 3) { |
|
1286 | + return; |
|
1287 | + } |
|
1239 | 1288 | |
1240 | 1289 | $context['continue_get_data'] = '?action=admin;area=featuresettings;sa=sig;apply;step=' . $_GET['step'] . ';' . $context['session_var'] . '=' . $context['session_id']; |
1241 | 1290 | $context['page_title'] = $txt['not_done_title']; |
@@ -1281,9 +1330,10 @@ discard block |
||
1281 | 1330 | $disable_fields = array_flip($standard_fields); |
1282 | 1331 | if (!empty($_POST['active'])) |
1283 | 1332 | { |
1284 | - foreach ($_POST['active'] as $value) |
|
1285 | - if (isset($disable_fields[$value])) |
|
1333 | + foreach ($_POST['active'] as $value) { |
|
1334 | + if (isset($disable_fields[$value])) |
|
1286 | 1335 | unset($disable_fields[$value]); |
1336 | + } |
|
1287 | 1337 | } |
1288 | 1338 | // What we have left! |
1289 | 1339 | $changes['disabled_profile_fields'] = empty($disable_fields) ? '' : implode(',', array_keys($disable_fields)); |
@@ -1292,16 +1342,18 @@ discard block |
||
1292 | 1342 | $reg_fields = array(); |
1293 | 1343 | if (!empty($_POST['reg'])) |
1294 | 1344 | { |
1295 | - foreach ($_POST['reg'] as $value) |
|
1296 | - if (in_array($value, $standard_fields) && !isset($disable_fields[$value])) |
|
1345 | + foreach ($_POST['reg'] as $value) { |
|
1346 | + if (in_array($value, $standard_fields) && !isset($disable_fields[$value])) |
|
1297 | 1347 | $reg_fields[] = $value; |
1348 | + } |
|
1298 | 1349 | } |
1299 | 1350 | // What we have left! |
1300 | 1351 | $changes['registration_fields'] = empty($reg_fields) ? '' : implode(',', $reg_fields); |
1301 | 1352 | |
1302 | 1353 | $_SESSION['adm-save'] = true; |
1303 | - if (!empty($changes)) |
|
1304 | - updateSettings($changes); |
|
1354 | + if (!empty($changes)) { |
|
1355 | + updateSettings($changes); |
|
1356 | + } |
|
1305 | 1357 | } |
1306 | 1358 | |
1307 | 1359 | createToken('admin-scp'); |
@@ -1404,11 +1456,13 @@ discard block |
||
1404 | 1456 | { |
1405 | 1457 | $return = '<p class="centertext bold_text">'. $rowData['field_order'] .'<br>'; |
1406 | 1458 | |
1407 | - if ($rowData['field_order'] > 1) |
|
1408 | - $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=up"><span class="toggle_up" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_up'] .'"></span></a>'; |
|
1459 | + if ($rowData['field_order'] > 1) { |
|
1460 | + $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=up"><span class="toggle_up" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_up'] .'"></span></a>'; |
|
1461 | + } |
|
1409 | 1462 | |
1410 | - if ($rowData['field_order'] < $context['custFieldsMaxOrder']) |
|
1411 | - $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=down"><span class="toggle_down" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_down'] .'"></span></a>'; |
|
1463 | + if ($rowData['field_order'] < $context['custFieldsMaxOrder']) { |
|
1464 | + $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=down"><span class="toggle_down" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_down'] .'"></span></a>'; |
|
1465 | + } |
|
1412 | 1466 | |
1413 | 1467 | $return .= '</p>'; |
1414 | 1468 | |
@@ -1546,16 +1600,16 @@ discard block |
||
1546 | 1600 | $disabled_fields = isset($modSettings['disabled_profile_fields']) ? explode(',', $modSettings['disabled_profile_fields']) : array(); |
1547 | 1601 | $registration_fields = isset($modSettings['registration_fields']) ? explode(',', $modSettings['registration_fields']) : array(); |
1548 | 1602 | |
1549 | - foreach ($standard_fields as $field) |
|
1550 | - $list[] = array( |
|
1603 | + foreach ($standard_fields as $field) { |
|
1604 | + $list[] = array( |
|
1551 | 1605 | 'id' => $field, |
1552 | 1606 | 'label' => isset($txt['standard_profile_field_' . $field]) ? $txt['standard_profile_field_' . $field] : (isset($txt[$field]) ? $txt[$field] : $field), |
1553 | 1607 | 'disabled' => in_array($field, $disabled_fields), |
1554 | 1608 | 'on_register' => in_array($field, $registration_fields) && !in_array($field, $fields_no_registration), |
1555 | 1609 | 'can_show_register' => !in_array($field, $fields_no_registration), |
1556 | 1610 | ); |
1557 | - } |
|
1558 | - else |
|
1611 | + } |
|
1612 | + } else |
|
1559 | 1613 | { |
1560 | 1614 | // Load all the fields. |
1561 | 1615 | $request = $smcFunc['db_query']('', ' |
@@ -1569,8 +1623,9 @@ discard block |
||
1569 | 1623 | 'items_per_page' => $items_per_page, |
1570 | 1624 | ) |
1571 | 1625 | ); |
1572 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1573 | - $list[] = $row; |
|
1626 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1627 | + $list[] = $row; |
|
1628 | + } |
|
1574 | 1629 | $smcFunc['db_free_result']($request); |
1575 | 1630 | } |
1576 | 1631 | |
@@ -1636,9 +1691,9 @@ discard block |
||
1636 | 1691 | $context['field'] = array(); |
1637 | 1692 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1638 | 1693 | { |
1639 | - if ($row['field_type'] == 'textarea') |
|
1640 | - @list ($rows, $cols) = @explode(',', $row['default_value']); |
|
1641 | - else |
|
1694 | + if ($row['field_type'] == 'textarea') { |
|
1695 | + @list ($rows, $cols) = @explode(',', $row['default_value']); |
|
1696 | + } else |
|
1642 | 1697 | { |
1643 | 1698 | $rows = 3; |
1644 | 1699 | $cols = 30; |
@@ -1674,8 +1729,8 @@ discard block |
||
1674 | 1729 | } |
1675 | 1730 | |
1676 | 1731 | // Setup the default values as needed. |
1677 | - if (empty($context['field'])) |
|
1678 | - $context['field'] = array( |
|
1732 | + if (empty($context['field'])) { |
|
1733 | + $context['field'] = array( |
|
1679 | 1734 | 'name' => '', |
1680 | 1735 | 'col_name' => '???', |
1681 | 1736 | 'desc' => '', |
@@ -1700,6 +1755,7 @@ discard block |
||
1700 | 1755 | 'enclose' => '', |
1701 | 1756 | 'placement' => 0, |
1702 | 1757 | ); |
1758 | + } |
|
1703 | 1759 | |
1704 | 1760 | // Are we moving it? |
1705 | 1761 | if (isset($_GET['move']) && in_array($smcFunc['htmlspecialchars']($_GET['move']), $move_to)) |
@@ -1708,8 +1764,10 @@ discard block |
||
1708 | 1764 | $new_order = ($_GET['move'] == 'up' ? ($context['field']['order'] - 1) : ($context['field']['order'] + 1)); |
1709 | 1765 | |
1710 | 1766 | // Is this a valid position? |
1711 | - if ($new_order <= 0 || $new_order > $order_count) |
|
1712 | - redirectexit('action=admin;area=featuresettings;sa=profile'); // @todo implement an error handler |
|
1767 | + if ($new_order <= 0 || $new_order > $order_count) { |
|
1768 | + redirectexit('action=admin;area=featuresettings;sa=profile'); |
|
1769 | + } |
|
1770 | + // @todo implement an error handler |
|
1713 | 1771 | |
1714 | 1772 | // All good, proceed. |
1715 | 1773 | $smcFunc['db_query']('',' |
@@ -1740,12 +1798,14 @@ discard block |
||
1740 | 1798 | validateToken('admin-ecp'); |
1741 | 1799 | |
1742 | 1800 | // Everyone needs a name - even the (bracket) unknown... |
1743 | - if (trim($_POST['field_name']) == '') |
|
1744 | - redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=need_name'); |
|
1801 | + if (trim($_POST['field_name']) == '') { |
|
1802 | + redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=need_name'); |
|
1803 | + } |
|
1745 | 1804 | |
1746 | 1805 | // Regex you say? Do a very basic test to see if the pattern is valid |
1747 | - if (!empty($_POST['regex']) && @preg_match($_POST['regex'], 'dummy') === false) |
|
1748 | - redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=regex_error'); |
|
1806 | + if (!empty($_POST['regex']) && @preg_match($_POST['regex'], 'dummy') === false) { |
|
1807 | + redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=regex_error'); |
|
1808 | + } |
|
1749 | 1809 | |
1750 | 1810 | $_POST['field_name'] = $smcFunc['htmlspecialchars']($_POST['field_name']); |
1751 | 1811 | $_POST['field_desc'] = $smcFunc['htmlspecialchars']($_POST['field_desc']); |
@@ -1762,8 +1822,9 @@ discard block |
||
1762 | 1822 | |
1763 | 1823 | // Some masking stuff... |
1764 | 1824 | $mask = isset($_POST['mask']) ? $_POST['mask'] : ''; |
1765 | - if ($mask == 'regex' && isset($_POST['regex'])) |
|
1766 | - $mask .= $_POST['regex']; |
|
1825 | + if ($mask == 'regex' && isset($_POST['regex'])) { |
|
1826 | + $mask .= $_POST['regex']; |
|
1827 | + } |
|
1767 | 1828 | |
1768 | 1829 | $field_length = isset($_POST['max_length']) ? (int) $_POST['max_length'] : 255; |
1769 | 1830 | $enclose = isset($_POST['enclose']) ? $_POST['enclose'] : ''; |
@@ -1782,8 +1843,9 @@ discard block |
||
1782 | 1843 | $v = strtr($v, array(',' => '')); |
1783 | 1844 | |
1784 | 1845 | // Nada, zip, etc... |
1785 | - if (trim($v) == '') |
|
1786 | - continue; |
|
1846 | + if (trim($v) == '') { |
|
1847 | + continue; |
|
1848 | + } |
|
1787 | 1849 | |
1788 | 1850 | // Otherwise, save it boy. |
1789 | 1851 | $field_options .= $v . ','; |
@@ -1791,15 +1853,17 @@ discard block |
||
1791 | 1853 | $newOptions[$k] = $v; |
1792 | 1854 | |
1793 | 1855 | // Is it default? |
1794 | - if (isset($_POST['default_select']) && $_POST['default_select'] == $k) |
|
1795 | - $default = $v; |
|
1856 | + if (isset($_POST['default_select']) && $_POST['default_select'] == $k) { |
|
1857 | + $default = $v; |
|
1858 | + } |
|
1796 | 1859 | } |
1797 | 1860 | $field_options = substr($field_options, 0, -1); |
1798 | 1861 | } |
1799 | 1862 | |
1800 | 1863 | // Text area has default has dimensions |
1801 | - if ($_POST['field_type'] == 'textarea') |
|
1802 | - $default = (int) $_POST['rows'] . ',' . (int) $_POST['cols']; |
|
1864 | + if ($_POST['field_type'] == 'textarea') { |
|
1865 | + $default = (int) $_POST['rows'] . ',' . (int) $_POST['cols']; |
|
1866 | + } |
|
1803 | 1867 | |
1804 | 1868 | // Come up with the unique name? |
1805 | 1869 | if (empty($context['fid'])) |
@@ -1808,32 +1872,36 @@ discard block |
||
1808 | 1872 | preg_match('~([\w\d_-]+)~', $col_name, $matches); |
1809 | 1873 | |
1810 | 1874 | // If there is nothing to the name, then let's start out own - for foreign languages etc. |
1811 | - if (isset($matches[1])) |
|
1812 | - $col_name = $initial_col_name = 'cust_' . strtolower($matches[1]); |
|
1813 | - else |
|
1814 | - $col_name = $initial_col_name = 'cust_' . mt_rand(1, 9999); |
|
1875 | + if (isset($matches[1])) { |
|
1876 | + $col_name = $initial_col_name = 'cust_' . strtolower($matches[1]); |
|
1877 | + } else { |
|
1878 | + $col_name = $initial_col_name = 'cust_' . mt_rand(1, 9999); |
|
1879 | + } |
|
1815 | 1880 | |
1816 | 1881 | // Make sure this is unique. |
1817 | 1882 | $current_fields = array(); |
1818 | 1883 | $request = $smcFunc['db_query']('', ' |
1819 | 1884 | SELECT id_field, col_name |
1820 | 1885 | FROM {db_prefix}custom_fields'); |
1821 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1822 | - $current_fields[$row['id_field']] = $row['col_name']; |
|
1886 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1887 | + $current_fields[$row['id_field']] = $row['col_name']; |
|
1888 | + } |
|
1823 | 1889 | $smcFunc['db_free_result']($request); |
1824 | 1890 | |
1825 | 1891 | $unique = false; |
1826 | 1892 | for ($i = 0; !$unique && $i < 9; $i ++) |
1827 | 1893 | { |
1828 | - if (!in_array($col_name, $current_fields)) |
|
1829 | - $unique = true; |
|
1830 | - else |
|
1831 | - $col_name = $initial_col_name . $i; |
|
1894 | + if (!in_array($col_name, $current_fields)) { |
|
1895 | + $unique = true; |
|
1896 | + } else { |
|
1897 | + $col_name = $initial_col_name . $i; |
|
1898 | + } |
|
1832 | 1899 | } |
1833 | 1900 | |
1834 | 1901 | // Still not a unique column name? Leave it up to the user, then. |
1835 | - if (!$unique) |
|
1836 | - fatal_lang_error('custom_option_not_unique'); |
|
1902 | + if (!$unique) { |
|
1903 | + fatal_lang_error('custom_option_not_unique'); |
|
1904 | + } |
|
1837 | 1905 | } |
1838 | 1906 | // Work out what to do with the user data otherwise... |
1839 | 1907 | else |
@@ -1861,8 +1929,9 @@ discard block |
||
1861 | 1929 | // Work out what's changed! |
1862 | 1930 | foreach ($context['field']['options'] as $k => $option) |
1863 | 1931 | { |
1864 | - if (trim($option) == '') |
|
1865 | - continue; |
|
1932 | + if (trim($option) == '') { |
|
1933 | + continue; |
|
1934 | + } |
|
1866 | 1935 | |
1867 | 1936 | // Still exists? |
1868 | 1937 | if (in_array($option, $newOptions)) |
@@ -1876,8 +1945,8 @@ discard block |
||
1876 | 1945 | foreach ($optionChanges as $k => $option) |
1877 | 1946 | { |
1878 | 1947 | // Just been renamed? |
1879 | - if (!in_array($k, $takenKeys) && !empty($newOptions[$k])) |
|
1880 | - $smcFunc['db_query']('', ' |
|
1948 | + if (!in_array($k, $takenKeys) && !empty($newOptions[$k])) { |
|
1949 | + $smcFunc['db_query']('', ' |
|
1881 | 1950 | UPDATE {db_prefix}themes |
1882 | 1951 | SET value = {string:new_value} |
1883 | 1952 | WHERE variable = {string:current_column} |
@@ -1890,6 +1959,7 @@ discard block |
||
1890 | 1959 | 'old_value' => $option, |
1891 | 1960 | ) |
1892 | 1961 | ); |
1962 | + } |
|
1893 | 1963 | } |
1894 | 1964 | } |
1895 | 1965 | // @todo Maybe we should adjust based on new text length limits? |
@@ -1932,8 +2002,8 @@ discard block |
||
1932 | 2002 | ); |
1933 | 2003 | |
1934 | 2004 | // Just clean up any old selects - these are a pain! |
1935 | - if (($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio') && !empty($newOptions)) |
|
1936 | - $smcFunc['db_query']('', ' |
|
2005 | + if (($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio') && !empty($newOptions)) { |
|
2006 | + $smcFunc['db_query']('', ' |
|
1937 | 2007 | DELETE FROM {db_prefix}themes |
1938 | 2008 | WHERE variable = {string:current_column} |
1939 | 2009 | AND value NOT IN ({array_string:new_option_values}) |
@@ -1944,8 +2014,8 @@ discard block |
||
1944 | 2014 | 'current_column' => $context['field']['col_name'], |
1945 | 2015 | ) |
1946 | 2016 | ); |
1947 | - } |
|
1948 | - else |
|
2017 | + } |
|
2018 | + } else |
|
1949 | 2019 | { |
1950 | 2020 | // Gotta figure it out the order. |
1951 | 2021 | $new_order = $order_count > 1 ? ($order_count + 1) : 1; |
@@ -2120,11 +2190,13 @@ discard block |
||
2120 | 2190 | call_integration_hook('integrate_prune_settings', array(&$config_vars, &$prune_toggle, false)); |
2121 | 2191 | |
2122 | 2192 | $prune_toggle_dt = array(); |
2123 | - foreach ($prune_toggle as $item) |
|
2124 | - $prune_toggle_dt[] = 'setting_' . $item; |
|
2193 | + foreach ($prune_toggle as $item) { |
|
2194 | + $prune_toggle_dt[] = 'setting_' . $item; |
|
2195 | + } |
|
2125 | 2196 | |
2126 | - if ($return_config) |
|
2127 | - return $config_vars; |
|
2197 | + if ($return_config) { |
|
2198 | + return $config_vars; |
|
2199 | + } |
|
2128 | 2200 | |
2129 | 2201 | addInlineJavaScript(' |
2130 | 2202 | function togglePruned() |
@@ -2162,15 +2234,16 @@ discard block |
||
2162 | 2234 | $vals = array(); |
2163 | 2235 | foreach ($config_vars as $index => $dummy) |
2164 | 2236 | { |
2165 | - if (!is_array($dummy) || $index == 'pruningOptions' || !in_array($dummy[1], $prune_toggle)) |
|
2166 | - continue; |
|
2237 | + if (!is_array($dummy) || $index == 'pruningOptions' || !in_array($dummy[1], $prune_toggle)) { |
|
2238 | + continue; |
|
2239 | + } |
|
2167 | 2240 | |
2168 | 2241 | $vals[] = empty($_POST[$dummy[1]]) || $_POST[$dummy[1]] < 0 ? 0 : (int) $_POST[$dummy[1]]; |
2169 | 2242 | } |
2170 | 2243 | $_POST['pruningOptions'] = implode(',', $vals); |
2244 | + } else { |
|
2245 | + $_POST['pruningOptions'] = ''; |
|
2171 | 2246 | } |
2172 | - else |
|
2173 | - $_POST['pruningOptions'] = ''; |
|
2174 | 2247 | |
2175 | 2248 | saveDBSettings($savevar); |
2176 | 2249 | $_SESSION['adm-save'] = true; |
@@ -2182,10 +2255,11 @@ discard block |
||
2182 | 2255 | $context['sub_template'] = 'show_settings'; |
2183 | 2256 | |
2184 | 2257 | // Get the actual values |
2185 | - if (!empty($modSettings['pruningOptions'])) |
|
2186 | - @list ($modSettings['pruneErrorLog'], $modSettings['pruneModLog'], $modSettings['pruneBanLog'], $modSettings['pruneReportLog'], $modSettings['pruneScheduledTaskLog'], $modSettings['pruneSpiderHitLog']) = explode(',', $modSettings['pruningOptions']); |
|
2187 | - else |
|
2188 | - $modSettings['pruneErrorLog'] = $modSettings['pruneModLog'] = $modSettings['pruneBanLog'] = $modSettings['pruneReportLog'] = $modSettings['pruneScheduledTaskLog'] = $modSettings['pruneSpiderHitLog'] = 0; |
|
2258 | + if (!empty($modSettings['pruningOptions'])) { |
|
2259 | + @list ($modSettings['pruneErrorLog'], $modSettings['pruneModLog'], $modSettings['pruneBanLog'], $modSettings['pruneReportLog'], $modSettings['pruneScheduledTaskLog'], $modSettings['pruneSpiderHitLog']) = explode(',', $modSettings['pruningOptions']); |
|
2260 | + } else { |
|
2261 | + $modSettings['pruneErrorLog'] = $modSettings['pruneModLog'] = $modSettings['pruneBanLog'] = $modSettings['pruneReportLog'] = $modSettings['pruneScheduledTaskLog'] = $modSettings['pruneSpiderHitLog'] = 0; |
|
2262 | + } |
|
2189 | 2263 | |
2190 | 2264 | prepareDBSettingContext($config_vars); |
2191 | 2265 | } |
@@ -2207,8 +2281,9 @@ discard block |
||
2207 | 2281 | // Make it even easier to add new settings. |
2208 | 2282 | call_integration_hook('integrate_general_mod_settings', array(&$config_vars)); |
2209 | 2283 | |
2210 | - if ($return_config) |
|
2211 | - return $config_vars; |
|
2284 | + if ($return_config) { |
|
2285 | + return $config_vars; |
|
2286 | + } |
|
2212 | 2287 | |
2213 | 2288 | $context['post_url'] = $scripturl . '?action=admin;area=modsettings;save;sa=general'; |
2214 | 2289 | $context['settings_title'] = $txt['mods_cat_modifications_misc']; |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | define('SMF', 'proxy'); |
18 | +} |
|
18 | 19 | |
19 | 20 | global $proxyhousekeeping; |
20 | 21 | |
@@ -68,33 +69,38 @@ discard block |
||
68 | 69 | */ |
69 | 70 | public function checkRequest() |
70 | 71 | { |
71 | - if (!$this->enabled) |
|
72 | - return false; |
|
72 | + if (!$this->enabled) { |
|
73 | + return false; |
|
74 | + } |
|
73 | 75 | |
74 | 76 | // Try to create the image cache directory if it doesn't exist |
75 | - if (!file_exists($this->cache)) |
|
76 | - if (!mkdir($this->cache) || !copy(dirname($this->cache) . '/index.php', $this->cache . '/index.php')) |
|
77 | + if (!file_exists($this->cache)) { |
|
78 | + if (!mkdir($this->cache) || !copy(dirname($this->cache) . '/index.php', $this->cache . '/index.php')) |
|
77 | 79 | return false; |
80 | + } |
|
78 | 81 | |
79 | 82 | // Basic sanity check |
80 | 83 | $_GET['request'] = validate_iri($_GET['request']); |
81 | 84 | |
82 | 85 | // We aren't going anywhere without these |
83 | - if (empty($_GET['hash']) || empty($_GET['request'])) |
|
84 | - return false; |
|
86 | + if (empty($_GET['hash']) || empty($_GET['request'])) { |
|
87 | + return false; |
|
88 | + } |
|
85 | 89 | |
86 | 90 | $hash = $_GET['hash']; |
87 | 91 | $request = $_GET['request']; |
88 | 92 | |
89 | - if (md5($request . $this->secret) != $hash) |
|
90 | - return false; |
|
93 | + if (md5($request . $this->secret) != $hash) { |
|
94 | + return false; |
|
95 | + } |
|
91 | 96 | |
92 | 97 | // Ensure any non-ASCII characters in the URL are encoded correctly |
93 | 98 | $request = iri_to_url($request); |
94 | 99 | |
95 | 100 | // Attempt to cache the request if it doesn't exist |
96 | - if (!$this->isCached($request)) |
|
97 | - return $this->cacheImage($request); |
|
101 | + if (!$this->isCached($request)) { |
|
102 | + return $this->cacheImage($request); |
|
103 | + } |
|
98 | 104 | |
99 | 105 | return true; |
100 | 106 | } |
@@ -131,8 +137,9 @@ discard block |
||
131 | 137 | if (!$cached || $time - $cached['time'] > ($this->maxDays * 86400)) |
132 | 138 | { |
133 | 139 | @unlink($cached_file); |
134 | - if ($this->checkRequest()) |
|
135 | - $this->serve(); |
|
140 | + if ($this->checkRequest()) { |
|
141 | + $this->serve(); |
|
142 | + } |
|
136 | 143 | $this::redirectexit($request); |
137 | 144 | } |
138 | 145 | |
@@ -145,8 +152,9 @@ discard block |
||
145 | 152 | |
146 | 153 | // Make sure we're serving an image |
147 | 154 | $contentParts = explode('/', !empty($cached['content_type']) ? $cached['content_type'] : ''); |
148 | - if ($contentParts[0] != 'image') |
|
149 | - exit; |
|
155 | + if ($contentParts[0] != 'image') { |
|
156 | + exit; |
|
157 | + } |
|
150 | 158 | |
151 | 159 | $max_age = $time - $cached['time'] + (5 * 86400); |
152 | 160 | header('content-type: ' . $cached['content_type']); |
@@ -196,25 +204,29 @@ discard block |
||
196 | 204 | $image = fetch_web_data($request); |
197 | 205 | |
198 | 206 | // Looks like nobody was home |
199 | - if (empty($image)) |
|
200 | - return -1; |
|
207 | + if (empty($image)) { |
|
208 | + return -1; |
|
209 | + } |
|
201 | 210 | |
202 | 211 | // What kind of file did they give us? |
203 | 212 | $finfo = finfo_open(FILEINFO_MIME_TYPE); |
204 | 213 | $mime_type = finfo_buffer($finfo, $image); |
205 | 214 | |
206 | 215 | // SVG needs a little extra care |
207 | - if ($ext == 'svg' && $mime_type == 'text/plain') |
|
208 | - $mime_type = 'image/svg+xml'; |
|
216 | + if ($ext == 'svg' && $mime_type == 'text/plain') { |
|
217 | + $mime_type = 'image/svg+xml'; |
|
218 | + } |
|
209 | 219 | |
210 | 220 | // Make sure the url is returning an image |
211 | - if (strpos($mime_type, 'image/') !== 0) |
|
212 | - return -1; |
|
221 | + if (strpos($mime_type, 'image/') !== 0) { |
|
222 | + return -1; |
|
223 | + } |
|
213 | 224 | |
214 | 225 | // Validate the filesize |
215 | 226 | $size = strlen($image); |
216 | - if ($size > ($this->maxSize * 1024)) |
|
217 | - return 0; |
|
227 | + if ($size > ($this->maxSize * 1024)) { |
|
228 | + return 0; |
|
229 | + } |
|
218 | 230 | |
219 | 231 | // Cache it for later |
220 | 232 | return file_put_contents($dest, json_encode(array( |