@@ -50,8 +50,8 @@ discard block |
||
| 50 | 50 | ) |
| 51 | 51 | ); |
| 52 | 52 | $members = array(); |
| 53 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 54 | - $members[$row['id_member']] = array( |
|
| 53 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 54 | + $members[$row['id_member']] = array( |
|
| 55 | 55 | 'id' => $row['id_member'], |
| 56 | 56 | 'real_name' => $row['real_name'], |
| 57 | 57 | 'email_address' => $row['email_address'], |
@@ -62,6 +62,7 @@ discard block |
||
| 62 | 62 | ), |
| 63 | 63 | 'lngfile' => $row['lngfile'], |
| 64 | 64 | ); |
| 65 | + } |
|
| 65 | 66 | $smcFunc['db_free_result']($request); |
| 66 | 67 | |
| 67 | 68 | return $members; |
@@ -83,13 +84,14 @@ discard block |
||
| 83 | 84 | |
| 84 | 85 | call_integration_hook('mention_insert_' . $content_type, array($content_id, &$members)); |
| 85 | 86 | |
| 86 | - foreach ($members as $member) |
|
| 87 | - $smcFunc['db_insert']('ignore', |
|
| 87 | + foreach ($members as $member) { |
|
| 88 | + $smcFunc['db_insert']('ignore', |
|
| 88 | 89 | '{db_prefix}mentions', |
| 89 | 90 | array('content_id' => 'int', 'content_type' => 'string', 'id_member' => 'int', 'id_mentioned' => 'int', 'time' => 'int'), |
| 90 | 91 | array((int) $content_id, $content_type, $id_member, $member['id'], time()), |
| 91 | 92 | array('content_id', 'content_type', 'id_mentioned') |
| 92 | 93 | ); |
| 94 | + } |
|
| 93 | 95 | } |
| 94 | 96 | |
| 95 | 97 | /** |
@@ -103,8 +105,9 @@ discard block |
||
| 103 | 105 | */ |
| 104 | 106 | public static function getBody($body, array $members) |
| 105 | 107 | { |
| 106 | - foreach ($members as $member) |
|
| 107 | - $body = str_ireplace(static::$char . $member['real_name'], '[member=' . $member['id'] . ']' . $member['real_name'] . '[/member]', $body); |
|
| 108 | + foreach ($members as $member) { |
|
| 109 | + $body = str_ireplace(static::$char . $member['real_name'], '[member=' . $member['id'] . ']' . $member['real_name'] . '[/member]', $body); |
|
| 110 | + } |
|
| 108 | 111 | |
| 109 | 112 | return $body; |
| 110 | 113 | } |
@@ -123,8 +126,9 @@ discard block |
||
| 123 | 126 | |
| 124 | 127 | $possible_names = self::getPossibleMentions($body); |
| 125 | 128 | |
| 126 | - if (empty($possible_names) || !allowedTo('mention')) |
|
| 127 | - return array(); |
|
| 129 | + if (empty($possible_names) || !allowedTo('mention')) { |
|
| 130 | + return array(); |
|
| 131 | + } |
|
| 128 | 132 | |
| 129 | 133 | $request = $smcFunc['db_query']('', ' |
| 130 | 134 | SELECT id_member, real_name |
@@ -140,8 +144,9 @@ discard block |
||
| 140 | 144 | $members = array(); |
| 141 | 145 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 142 | 146 | { |
| 143 | - if (stripos($body, static::$char . $row['real_name']) === false) |
|
| 144 | - continue; |
|
| 147 | + if (stripos($body, static::$char . $row['real_name']) === false) { |
|
| 148 | + continue; |
|
| 149 | + } |
|
| 145 | 150 | |
| 146 | 151 | $members[$row['id_member']] = array( |
| 147 | 152 | 'id' => $row['id_member'], |
@@ -185,8 +190,9 @@ discard block |
||
| 185 | 190 | $body = htmlspecialchars_decode(preg_replace('~<br\s*/?\>~', "\n", str_replace(' ', ' ', $body)), ENT_QUOTES); |
| 186 | 191 | |
| 187 | 192 | // Remove quotes, we don't want to get double mentions. |
| 188 | - while (preg_match('~\[quote[^\]]*\](.+?)\[\/quote\]~s', $body)) |
|
| 189 | - $body = preg_replace('~\[quote[^\]]*\](.+?)\[\/quote\]~s', '', $body); |
|
| 193 | + while (preg_match('~\[quote[^\]]*\](.+?)\[\/quote\]~s', $body)) { |
|
| 194 | + $body = preg_replace('~\[quote[^\]]*\](.+?)\[\/quote\]~s', '', $body); |
|
| 195 | + } |
|
| 190 | 196 | |
| 191 | 197 | $matches = array(); |
| 192 | 198 | $string = str_split($body); |
@@ -197,9 +203,9 @@ discard block |
||
| 197 | 203 | { |
| 198 | 204 | $depth++; |
| 199 | 205 | $matches[] = array(); |
| 206 | + } elseif ($char == "\n") { |
|
| 207 | + $depth = 0; |
|
| 200 | 208 | } |
| 201 | - elseif ($char == "\n") |
|
| 202 | - $depth = 0; |
|
| 203 | 209 | |
| 204 | 210 | for ($i = $depth; $i > 0; $i--) |
| 205 | 211 | { |
@@ -212,8 +218,9 @@ discard block |
||
| 212 | 218 | } |
| 213 | 219 | } |
| 214 | 220 | |
| 215 | - foreach ($matches as $k => $match) |
|
| 216 | - $matches[$k] = substr(implode('', $match), 1); |
|
| 221 | + foreach ($matches as $k => $match) { |
|
| 222 | + $matches[$k] = substr(implode('', $match), 1); |
|
| 223 | + } |
|
| 217 | 224 | |
| 218 | 225 | // Names can have spaces, other breaks, or they can't...we try to match every possible |
| 219 | 226 | // combination. |
@@ -222,8 +229,9 @@ discard block |
||
| 222 | 229 | { |
| 223 | 230 | $match = preg_split('/([^\w])/', $match, -1, PREG_SPLIT_DELIM_CAPTURE); |
| 224 | 231 | |
| 225 | - for ($i = 1; $i <= count($match); $i++) |
|
| 226 | - $names[] = $smcFunc['htmlspecialchars']($smcFunc['htmltrim'](implode('', array_slice($match, 0, $i)))); |
|
| 232 | + for ($i = 1; $i <= count($match); $i++) { |
|
| 233 | + $names[] = $smcFunc['htmlspecialchars']($smcFunc['htmltrim'](implode('', array_slice($match, 0, $i)))); |
|
| 234 | + } |
|
| 227 | 235 | } |
| 228 | 236 | |
| 229 | 237 | $names = array_unique($names); |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 3 |
| 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 | * Gets a single theme's info. |
@@ -27,8 +28,9 @@ discard block |
||
| 27 | 28 | global $smcFunc, $modSettings; |
| 28 | 29 | |
| 29 | 30 | // No data, no fun! |
| 30 | - if (empty($id)) |
|
| 31 | - return false; |
|
| 31 | + if (empty($id)) { |
|
| 32 | + return false; |
|
| 33 | + } |
|
| 32 | 34 | |
| 33 | 35 | // Make sure $id is an int. |
| 34 | 36 | $id = (int) $id; |
@@ -171,8 +173,9 @@ discard block |
||
| 171 | 173 | global $sourcedir, $forum_version, $txt, $scripturl, $context; |
| 172 | 174 | global $explicit_images; |
| 173 | 175 | |
| 174 | - if (empty($path)) |
|
| 175 | - return false; |
|
| 176 | + if (empty($path)) { |
|
| 177 | + return false; |
|
| 178 | + } |
|
| 176 | 179 | |
| 177 | 180 | $xml_data = array(); |
| 178 | 181 | $explicit_images = false; |
@@ -229,9 +232,10 @@ discard block |
||
| 229 | 232 | ); |
| 230 | 233 | |
| 231 | 234 | // Assign the values to be stored. |
| 232 | - foreach ($xml_elements as $var => $name) |
|
| 233 | - if (!empty($theme_info_xml[$name])) |
|
| 235 | + foreach ($xml_elements as $var => $name) { |
|
| 236 | + if (!empty($theme_info_xml[$name])) |
|
| 234 | 237 | $xml_data[$var] = $theme_info_xml[$name]; |
| 238 | + } |
|
| 235 | 239 | |
| 236 | 240 | // Add the supported versions. |
| 237 | 241 | $xml_data['install_for'] = $install_versions; |
@@ -243,8 +247,9 @@ discard block |
||
| 243 | 247 | $explicit_images = true; |
| 244 | 248 | } |
| 245 | 249 | |
| 246 | - if (!empty($theme_info_xml['extra'])) |
|
| 247 | - $xml_data += smf_json_decode($theme_info_xml['extra'], true); |
|
| 250 | + if (!empty($theme_info_xml['extra'])) { |
|
| 251 | + $xml_data += smf_json_decode($theme_info_xml['extra'], true); |
|
| 252 | + } |
|
| 248 | 253 | |
| 249 | 254 | return $xml_data; |
| 250 | 255 | } |
@@ -262,12 +267,14 @@ discard block |
||
| 262 | 267 | global $settings, $explicit_images; |
| 263 | 268 | |
| 264 | 269 | // External use? no problem! |
| 265 | - if ($to_install) |
|
| 266 | - $context['to_install'] = $to_install; |
|
| 270 | + if ($to_install) { |
|
| 271 | + $context['to_install'] = $to_install; |
|
| 272 | + } |
|
| 267 | 273 | |
| 268 | 274 | // One last check. |
| 269 | - if (empty($context['to_install']['theme_dir']) || basename($context['to_install']['theme_dir']) == 'Themes') |
|
| 270 | - fatal_lang_error('theme_install_invalid_dir', false); |
|
| 275 | + if (empty($context['to_install']['theme_dir']) || basename($context['to_install']['theme_dir']) == 'Themes') { |
|
| 276 | + fatal_lang_error('theme_install_invalid_dir', false); |
|
| 277 | + } |
|
| 271 | 278 | |
| 272 | 279 | // OK, is this a newer version of an already installed theme? |
| 273 | 280 | if (!empty($context['to_install']['version'])) |
@@ -292,8 +299,8 @@ discard block |
||
| 292 | 299 | $smcFunc['db_free_result']($request); |
| 293 | 300 | |
| 294 | 301 | // Got something, lets figure it out what to do next. |
| 295 | - if (!empty($to_update) && !empty($to_update['version'])) |
|
| 296 | - switch (compareVersions($context['to_install']['version'], $to_update['version'])) |
|
| 302 | + if (!empty($to_update) && !empty($to_update['version'])) { |
|
| 303 | + switch (compareVersions($context['to_install']['version'], $to_update['version'])) |
|
| 297 | 304 | { |
| 298 | 305 | case 1: // Got a newer version, update the old entry. |
| 299 | 306 | $smcFunc['db_query']('', ' |
@@ -307,6 +314,7 @@ discard block |
||
| 307 | 314 | 'id_theme' => $to_update['id_theme'], |
| 308 | 315 | ) |
| 309 | 316 | ); |
| 317 | + } |
|
| 310 | 318 | |
| 311 | 319 | // Done with the update, tell the user about it. |
| 312 | 320 | $context['to_install']['updated'] = true; |
@@ -372,13 +380,15 @@ discard block |
||
| 372 | 380 | $context['to_install']['base_theme_url'] = $temp['theme_url']; |
| 373 | 381 | $context['to_install']['base_theme_dir'] = $temp['theme_dir']; |
| 374 | 382 | |
| 375 | - if (empty($explicit_images) && !empty($context['to_install']['base_theme_url'])) |
|
| 376 | - $context['to_install']['theme_url'] = $context['to_install']['base_theme_url']; |
|
| 383 | + if (empty($explicit_images) && !empty($context['to_install']['base_theme_url'])) { |
|
| 384 | + $context['to_install']['theme_url'] = $context['to_install']['base_theme_url']; |
|
| 385 | + } |
|
| 377 | 386 | } |
| 378 | 387 | |
| 379 | 388 | // Nope, sorry, couldn't find any theme already installed. |
| 380 | - else |
|
| 381 | - fatal_lang_error('package_get_error_theme_no_based_on_found', false, $context['to_install']['based_on']); |
|
| 389 | + else { |
|
| 390 | + fatal_lang_error('package_get_error_theme_no_based_on_found', false, $context['to_install']['based_on']); |
|
| 391 | + } |
|
| 382 | 392 | } |
| 383 | 393 | |
| 384 | 394 | unset($context['to_install']['based_on']); |
@@ -401,16 +411,18 @@ discard block |
||
| 401 | 411 | call_integration_hook('integrate_theme_install', array(&$context['to_install'], $id_theme)); |
| 402 | 412 | |
| 403 | 413 | $inserts = array(); |
| 404 | - foreach ($context['to_install'] as $var => $val) |
|
| 405 | - $inserts[] = array($id_theme, $var, $val); |
|
| 414 | + foreach ($context['to_install'] as $var => $val) { |
|
| 415 | + $inserts[] = array($id_theme, $var, $val); |
|
| 416 | + } |
|
| 406 | 417 | |
| 407 | - if (!empty($inserts)) |
|
| 408 | - $smcFunc['db_insert']('insert', |
|
| 418 | + if (!empty($inserts)) { |
|
| 419 | + $smcFunc['db_insert']('insert', |
|
| 409 | 420 | '{db_prefix}themes', |
| 410 | 421 | array('id_theme' => 'int', 'variable' => 'string-255', 'value' => 'string-65534'), |
| 411 | 422 | $inserts, |
| 412 | 423 | array('id_theme', 'variable') |
| 413 | 424 | ); |
| 425 | + } |
|
| 414 | 426 | |
| 415 | 427 | // Update the known and enable Theme's settings. |
| 416 | 428 | $known = strtr($modSettings['knownThemes'] . ',' . $id_theme, array(',,' => ',')); |
@@ -429,21 +441,24 @@ discard block |
||
| 429 | 441 | */ |
| 430 | 442 | function remove_dir($path) |
| 431 | 443 | { |
| 432 | - if (empty($path)) |
|
| 433 | - return false; |
|
| 444 | + if (empty($path)) { |
|
| 445 | + return false; |
|
| 446 | + } |
|
| 434 | 447 | |
| 435 | 448 | if (is_dir($path)) |
| 436 | 449 | { |
| 437 | 450 | $objects = scandir($path); |
| 438 | 451 | |
| 439 | - foreach ($objects as $object) |
|
| 440 | - if ($object != '.' && $object != '..') |
|
| 452 | + foreach ($objects as $object) { |
|
| 453 | + if ($object != '.' && $object != '..') |
|
| 441 | 454 | { |
| 442 | 455 | if (filetype($path .'/'. $object) == 'dir') |
| 443 | 456 | remove_dir($path .'/'.$object); |
| 457 | + } |
|
| 444 | 458 | |
| 445 | - else |
|
| 446 | - unlink($path .'/'. $object); |
|
| 459 | + else { |
|
| 460 | + unlink($path .'/'. $object); |
|
| 461 | + } |
|
| 447 | 462 | } |
| 448 | 463 | } |
| 449 | 464 | |
@@ -462,8 +477,9 @@ discard block |
||
| 462 | 477 | global $smcFunc, $modSettings; |
| 463 | 478 | |
| 464 | 479 | // Can't delete the default theme, sorry! |
| 465 | - if (empty($themeID) || $themeID == 1) |
|
| 466 | - return false; |
|
| 480 | + if (empty($themeID) || $themeID == 1) { |
|
| 481 | + return false; |
|
| 482 | + } |
|
| 467 | 483 | |
| 468 | 484 | $known = explode(',', $modSettings['knownThemes']); |
| 469 | 485 | $enable = explode(',', $modSettings['enableThemes']); |
@@ -513,8 +529,9 @@ discard block |
||
| 513 | 529 | updateSettings(array('enableThemes' => $enable, 'knownThemes' => $known)); |
| 514 | 530 | |
| 515 | 531 | // Fix it if the theme was the overall default theme. |
| 516 | - if ($modSettings['theme_guests'] == $themeID) |
|
| 517 | - updateSettings(array('theme_guests' => '1')); |
|
| 532 | + if ($modSettings['theme_guests'] == $themeID) { |
|
| 533 | + updateSettings(array('theme_guests' => '1')); |
|
| 534 | + } |
|
| 518 | 535 | |
| 519 | 536 | return true; |
| 520 | 537 | } |
@@ -531,13 +548,15 @@ discard block |
||
| 531 | 548 | global $scripturl, $txt, $context; |
| 532 | 549 | |
| 533 | 550 | // Is it even a directory? |
| 534 | - if (!is_dir($path)) |
|
| 535 | - fatal_lang_error('error_invalid_dir', 'critical'); |
|
| 551 | + if (!is_dir($path)) { |
|
| 552 | + fatal_lang_error('error_invalid_dir', 'critical'); |
|
| 553 | + } |
|
| 536 | 554 | |
| 537 | 555 | $dir = dir($path); |
| 538 | 556 | $entries = array(); |
| 539 | - while ($entry = $dir->read()) |
|
| 540 | - $entries[] = $entry; |
|
| 557 | + while ($entry = $dir->read()) { |
|
| 558 | + $entries[] = $entry; |
|
| 559 | + } |
|
| 541 | 560 | $dir->close(); |
| 542 | 561 | |
| 543 | 562 | natcasesort($entries); |
@@ -548,11 +567,12 @@ discard block |
||
| 548 | 567 | foreach ($entries as $entry) |
| 549 | 568 | { |
| 550 | 569 | // Skip all dot files, including .htaccess. |
| 551 | - if (substr($entry, 0, 1) == '.' || $entry == 'CVS') |
|
| 552 | - continue; |
|
| 570 | + if (substr($entry, 0, 1) == '.' || $entry == 'CVS') { |
|
| 571 | + continue; |
|
| 572 | + } |
|
| 553 | 573 | |
| 554 | - if (is_dir($path . '/' . $entry)) |
|
| 555 | - $listing1[] = array( |
|
| 574 | + if (is_dir($path . '/' . $entry)) { |
|
| 575 | + $listing1[] = array( |
|
| 556 | 576 | 'filename' => $entry, |
| 557 | 577 | 'is_writable' => is_writable($path . '/' . $entry), |
| 558 | 578 | 'is_directory' => true, |
@@ -562,13 +582,14 @@ discard block |
||
| 562 | 582 | 'href' => $scripturl . '?action=admin;area=theme;th=' . $_GET['th'] . ';' . $context['session_var'] . '=' . $context['session_id'] . ';sa=edit;directory=' . $relative . $entry, |
| 563 | 583 | 'size' => '', |
| 564 | 584 | ); |
| 565 | - else |
|
| 585 | + } else |
|
| 566 | 586 | { |
| 567 | 587 | $size = filesize($path . '/' . $entry); |
| 568 | - if ($size > 2048 || $size == 1024) |
|
| 569 | - $size = comma_format($size / 1024) . ' ' . $txt['themeadmin_edit_kilobytes']; |
|
| 570 | - else |
|
| 571 | - $size = comma_format($size) . ' ' . $txt['themeadmin_edit_bytes']; |
|
| 588 | + if ($size > 2048 || $size == 1024) { |
|
| 589 | + $size = comma_format($size / 1024) . ' ' . $txt['themeadmin_edit_kilobytes']; |
|
| 590 | + } else { |
|
| 591 | + $size = comma_format($size) . ' ' . $txt['themeadmin_edit_bytes']; |
|
| 592 | + } |
|
| 572 | 593 | |
| 573 | 594 | $listing2[] = array( |
| 574 | 595 | 'filename' => $entry, |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 3 |
| 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 news dispatcher; doesn't do anything, just delegates. |
@@ -67,8 +68,9 @@ discard block |
||
| 67 | 68 | ); |
| 68 | 69 | |
| 69 | 70 | // Force the right area... |
| 70 | - if (substr($_REQUEST['sa'], 0, 7) == 'mailing') |
|
| 71 | - $context[$context['admin_menu_name']]['current_subsection'] = 'mailingmembers'; |
|
| 71 | + if (substr($_REQUEST['sa'], 0, 7) == 'mailing') { |
|
| 72 | + $context[$context['admin_menu_name']]['current_subsection'] = 'mailingmembers'; |
|
| 73 | + } |
|
| 72 | 74 | |
| 73 | 75 | call_helper($subActions[$_REQUEST['sa']][0]); |
| 74 | 76 | } |
@@ -99,9 +101,10 @@ discard block |
||
| 99 | 101 | $temp_news = explode("\n", $modSettings['news']); |
| 100 | 102 | |
| 101 | 103 | // Remove the items that were selected. |
| 102 | - foreach ($temp_news as $i => $news) |
|
| 103 | - if (in_array($i, $_POST['remove'])) |
|
| 104 | + foreach ($temp_news as $i => $news) { |
|
| 105 | + if (in_array($i, $_POST['remove'])) |
|
| 104 | 106 | unset($temp_news[$i]); |
| 107 | + } |
|
| 105 | 108 | |
| 106 | 109 | // Update the database. |
| 107 | 110 | updateSettings(array('news' => implode("\n", $temp_news))); |
@@ -117,9 +120,9 @@ discard block |
||
| 117 | 120 | |
| 118 | 121 | foreach ($_POST['news'] as $i => $news) |
| 119 | 122 | { |
| 120 | - if (trim($news) == '') |
|
| 121 | - unset($_POST['news'][$i]); |
|
| 122 | - else |
|
| 123 | + if (trim($news) == '') { |
|
| 124 | + unset($_POST['news'][$i]); |
|
| 125 | + } else |
|
| 123 | 126 | { |
| 124 | 127 | $_POST['news'][$i] = $smcFunc['htmlspecialchars']($_POST['news'][$i], ENT_QUOTES); |
| 125 | 128 | preparsecode($_POST['news'][$i]); |
@@ -154,11 +157,12 @@ discard block |
||
| 154 | 157 | 'data' => array( |
| 155 | 158 | 'function' => function ($news) |
| 156 | 159 | { |
| 157 | - if (is_numeric($news['id'])) |
|
| 158 | - return '<textarea id="data_' . $news['id'] . '" rows="3" cols="50" name="news[]" class="padding block">' . $news['unparsed'] . '</textarea> |
|
| 160 | + if (is_numeric($news['id'])) { |
|
| 161 | + return '<textarea id="data_' . $news['id'] . '" rows="3" cols="50" name="news[]" class="padding block">' . $news['unparsed'] . '</textarea> |
|
| 159 | 162 | <div class="floatleft" id="preview_' . $news['id'] . '"></div>'; |
| 160 | - else |
|
| 161 | - return $news['unparsed']; |
|
| 163 | + } else { |
|
| 164 | + return $news['unparsed']; |
|
| 165 | + } |
|
| 162 | 166 | }, |
| 163 | 167 | 'style' => 'width: 50%;', |
| 164 | 168 | ), |
@@ -183,10 +187,11 @@ discard block |
||
| 183 | 187 | 'data' => array( |
| 184 | 188 | 'function' => function ($news) |
| 185 | 189 | { |
| 186 | - if (is_numeric($news['id'])) |
|
| 187 | - return '<input type="checkbox" name="remove[]" value="' . $news['id'] . '" class="input_check">'; |
|
| 188 | - else |
|
| 189 | - return ''; |
|
| 190 | + if (is_numeric($news['id'])) { |
|
| 191 | + return '<input type="checkbox" name="remove[]" value="' . $news['id'] . '" class="input_check">'; |
|
| 192 | + } else { |
|
| 193 | + return ''; |
|
| 194 | + } |
|
| 190 | 195 | }, |
| 191 | 196 | 'class' => 'centercol', |
| 192 | 197 | ), |
@@ -280,12 +285,13 @@ discard block |
||
| 280 | 285 | |
| 281 | 286 | $admin_current_news = array(); |
| 282 | 287 | // Ready the current news. |
| 283 | - foreach (explode("\n", $modSettings['news']) as $id => $line) |
|
| 284 | - $admin_current_news[$id] = array( |
|
| 288 | + foreach (explode("\n", $modSettings['news']) as $id => $line) { |
|
| 289 | + $admin_current_news[$id] = array( |
|
| 285 | 290 | 'id' => $id, |
| 286 | 291 | 'unparsed' => un_preparsecode($line), |
| 287 | 292 | 'parsed' => preg_replace('~<([/]?)form[^>]*?[>]*>~i', '<em class="smalltext"><$1form></em>', parse_bbc($line)), |
| 288 | 293 | ); |
| 294 | + } |
|
| 289 | 295 | |
| 290 | 296 | $admin_current_news['last'] = array( |
| 291 | 297 | 'id' => 'last', |
@@ -352,10 +358,11 @@ discard block |
||
| 352 | 358 | 'member_count' => 0, |
| 353 | 359 | ); |
| 354 | 360 | |
| 355 | - if ($row['min_posts'] == -1) |
|
| 356 | - $normalGroups[$row['id_group']] = $row['id_group']; |
|
| 357 | - else |
|
| 358 | - $postGroups[$row['id_group']] = $row['id_group']; |
|
| 361 | + if ($row['min_posts'] == -1) { |
|
| 362 | + $normalGroups[$row['id_group']] = $row['id_group']; |
|
| 363 | + } else { |
|
| 364 | + $postGroups[$row['id_group']] = $row['id_group']; |
|
| 365 | + } |
|
| 359 | 366 | } |
| 360 | 367 | $smcFunc['db_free_result']($request); |
| 361 | 368 | |
@@ -371,8 +378,9 @@ discard block |
||
| 371 | 378 | 'post_group_list' => $postGroups, |
| 372 | 379 | ) |
| 373 | 380 | ); |
| 374 | - while ($row = $smcFunc['db_fetch_assoc']($query)) |
|
| 375 | - $context['groups'][$row['id_group']]['member_count'] += $row['member_count']; |
|
| 381 | + while ($row = $smcFunc['db_fetch_assoc']($query)) { |
|
| 382 | + $context['groups'][$row['id_group']]['member_count'] += $row['member_count']; |
|
| 383 | + } |
|
| 376 | 384 | $smcFunc['db_free_result']($query); |
| 377 | 385 | } |
| 378 | 386 | |
@@ -388,8 +396,9 @@ discard block |
||
| 388 | 396 | 'normal_group_list' => $normalGroups, |
| 389 | 397 | ) |
| 390 | 398 | ); |
| 391 | - while ($row = $smcFunc['db_fetch_assoc']($query)) |
|
| 392 | - $context['groups'][$row['id_group']]['member_count'] += $row['member_count']; |
|
| 399 | + while ($row = $smcFunc['db_fetch_assoc']($query)) { |
|
| 400 | + $context['groups'][$row['id_group']]['member_count'] += $row['member_count']; |
|
| 401 | + } |
|
| 393 | 402 | $smcFunc['db_free_result']($query); |
| 394 | 403 | |
| 395 | 404 | // Also do those who have it as an additional membergroup - this ones more yucky... |
@@ -406,8 +415,9 @@ discard block |
||
| 406 | 415 | 'blank_string' => '', |
| 407 | 416 | ) |
| 408 | 417 | ); |
| 409 | - while ($row = $smcFunc['db_fetch_assoc']($query)) |
|
| 410 | - $context['groups'][$row['id_group']]['member_count'] += $row['member_count']; |
|
| 418 | + while ($row = $smcFunc['db_fetch_assoc']($query)) { |
|
| 419 | + $context['groups'][$row['id_group']]['member_count'] += $row['member_count']; |
|
| 420 | + } |
|
| 411 | 421 | $smcFunc['db_free_result']($query); |
| 412 | 422 | } |
| 413 | 423 | |
@@ -458,10 +468,11 @@ discard block |
||
| 458 | 468 | { |
| 459 | 469 | $context[$key] = !empty($_REQUEST[$post]) ? $_REQUEST[$post] : ''; |
| 460 | 470 | |
| 461 | - if (empty($context[$key]) && empty($_REQUEST['xml'])) |
|
| 462 | - $context['post_error']['messages'][] = $txt['error_no_' . $post]; |
|
| 463 | - elseif (!empty($_REQUEST['xml'])) |
|
| 464 | - continue; |
|
| 471 | + if (empty($context[$key]) && empty($_REQUEST['xml'])) { |
|
| 472 | + $context['post_error']['messages'][] = $txt['error_no_' . $post]; |
|
| 473 | + } elseif (!empty($_REQUEST['xml'])) { |
|
| 474 | + continue; |
|
| 475 | + } |
|
| 465 | 476 | |
| 466 | 477 | preparsecode($context[$key]); |
| 467 | 478 | if ($html) |
@@ -540,10 +551,12 @@ discard block |
||
| 540 | 551 | |
| 541 | 552 | // Start by finding any members! |
| 542 | 553 | $toClean = array(); |
| 543 | - if (!empty($_POST['members'])) |
|
| 544 | - $toClean[] = 'members'; |
|
| 545 | - if (!empty($_POST['exclude_members'])) |
|
| 546 | - $toClean[] = 'exclude_members'; |
|
| 554 | + if (!empty($_POST['members'])) { |
|
| 555 | + $toClean[] = 'members'; |
|
| 556 | + } |
|
| 557 | + if (!empty($_POST['exclude_members'])) { |
|
| 558 | + $toClean[] = 'exclude_members'; |
|
| 559 | + } |
|
| 547 | 560 | if (!empty($toClean)) |
| 548 | 561 | { |
| 549 | 562 | require_once($sourcedir . '/Subs-Auth.php'); |
@@ -555,11 +568,13 @@ discard block |
||
| 555 | 568 | preg_match_all('~"([^"]+)"~', $_POST[$type], $matches); |
| 556 | 569 | $_POST[$type] = array_unique(array_merge($matches[1], explode(',', preg_replace('~"[^"]+"~', '', $_POST[$type])))); |
| 557 | 570 | |
| 558 | - foreach ($_POST[$type] as $index => $member) |
|
| 559 | - if (strlen(trim($member)) > 0) |
|
| 571 | + foreach ($_POST[$type] as $index => $member) { |
|
| 572 | + if (strlen(trim($member)) > 0) |
|
| 560 | 573 | $_POST[$type][$index] = $smcFunc['htmlspecialchars']($smcFunc['strtolower'](trim($member))); |
| 561 | - else |
|
| 562 | - unset($_POST[$type][$index]); |
|
| 574 | + } |
|
| 575 | + else { |
|
| 576 | + unset($_POST[$type][$index]); |
|
| 577 | + } |
|
| 563 | 578 | |
| 564 | 579 | // Find the members |
| 565 | 580 | $_POST[$type] = implode(',', array_keys(findMembers($_POST[$type]))); |
@@ -569,16 +584,18 @@ discard block |
||
| 569 | 584 | if (isset($_POST['member_list']) && is_array($_POST['member_list'])) |
| 570 | 585 | { |
| 571 | 586 | $members = array(); |
| 572 | - foreach ($_POST['member_list'] as $member_id) |
|
| 573 | - $members[] = (int) $member_id; |
|
| 587 | + foreach ($_POST['member_list'] as $member_id) { |
|
| 588 | + $members[] = (int) $member_id; |
|
| 589 | + } |
|
| 574 | 590 | $_POST['members'] = implode(',', $members); |
| 575 | 591 | } |
| 576 | 592 | |
| 577 | 593 | if (isset($_POST['exclude_member_list']) && is_array($_POST['exclude_member_list'])) |
| 578 | 594 | { |
| 579 | 595 | $members = array(); |
| 580 | - foreach ($_POST['exclude_member_list'] as $member_id) |
|
| 581 | - $members[] = (int) $member_id; |
|
| 596 | + foreach ($_POST['exclude_member_list'] as $member_id) { |
|
| 597 | + $members[] = (int) $member_id; |
|
| 598 | + } |
|
| 582 | 599 | $_POST['exclude_members'] = implode(',', $members); |
| 583 | 600 | } |
| 584 | 601 | |
@@ -602,8 +619,9 @@ discard block |
||
| 602 | 619 | 'current_time' => time(), |
| 603 | 620 | ) |
| 604 | 621 | ); |
| 605 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 606 | - $context['recipients']['exclude_members'][] = $row['id_member']; |
|
| 622 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 623 | + $context['recipients']['exclude_members'][] = $row['id_member']; |
|
| 624 | + } |
|
| 607 | 625 | $smcFunc['db_free_result']($request); |
| 608 | 626 | |
| 609 | 627 | $request = $smcFunc['db_query']('', ' |
@@ -638,8 +656,9 @@ discard block |
||
| 638 | 656 | WHERE email_address IN(' . implode(', ', $condition_array) .')', |
| 639 | 657 | $condition_array_params |
| 640 | 658 | ); |
| 641 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 642 | - $context['recipients']['exclude_members'][] = $row['id_member']; |
|
| 659 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 660 | + $context['recipients']['exclude_members'][] = $row['id_member']; |
|
| 661 | + } |
|
| 643 | 662 | $smcFunc['db_free_result']($request); |
| 644 | 663 | } |
| 645 | 664 | |
@@ -657,10 +676,11 @@ discard block |
||
| 657 | 676 | ); |
| 658 | 677 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 659 | 678 | { |
| 660 | - if (in_array(3, $context['recipients'])) |
|
| 661 | - $context['recipients']['exclude_members'][] = $row['identifier']; |
|
| 662 | - else |
|
| 663 | - $context['recipients']['members'][] = $row['identifier']; |
|
| 679 | + if (in_array(3, $context['recipients'])) { |
|
| 680 | + $context['recipients']['exclude_members'][] = $row['identifier']; |
|
| 681 | + } else { |
|
| 682 | + $context['recipients']['members'][] = $row['identifier']; |
|
| 683 | + } |
|
| 664 | 684 | } |
| 665 | 685 | $smcFunc['db_free_result']($request); |
| 666 | 686 | } |
@@ -707,8 +727,9 @@ discard block |
||
| 707 | 727 | $num_at_once = 1000; |
| 708 | 728 | |
| 709 | 729 | // If by PM's I suggest we half the above number. |
| 710 | - if (!empty($_POST['send_pm'])) |
|
| 711 | - $num_at_once /= 2; |
|
| 730 | + if (!empty($_POST['send_pm'])) { |
|
| 731 | + $num_at_once /= 2; |
|
| 732 | + } |
|
| 712 | 733 | |
| 713 | 734 | checkSession(); |
| 714 | 735 | |
@@ -731,8 +752,7 @@ discard block |
||
| 731 | 752 | ); |
| 732 | 753 | list ($context['total_members']) = $smcFunc['db_fetch_row']($request); |
| 733 | 754 | $smcFunc['db_free_result']($request); |
| 734 | - } |
|
| 735 | - else |
|
| 755 | + } else |
|
| 736 | 756 | { |
| 737 | 757 | $context['total_members'] = (int) $_REQUEST['total_members']; |
| 738 | 758 | } |
@@ -750,32 +770,35 @@ discard block |
||
| 750 | 770 | if (!empty($_POST['exclude_members'])) |
| 751 | 771 | { |
| 752 | 772 | $members = explode(',', $_POST['exclude_members']); |
| 753 | - foreach ($members as $member) |
|
| 754 | - if ($member >= $context['start']) |
|
| 773 | + foreach ($members as $member) { |
|
| 774 | + if ($member >= $context['start']) |
|
| 755 | 775 | $context['recipients']['exclude_members'][] = (int) $member; |
| 776 | + } |
|
| 756 | 777 | } |
| 757 | 778 | |
| 758 | 779 | // What about members we *must* do? |
| 759 | 780 | if (!empty($_POST['members'])) |
| 760 | 781 | { |
| 761 | 782 | $members = explode(',', $_POST['members']); |
| 762 | - foreach ($members as $member) |
|
| 763 | - if ($member >= $context['start']) |
|
| 783 | + foreach ($members as $member) { |
|
| 784 | + if ($member >= $context['start']) |
|
| 764 | 785 | $context['recipients']['members'][] = (int) $member; |
| 786 | + } |
|
| 765 | 787 | } |
| 766 | 788 | // Cleaning groups is simple - although deal with both checkbox and commas. |
| 767 | 789 | if (isset($_POST['groups'])) |
| 768 | 790 | { |
| 769 | 791 | if (is_array($_POST['groups'])) |
| 770 | 792 | { |
| 771 | - foreach ($_POST['groups'] as $group => $dummy) |
|
| 772 | - $context['recipients']['groups'][] = (int) $group; |
|
| 773 | - } |
|
| 774 | - else |
|
| 793 | + foreach ($_POST['groups'] as $group => $dummy) { |
|
| 794 | + $context['recipients']['groups'][] = (int) $group; |
|
| 795 | + } |
|
| 796 | + } else |
|
| 775 | 797 | { |
| 776 | 798 | $groups = explode(',', $_POST['groups']); |
| 777 | - foreach ($groups as $group) |
|
| 778 | - $context['recipients']['groups'][] = (int) $group; |
|
| 799 | + foreach ($groups as $group) { |
|
| 800 | + $context['recipients']['groups'][] = (int) $group; |
|
| 801 | + } |
|
| 779 | 802 | } |
| 780 | 803 | } |
| 781 | 804 | // Same for excluded groups |
@@ -783,14 +806,15 @@ discard block |
||
| 783 | 806 | { |
| 784 | 807 | if (is_array($_POST['exclude_groups'])) |
| 785 | 808 | { |
| 786 | - foreach ($_POST['exclude_groups'] as $group => $dummy) |
|
| 787 | - $context['recipients']['exclude_groups'][] = (int) $group; |
|
| 788 | - } |
|
| 789 | - else |
|
| 809 | + foreach ($_POST['exclude_groups'] as $group => $dummy) { |
|
| 810 | + $context['recipients']['exclude_groups'][] = (int) $group; |
|
| 811 | + } |
|
| 812 | + } else |
|
| 790 | 813 | { |
| 791 | 814 | $groups = explode(',', $_POST['exclude_groups']); |
| 792 | - foreach ($groups as $group) |
|
| 793 | - $context['recipients']['exclude_groups'][] = (int) $group; |
|
| 815 | + foreach ($groups as $group) { |
|
| 816 | + $context['recipients']['exclude_groups'][] = (int) $group; |
|
| 817 | + } |
|
| 794 | 818 | } |
| 795 | 819 | } |
| 796 | 820 | // Finally - emails! |
@@ -800,14 +824,16 @@ discard block |
||
| 800 | 824 | foreach ($addressed as $curmem) |
| 801 | 825 | { |
| 802 | 826 | $curmem = trim($curmem); |
| 803 | - if ($curmem != '' && filter_var($curmem, FILTER_VALIDATE_EMAIL)) |
|
| 804 | - $context['recipients']['emails'][$curmem] = $curmem; |
|
| 827 | + if ($curmem != '' && filter_var($curmem, FILTER_VALIDATE_EMAIL)) { |
|
| 828 | + $context['recipients']['emails'][$curmem] = $curmem; |
|
| 829 | + } |
|
| 805 | 830 | } |
| 806 | 831 | } |
| 807 | 832 | |
| 808 | 833 | // If we're only cleaning drop out here. |
| 809 | - if ($clean_only) |
|
| 810 | - return; |
|
| 834 | + if ($clean_only) { |
|
| 835 | + return; |
|
| 836 | + } |
|
| 811 | 837 | |
| 812 | 838 | require_once($sourcedir . '/Subs-Post.php'); |
| 813 | 839 | |
@@ -823,16 +849,18 @@ discard block |
||
| 823 | 849 | if (!$context['send_pm'] && !empty($_POST['send_html'])) |
| 824 | 850 | { |
| 825 | 851 | // Prepare the message for HTML. |
| 826 | - if (!empty($_POST['parse_html'])) |
|
| 827 | - $_POST['message'] = str_replace(array("\n", ' '), array('<br>' . "\n", ' '), $_POST['message']); |
|
| 852 | + if (!empty($_POST['parse_html'])) { |
|
| 853 | + $_POST['message'] = str_replace(array("\n", ' '), array('<br>' . "\n", ' '), $_POST['message']); |
|
| 854 | + } |
|
| 828 | 855 | |
| 829 | 856 | // This is here to prevent spam filters from tagging this as spam. |
| 830 | 857 | if (preg_match('~\<html~i', $_POST['message']) == 0) |
| 831 | 858 | { |
| 832 | - if (preg_match('~\<body~i', $_POST['message']) == 0) |
|
| 833 | - $_POST['message'] = '<html><head><title>' . $_POST['subject'] . '</title></head>' . "\n" . '<body>' . $_POST['message'] . '</body></html>'; |
|
| 834 | - else |
|
| 835 | - $_POST['message'] = '<html>' . $_POST['message'] . '</html>'; |
|
| 859 | + if (preg_match('~\<body~i', $_POST['message']) == 0) { |
|
| 860 | + $_POST['message'] = '<html><head><title>' . $_POST['subject'] . '</title></head>' . "\n" . '<body>' . $_POST['message'] . '</body></html>'; |
|
| 861 | + } else { |
|
| 862 | + $_POST['message'] = '<html>' . $_POST['message'] . '</html>'; |
|
| 863 | + } |
|
| 836 | 864 | } |
| 837 | 865 | } |
| 838 | 866 | |
@@ -886,15 +914,17 @@ discard block |
||
| 886 | 914 | foreach ($context['recipients']['emails'] as $k => $email) |
| 887 | 915 | { |
| 888 | 916 | // Done as many as we can? |
| 889 | - if ($i >= $num_at_once) |
|
| 890 | - break; |
|
| 917 | + if ($i >= $num_at_once) { |
|
| 918 | + break; |
|
| 919 | + } |
|
| 891 | 920 | |
| 892 | 921 | // Don't sent it twice! |
| 893 | 922 | unset($context['recipients']['emails'][$k]); |
| 894 | 923 | |
| 895 | 924 | // Dammit - can't PM emails! |
| 896 | - if ($context['send_pm']) |
|
| 897 | - continue; |
|
| 925 | + if ($context['send_pm']) { |
|
| 926 | + continue; |
|
| 927 | + } |
|
| 898 | 928 | |
| 899 | 929 | $to_member = array( |
| 900 | 930 | $email, |
@@ -928,8 +958,9 @@ discard block |
||
| 928 | 958 | $queryBuild[] = 'mem.id_post_group = {int:group_' . $group . '}'; |
| 929 | 959 | } |
| 930 | 960 | } |
| 931 | - if (!empty($queryBuild)) |
|
| 932 | - $sendQuery .= implode(' OR ', $queryBuild); |
|
| 961 | + if (!empty($queryBuild)) { |
|
| 962 | + $sendQuery .= implode(' OR ', $queryBuild); |
|
| 963 | + } |
|
| 933 | 964 | } |
| 934 | 965 | if (!empty($context['recipients']['members'])) |
| 935 | 966 | { |
@@ -948,8 +979,9 @@ discard block |
||
| 948 | 979 | } |
| 949 | 980 | |
| 950 | 981 | // Anything to exclude? |
| 951 | - if (!empty($context['recipients']['exclude_groups']) && in_array(0, $context['recipients']['exclude_groups'])) |
|
| 952 | - $sendQuery .= ' AND mem.id_group != {int:regular_group}'; |
|
| 982 | + if (!empty($context['recipients']['exclude_groups']) && in_array(0, $context['recipients']['exclude_groups'])) { |
|
| 983 | + $sendQuery .= ' AND mem.id_group != {int:regular_group}'; |
|
| 984 | + } |
|
| 953 | 985 | if (!empty($context['recipients']['exclude_members'])) |
| 954 | 986 | { |
| 955 | 987 | $sendQuery .= ' AND mem.id_member NOT IN ({array_int:exclude_members})'; |
@@ -985,21 +1017,24 @@ discard block |
||
| 985 | 1017 | foreach ($rows as $row) |
| 986 | 1018 | { |
| 987 | 1019 | // Force them to have it? |
| 988 | - if (empty($context['email_force']) || empty($prefs[$row['id_member']]['announcements'])) |
|
| 989 | - continue; |
|
| 1020 | + if (empty($context['email_force']) || empty($prefs[$row['id_member']]['announcements'])) { |
|
| 1021 | + continue; |
|
| 1022 | + } |
|
| 990 | 1023 | |
| 991 | 1024 | // What groups are we looking at here? |
| 992 | - if (empty($row['additional_groups'])) |
|
| 993 | - $groups = array($row['id_group'], $row['id_post_group']); |
|
| 994 | - else |
|
| 995 | - $groups = array_merge( |
|
| 1025 | + if (empty($row['additional_groups'])) { |
|
| 1026 | + $groups = array($row['id_group'], $row['id_post_group']); |
|
| 1027 | + } else { |
|
| 1028 | + $groups = array_merge( |
|
| 996 | 1029 | array($row['id_group'], $row['id_post_group']), |
| 997 | 1030 | explode(',', $row['additional_groups']) |
| 998 | 1031 | ); |
| 1032 | + } |
|
| 999 | 1033 | |
| 1000 | 1034 | // Excluded groups? |
| 1001 | - if (array_intersect($groups, $context['recipients']['exclude_groups'])) |
|
| 1002 | - continue; |
|
| 1035 | + if (array_intersect($groups, $context['recipients']['exclude_groups'])) { |
|
| 1036 | + continue; |
|
| 1037 | + } |
|
| 1003 | 1038 | |
| 1004 | 1039 | // We might need this |
| 1005 | 1040 | $cleanMemberName = empty($_POST['send_html']) || $context['send_pm'] ? un_htmlspecialchars($row['real_name']) : $row['real_name']; |
@@ -1022,10 +1057,11 @@ discard block |
||
| 1022 | 1057 | ), $_POST['subject']); |
| 1023 | 1058 | |
| 1024 | 1059 | // Send the actual email - or a PM! |
| 1025 | - if (!$context['send_pm']) |
|
| 1026 | - sendmail($row['email_address'], $subject, $message, null, 'news', !empty($_POST['send_html']), 5); |
|
| 1027 | - else |
|
| 1028 | - sendpm(array('to' => array($row['id_member']), 'bcc' => array()), $subject, $message); |
|
| 1060 | + if (!$context['send_pm']) { |
|
| 1061 | + sendmail($row['email_address'], $subject, $message, null, 'news', !empty($_POST['send_html']), 5); |
|
| 1062 | + } else { |
|
| 1063 | + sendpm(array('to' => array($row['id_member']), 'bcc' => array()), $subject, $message); |
|
| 1064 | + } |
|
| 1029 | 1065 | } |
| 1030 | 1066 | } |
| 1031 | 1067 | |
@@ -1074,8 +1110,9 @@ discard block |
||
| 1074 | 1110 | |
| 1075 | 1111 | call_integration_hook('integrate_modify_news_settings', array(&$config_vars)); |
| 1076 | 1112 | |
| 1077 | - if ($return_config) |
|
| 1078 | - return $config_vars; |
|
| 1113 | + if ($return_config) { |
|
| 1114 | + return $config_vars; |
|
| 1115 | + } |
|
| 1079 | 1116 | |
| 1080 | 1117 | $context['page_title'] = $txt['admin_edit_news'] . ' - ' . $txt['settings']; |
| 1081 | 1118 | $context['sub_template'] = 'show_settings'; |
@@ -11,8 +11,9 @@ discard block |
||
| 11 | 11 | * @version 2.1 Beta 3 |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -if (!defined('SMF')) |
|
| 14 | +if (!defined('SMF')) { |
|
| 15 | 15 | die('No direct access...'); |
| 16 | +} |
|
| 16 | 17 | |
| 17 | 18 | /** |
| 18 | 19 | * Converts the given UTF-8 string into lowercase. |
@@ -569,8 +570,8 @@ discard block |
||
| 569 | 570 | ); |
| 570 | 571 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 571 | 572 | { |
| 572 | - if (safe_unserialize($row['extra']) === false && preg_match('~^(a:3:{s:5:"topic";i:\d+;s:7:"subject";s:)(\d+):"(.+)"(;s:6:"member";s:5:"\d+";})$~', $row['extra'], $matches) === 1) |
|
| 573 | - $smcFunc['db_query']('', ' |
|
| 573 | + if (safe_unserialize($row['extra']) === false && preg_match('~^(a:3:{s:5:"topic";i:\d+;s:7:"subject";s:)(\d+):"(.+)"(;s:6:"member";s:5:"\d+";})$~', $row['extra'], $matches) === 1) { |
|
| 574 | + $smcFunc['db_query']('', ' |
|
| 574 | 575 | UPDATE {db_prefix}log_actions |
| 575 | 576 | SET extra = {string:extra} |
| 576 | 577 | WHERE id_action = {int:current_action}', |
@@ -579,6 +580,7 @@ discard block |
||
| 579 | 580 | 'extra' => $matches[1] . strlen($matches[3]) . ':"' . $matches[3] . '"' . $matches[4], |
| 580 | 581 | ) |
| 581 | 582 | ); |
| 583 | + } |
|
| 582 | 584 | } |
| 583 | 585 | $smcFunc['db_free_result']($request); |
| 584 | 586 | |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 3 |
| 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 | * Delete one or more members. |
@@ -43,30 +44,32 @@ discard block |
||
| 43 | 44 | setMemoryLimit('128M'); |
| 44 | 45 | |
| 45 | 46 | // If it's not an array, make it so! |
| 46 | - if (!is_array($users)) |
|
| 47 | - $users = array($users); |
|
| 48 | - else |
|
| 49 | - $users = array_unique($users); |
|
| 47 | + if (!is_array($users)) { |
|
| 48 | + $users = array($users); |
|
| 49 | + } else { |
|
| 50 | + $users = array_unique($users); |
|
| 51 | + } |
|
| 50 | 52 | |
| 51 | 53 | // Make sure there's no void user in here. |
| 52 | 54 | $users = array_diff($users, array(0)); |
| 53 | 55 | |
| 54 | 56 | // How many are they deleting? |
| 55 | - if (empty($users)) |
|
| 56 | - return; |
|
| 57 | - elseif (count($users) == 1) |
|
| 57 | + if (empty($users)) { |
|
| 58 | + return; |
|
| 59 | + } elseif (count($users) == 1) |
|
| 58 | 60 | { |
| 59 | 61 | list ($user) = $users; |
| 60 | 62 | |
| 61 | - if ($user == $user_info['id']) |
|
| 62 | - isAllowedTo('profile_remove_own'); |
|
| 63 | - else |
|
| 64 | - isAllowedTo('profile_remove_any'); |
|
| 65 | - } |
|
| 66 | - else |
|
| 63 | + if ($user == $user_info['id']) { |
|
| 64 | + isAllowedTo('profile_remove_own'); |
|
| 65 | + } else { |
|
| 66 | + isAllowedTo('profile_remove_any'); |
|
| 67 | + } |
|
| 68 | + } else |
|
| 67 | 69 | { |
| 68 | - foreach ($users as $k => $v) |
|
| 69 | - $users[$k] = (int) $v; |
|
| 70 | + foreach ($users as $k => $v) { |
|
| 71 | + $users[$k] = (int) $v; |
|
| 72 | + } |
|
| 70 | 73 | |
| 71 | 74 | // Deleting more than one? You can't have more than one account... |
| 72 | 75 | isAllowedTo('profile_remove_any'); |
@@ -88,26 +91,30 @@ discard block |
||
| 88 | 91 | $user_log_details = array(); |
| 89 | 92 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 90 | 93 | { |
| 91 | - if ($row['is_admin']) |
|
| 92 | - $admins[] = $row['id_member']; |
|
| 94 | + if ($row['is_admin']) { |
|
| 95 | + $admins[] = $row['id_member']; |
|
| 96 | + } |
|
| 93 | 97 | $user_log_details[$row['id_member']] = array($row['id_member'], $row['member_name']); |
| 94 | 98 | } |
| 95 | 99 | $smcFunc['db_free_result']($request); |
| 96 | 100 | |
| 97 | - if (empty($user_log_details)) |
|
| 98 | - return; |
|
| 101 | + if (empty($user_log_details)) { |
|
| 102 | + return; |
|
| 103 | + } |
|
| 99 | 104 | |
| 100 | 105 | // Make sure they aren't trying to delete administrators if they aren't one. But don't bother checking if it's just themself. |
| 101 | 106 | if (!empty($admins) && ($check_not_admin || (!allowedTo('admin_forum') && (count($users) != 1 || $users[0] != $user_info['id'])))) |
| 102 | 107 | { |
| 103 | 108 | $users = array_diff($users, $admins); |
| 104 | - foreach ($admins as $id) |
|
| 105 | - unset($user_log_details[$id]); |
|
| 109 | + foreach ($admins as $id) { |
|
| 110 | + unset($user_log_details[$id]); |
|
| 111 | + } |
|
| 106 | 112 | } |
| 107 | 113 | |
| 108 | 114 | // No one left? |
| 109 | - if (empty($users)) |
|
| 110 | - return; |
|
| 115 | + if (empty($users)) { |
|
| 116 | + return; |
|
| 117 | + } |
|
| 111 | 118 | |
| 112 | 119 | // Log the action - regardless of who is deleting it. |
| 113 | 120 | $log_changes = array(); |
@@ -124,8 +131,9 @@ discard block |
||
| 124 | 131 | ); |
| 125 | 132 | |
| 126 | 133 | // Remove any cached data if enabled. |
| 127 | - if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2) |
|
| 128 | - cache_put_data('user_settings-' . $user[0], null, 60); |
|
| 134 | + if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2) { |
|
| 135 | + cache_put_data('user_settings-' . $user[0], null, 60); |
|
| 136 | + } |
|
| 129 | 137 | } |
| 130 | 138 | |
| 131 | 139 | // Make these peoples' posts guest posts. |
@@ -388,8 +396,8 @@ discard block |
||
| 388 | 396 | 'buddy_list' => implode(', buddy_list) != 0 OR FIND_IN_SET(', $users), |
| 389 | 397 | ) |
| 390 | 398 | ); |
| 391 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 392 | - $smcFunc['db_query']('', ' |
|
| 399 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 400 | + $smcFunc['db_query']('', ' |
|
| 393 | 401 | UPDATE {db_prefix}members |
| 394 | 402 | SET |
| 395 | 403 | pm_ignore_list = {string:pm_ignore_list}, |
@@ -401,6 +409,7 @@ discard block |
||
| 401 | 409 | 'buddy_list' => implode(',', array_diff(explode(',', $row['buddy_list']), $users)), |
| 402 | 410 | ) |
| 403 | 411 | ); |
| 412 | + } |
|
| 404 | 413 | $smcFunc['db_free_result']($request); |
| 405 | 414 | |
| 406 | 415 | // Make sure no member's birthday is still sticking in the calendar... |
@@ -455,29 +464,34 @@ discard block |
||
| 455 | 464 | elseif ($regOptions['interface'] == 'guest') |
| 456 | 465 | { |
| 457 | 466 | // You cannot register twice... |
| 458 | - if (empty($user_info['is_guest'])) |
|
| 459 | - redirectexit(); |
|
| 467 | + if (empty($user_info['is_guest'])) { |
|
| 468 | + redirectexit(); |
|
| 469 | + } |
|
| 460 | 470 | |
| 461 | 471 | // Make sure they didn't just register with this session. |
| 462 | - if (!empty($_SESSION['just_registered']) && empty($modSettings['disableRegisterCheck'])) |
|
| 463 | - fatal_lang_error('register_only_once', false); |
|
| 472 | + if (!empty($_SESSION['just_registered']) && empty($modSettings['disableRegisterCheck'])) { |
|
| 473 | + fatal_lang_error('register_only_once', false); |
|
| 474 | + } |
|
| 464 | 475 | } |
| 465 | 476 | |
| 466 | 477 | // Spaces and other odd characters are evil... |
| 467 | 478 | $regOptions['username'] = trim(preg_replace('~[\t\n\r \x0B\0' . ($context['utf8'] ? '\x{A0}\x{AD}\x{2000}-\x{200F}\x{201F}\x{202F}\x{3000}\x{FEFF}' : '\x00-\x08\x0B\x0C\x0E-\x19\xA0') . ']+~' . ($context['utf8'] ? 'u' : ''), ' ', $regOptions['username'])); |
| 468 | 479 | |
| 469 | 480 | // @todo Separate the sprintf? |
| 470 | - if (empty($regOptions['email']) || !filter_var($regOptions['email'], FILTER_VALIDATE_EMAIL) || strlen($regOptions['email']) > 255) |
|
| 471 | - $reg_errors[] = array('lang', 'profile_error_bad_email'); |
|
| 481 | + if (empty($regOptions['email']) || !filter_var($regOptions['email'], FILTER_VALIDATE_EMAIL) || strlen($regOptions['email']) > 255) { |
|
| 482 | + $reg_errors[] = array('lang', 'profile_error_bad_email'); |
|
| 483 | + } |
|
| 472 | 484 | |
| 473 | 485 | $username_validation_errors = validateUsername(0, $regOptions['username'], true, !empty($regOptions['check_reserved_name'])); |
| 474 | - if (!empty($username_validation_errors)) |
|
| 475 | - $reg_errors = array_merge($reg_errors, $username_validation_errors); |
|
| 486 | + if (!empty($username_validation_errors)) { |
|
| 487 | + $reg_errors = array_merge($reg_errors, $username_validation_errors); |
|
| 488 | + } |
|
| 476 | 489 | |
| 477 | 490 | // Generate a validation code if it's supposed to be emailed. |
| 478 | 491 | $validation_code = ''; |
| 479 | - if ($regOptions['require'] == 'activation') |
|
| 480 | - $validation_code = generateValidationCode(); |
|
| 492 | + if ($regOptions['require'] == 'activation') { |
|
| 493 | + $validation_code = generateValidationCode(); |
|
| 494 | + } |
|
| 481 | 495 | |
| 482 | 496 | // If you haven't put in a password generate one. |
| 483 | 497 | if ($regOptions['interface'] == 'admin' && $regOptions['password'] == '') |
@@ -487,8 +501,9 @@ discard block |
||
| 487 | 501 | $regOptions['password_check'] = $regOptions['password']; |
| 488 | 502 | } |
| 489 | 503 | // Does the first password match the second? |
| 490 | - elseif ($regOptions['password'] != $regOptions['password_check']) |
|
| 491 | - $reg_errors[] = array('lang', 'passwords_dont_match'); |
|
| 504 | + elseif ($regOptions['password'] != $regOptions['password_check']) { |
|
| 505 | + $reg_errors[] = array('lang', 'passwords_dont_match'); |
|
| 506 | + } |
|
| 492 | 507 | |
| 493 | 508 | // That's kind of easy to guess... |
| 494 | 509 | if ($regOptions['password'] == '') |
@@ -502,13 +517,15 @@ discard block |
||
| 502 | 517 | $passwordError = validatePassword($regOptions['password'], $regOptions['username'], array($regOptions['email'])); |
| 503 | 518 | |
| 504 | 519 | // Password isn't legal? |
| 505 | - if ($passwordError != null) |
|
| 506 | - $reg_errors[] = array('lang', 'profile_error_password_' . $passwordError); |
|
| 520 | + if ($passwordError != null) { |
|
| 521 | + $reg_errors[] = array('lang', 'profile_error_password_' . $passwordError); |
|
| 522 | + } |
|
| 507 | 523 | } |
| 508 | 524 | |
| 509 | 525 | // You may not be allowed to register this email. |
| 510 | - if (!empty($regOptions['check_email_ban'])) |
|
| 511 | - isBannedEmail($regOptions['email'], 'cannot_register', $txt['ban_register_prohibited']); |
|
| 526 | + if (!empty($regOptions['check_email_ban'])) { |
|
| 527 | + isBannedEmail($regOptions['email'], 'cannot_register', $txt['ban_register_prohibited']); |
|
| 528 | + } |
|
| 512 | 529 | |
| 513 | 530 | // Check if the email address is in use. |
| 514 | 531 | $request = $smcFunc['db_query']('', ' |
@@ -523,8 +540,9 @@ discard block |
||
| 523 | 540 | ) |
| 524 | 541 | ); |
| 525 | 542 | // @todo Separate the sprintf? |
| 526 | - if ($smcFunc['db_num_rows']($request) != 0) |
|
| 527 | - $reg_errors[] = array('lang', 'email_in_use', false, array($smcFunc['htmlspecialchars']($regOptions['email']))); |
|
| 543 | + if ($smcFunc['db_num_rows']($request) != 0) { |
|
| 544 | + $reg_errors[] = array('lang', 'email_in_use', false, array($smcFunc['htmlspecialchars']($regOptions['email']))); |
|
| 545 | + } |
|
| 528 | 546 | |
| 529 | 547 | $smcFunc['db_free_result']($request); |
| 530 | 548 | |
@@ -539,24 +557,27 @@ discard block |
||
| 539 | 557 | 1 = The text/index. |
| 540 | 558 | 2 = Whether to log. |
| 541 | 559 | 3 = sprintf data if necessary. */ |
| 542 | - if ($error[0] == 'lang') |
|
| 543 | - loadLanguage('Errors'); |
|
| 560 | + if ($error[0] == 'lang') { |
|
| 561 | + loadLanguage('Errors'); |
|
| 562 | + } |
|
| 544 | 563 | $message = $error[0] == 'lang' ? (empty($error[3]) ? $txt[$error[1]] : vsprintf($txt[$error[1]], $error[3])) : $error[1]; |
| 545 | 564 | |
| 546 | 565 | // What to do, what to do, what to do. |
| 547 | 566 | if ($return_errors) |
| 548 | 567 | { |
| 549 | - if (!empty($error[2])) |
|
| 550 | - log_error($message, $error[2]); |
|
| 568 | + if (!empty($error[2])) { |
|
| 569 | + log_error($message, $error[2]); |
|
| 570 | + } |
|
| 551 | 571 | $reg_errors[$key] = $message; |
| 572 | + } else { |
|
| 573 | + fatal_error($message, empty($error[2]) ? false : $error[2]); |
|
| 552 | 574 | } |
| 553 | - else |
|
| 554 | - fatal_error($message, empty($error[2]) ? false : $error[2]); |
|
| 555 | 575 | } |
| 556 | 576 | |
| 557 | 577 | // If there's any errors left return them at once! |
| 558 | - if (!empty($reg_errors)) |
|
| 559 | - return $reg_errors; |
|
| 578 | + if (!empty($reg_errors)) { |
|
| 579 | + return $reg_errors; |
|
| 580 | + } |
|
| 560 | 581 | |
| 561 | 582 | $reservedVars = array( |
| 562 | 583 | 'actual_theme_url', |
@@ -578,8 +599,9 @@ discard block |
||
| 578 | 599 | ); |
| 579 | 600 | |
| 580 | 601 | // Can't change reserved vars. |
| 581 | - if (isset($regOptions['theme_vars']) && count(array_intersect(array_keys($regOptions['theme_vars']), $reservedVars)) != 0) |
|
| 582 | - fatal_lang_error('no_theme'); |
|
| 602 | + if (isset($regOptions['theme_vars']) && count(array_intersect(array_keys($regOptions['theme_vars']), $reservedVars)) != 0) { |
|
| 603 | + fatal_lang_error('no_theme'); |
|
| 604 | + } |
|
| 583 | 605 | |
| 584 | 606 | // Some of these might be overwritten. (the lower ones that are in the arrays below.) |
| 585 | 607 | $regOptions['register_vars'] = array( |
@@ -621,14 +643,17 @@ discard block |
||
| 621 | 643 | $regOptions['register_vars']['validation_code'] = ''; |
| 622 | 644 | } |
| 623 | 645 | // Maybe it can be activated right away? |
| 624 | - elseif ($regOptions['require'] == 'nothing') |
|
| 625 | - $regOptions['register_vars']['is_activated'] = 1; |
|
| 646 | + elseif ($regOptions['require'] == 'nothing') { |
|
| 647 | + $regOptions['register_vars']['is_activated'] = 1; |
|
| 648 | + } |
|
| 626 | 649 | // Maybe it must be activated by email? |
| 627 | - elseif ($regOptions['require'] == 'activation') |
|
| 628 | - $regOptions['register_vars']['is_activated'] = 0; |
|
| 650 | + elseif ($regOptions['require'] == 'activation') { |
|
| 651 | + $regOptions['register_vars']['is_activated'] = 0; |
|
| 652 | + } |
|
| 629 | 653 | // Otherwise it must be awaiting approval! |
| 630 | - else |
|
| 631 | - $regOptions['register_vars']['is_activated'] = 3; |
|
| 654 | + else { |
|
| 655 | + $regOptions['register_vars']['is_activated'] = 3; |
|
| 656 | + } |
|
| 632 | 657 | |
| 633 | 658 | if (isset($regOptions['memberGroup'])) |
| 634 | 659 | { |
@@ -647,24 +672,28 @@ discard block |
||
| 647 | 672 | 'is_protected' => 1, |
| 648 | 673 | ) |
| 649 | 674 | ); |
| 650 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 651 | - $unassignableGroups[] = $row['id_group']; |
|
| 675 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 676 | + $unassignableGroups[] = $row['id_group']; |
|
| 677 | + } |
|
| 652 | 678 | $smcFunc['db_free_result']($request); |
| 653 | 679 | |
| 654 | - if (in_array($regOptions['register_vars']['id_group'], $unassignableGroups)) |
|
| 655 | - $regOptions['register_vars']['id_group'] = 0; |
|
| 680 | + if (in_array($regOptions['register_vars']['id_group'], $unassignableGroups)) { |
|
| 681 | + $regOptions['register_vars']['id_group'] = 0; |
|
| 682 | + } |
|
| 656 | 683 | } |
| 657 | 684 | |
| 658 | 685 | // Integrate optional member settings to be set. |
| 659 | - if (!empty($regOptions['extra_register_vars'])) |
|
| 660 | - foreach ($regOptions['extra_register_vars'] as $var => $value) |
|
| 686 | + if (!empty($regOptions['extra_register_vars'])) { |
|
| 687 | + foreach ($regOptions['extra_register_vars'] as $var => $value) |
|
| 661 | 688 | $regOptions['register_vars'][$var] = $value; |
| 689 | + } |
|
| 662 | 690 | |
| 663 | 691 | // Integrate optional user theme options to be set. |
| 664 | 692 | $theme_vars = array(); |
| 665 | - if (!empty($regOptions['theme_vars'])) |
|
| 666 | - foreach ($regOptions['theme_vars'] as $var => $value) |
|
| 693 | + if (!empty($regOptions['theme_vars'])) { |
|
| 694 | + foreach ($regOptions['theme_vars'] as $var => $value) |
|
| 667 | 695 | $theme_vars[$var] = $value; |
| 696 | + } |
|
| 668 | 697 | |
| 669 | 698 | // Right, now let's prepare for insertion. |
| 670 | 699 | $knownInts = array( |
@@ -687,14 +716,15 @@ discard block |
||
| 687 | 716 | foreach ($regOptions['register_vars'] as $var => $val) |
| 688 | 717 | { |
| 689 | 718 | $type = 'string'; |
| 690 | - if (in_array($var, $knownInts)) |
|
| 691 | - $type = 'int'; |
|
| 692 | - elseif (in_array($var, $knownFloats)) |
|
| 693 | - $type = 'float'; |
|
| 694 | - elseif (in_array($var, $knownInets)) |
|
| 695 | - $type = 'inet'; |
|
| 696 | - elseif ($var == 'birthdate') |
|
| 697 | - $type = 'date'; |
|
| 719 | + if (in_array($var, $knownInts)) { |
|
| 720 | + $type = 'int'; |
|
| 721 | + } elseif (in_array($var, $knownFloats)) { |
|
| 722 | + $type = 'float'; |
|
| 723 | + } elseif (in_array($var, $knownInets)) { |
|
| 724 | + $type = 'inet'; |
|
| 725 | + } elseif ($var == 'birthdate') { |
|
| 726 | + $type = 'date'; |
|
| 727 | + } |
|
| 698 | 728 | |
| 699 | 729 | $column_names[$var] = $type; |
| 700 | 730 | $values[$var] = $val; |
@@ -713,17 +743,19 @@ discard block |
||
| 713 | 743 | call_integration_hook('integrate_post_register', array(&$regOptions, &$theme_vars, &$memberID)); |
| 714 | 744 | |
| 715 | 745 | // Update the number of members and latest member's info - and pass the name, but remove the 's. |
| 716 | - if ($regOptions['register_vars']['is_activated'] == 1) |
|
| 717 | - updateStats('member', $memberID, $regOptions['register_vars']['real_name']); |
|
| 718 | - else |
|
| 719 | - updateStats('member'); |
|
| 746 | + if ($regOptions['register_vars']['is_activated'] == 1) { |
|
| 747 | + updateStats('member', $memberID, $regOptions['register_vars']['real_name']); |
|
| 748 | + } else { |
|
| 749 | + updateStats('member'); |
|
| 750 | + } |
|
| 720 | 751 | |
| 721 | 752 | // Theme variables too? |
| 722 | 753 | if (!empty($theme_vars)) |
| 723 | 754 | { |
| 724 | 755 | $inserts = array(); |
| 725 | - foreach ($theme_vars as $var => $val) |
|
| 726 | - $inserts[] = array($memberID, $var, $val); |
|
| 756 | + foreach ($theme_vars as $var => $val) { |
|
| 757 | + $inserts[] = array($memberID, $var, $val); |
|
| 758 | + } |
|
| 727 | 759 | $smcFunc['db_insert']('insert', |
| 728 | 760 | '{db_prefix}themes', |
| 729 | 761 | array('id_member' => 'int', 'variable' => 'string-255', 'value' => 'string-65534'), |
@@ -738,10 +770,11 @@ discard block |
||
| 738 | 770 | // Administrative registrations are a bit different... |
| 739 | 771 | if ($regOptions['interface'] == 'admin') |
| 740 | 772 | { |
| 741 | - if ($regOptions['require'] == 'activation') |
|
| 742 | - $email_message = 'admin_register_activate'; |
|
| 743 | - elseif (!empty($regOptions['send_welcome_email'])) |
|
| 744 | - $email_message = 'admin_register_immediate'; |
|
| 773 | + if ($regOptions['require'] == 'activation') { |
|
| 774 | + $email_message = 'admin_register_activate'; |
|
| 775 | + } elseif (!empty($regOptions['send_welcome_email'])) { |
|
| 776 | + $email_message = 'admin_register_immediate'; |
|
| 777 | + } |
|
| 745 | 778 | |
| 746 | 779 | if (isset($email_message)) |
| 747 | 780 | { |
@@ -792,16 +825,17 @@ discard block |
||
| 792 | 825 | 'FORGOTPASSWORDLINK' => $scripturl . '?action=reminder', |
| 793 | 826 | ); |
| 794 | 827 | |
| 795 | - if ($regOptions['require'] == 'activation') |
|
| 796 | - $replacements += array( |
|
| 828 | + if ($regOptions['require'] == 'activation') { |
|
| 829 | + $replacements += array( |
|
| 797 | 830 | 'ACTIVATIONLINK' => $scripturl . '?action=activate;u=' . $memberID . ';code=' . $validation_code, |
| 798 | 831 | 'ACTIVATIONLINKWITHOUTCODE' => $scripturl . '?action=activate;u=' . $memberID, |
| 799 | 832 | 'ACTIVATIONCODE' => $validation_code, |
| 800 | 833 | ); |
| 801 | - else |
|
| 802 | - $replacements += array( |
|
| 834 | + } else { |
|
| 835 | + $replacements += array( |
|
| 803 | 836 | 'COPPALINK' => $scripturl . '?action=coppa;u=' . $memberID, |
| 804 | 837 | ); |
| 838 | + } |
|
| 805 | 839 | |
| 806 | 840 | $emaildata = loadEmailTemplate('register_' . ($regOptions['require'] == 'activation' ? 'activate' : 'coppa'), $replacements); |
| 807 | 841 | |
@@ -866,39 +900,45 @@ discard block |
||
| 866 | 900 | // Check each name in the list... |
| 867 | 901 | foreach ($reservedNames as $reserved) |
| 868 | 902 | { |
| 869 | - if ($reserved == '') |
|
| 870 | - continue; |
|
| 903 | + if ($reserved == '') { |
|
| 904 | + continue; |
|
| 905 | + } |
|
| 871 | 906 | |
| 872 | 907 | // The admin might've used entities too, level the playing field. |
| 873 | 908 | $reservedCheck = preg_replace('~(&#(\d{1,7}|x[0-9a-fA-F]{1,6});)~', 'replaceEntities__callback', $reserved); |
| 874 | 909 | |
| 875 | 910 | // Case sensitive name? |
| 876 | - if (empty($modSettings['reserveCase'])) |
|
| 877 | - $reservedCheck = $smcFunc['strtolower']($reservedCheck); |
|
| 911 | + if (empty($modSettings['reserveCase'])) { |
|
| 912 | + $reservedCheck = $smcFunc['strtolower']($reservedCheck); |
|
| 913 | + } |
|
| 878 | 914 | |
| 879 | 915 | // If it's not just entire word, check for it in there somewhere... |
| 880 | - if ($checkMe == $reservedCheck || ($smcFunc['strpos']($checkMe, $reservedCheck) !== false && empty($modSettings['reserveWord']))) |
|
| 881 | - if ($fatal) |
|
| 916 | + if ($checkMe == $reservedCheck || ($smcFunc['strpos']($checkMe, $reservedCheck) !== false && empty($modSettings['reserveWord']))) { |
|
| 917 | + if ($fatal) |
|
| 882 | 918 | fatal_lang_error('username_reserved', 'password', array($reserved)); |
| 883 | - else |
|
| 884 | - return true; |
|
| 919 | + } else { |
|
| 920 | + return true; |
|
| 921 | + } |
|
| 885 | 922 | } |
| 886 | 923 | |
| 887 | 924 | $censor_name = $name; |
| 888 | - if (censorText($censor_name) != $name) |
|
| 889 | - if ($fatal) |
|
| 925 | + if (censorText($censor_name) != $name) { |
|
| 926 | + if ($fatal) |
|
| 890 | 927 | fatal_lang_error('name_censored', 'password', array($name)); |
| 891 | - else |
|
| 892 | - return true; |
|
| 928 | + } else { |
|
| 929 | + return true; |
|
| 930 | + } |
|
| 893 | 931 | } |
| 894 | 932 | |
| 895 | 933 | // Characters we just shouldn't allow, regardless. |
| 896 | - foreach (array('*') as $char) |
|
| 897 | - if (strpos($checkName, $char) !== false) |
|
| 934 | + foreach (array('*') as $char) { |
|
| 935 | + if (strpos($checkName, $char) !== false) |
|
| 898 | 936 | if ($fatal) |
| 899 | 937 | fatal_lang_error('username_reserved', 'password', array($char)); |
| 900 | - else |
|
| 901 | - return true; |
|
| 938 | + } |
|
| 939 | + else { |
|
| 940 | + return true; |
|
| 941 | + } |
|
| 902 | 942 | |
| 903 | 943 | // Get rid of any SQL parts of the reserved name... |
| 904 | 944 | $checkName = strtr($name, array('_' => '\\_', '%' => '\\%')); |
@@ -980,8 +1020,9 @@ discard block |
||
| 980 | 1020 | 'permission' => $permission, |
| 981 | 1021 | ) |
| 982 | 1022 | ); |
| 983 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 984 | - $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group']; |
|
| 1023 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1024 | + $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group']; |
|
| 1025 | + } |
|
| 985 | 1026 | $smcFunc['db_free_result']($request); |
| 986 | 1027 | } |
| 987 | 1028 | |
@@ -989,9 +1030,9 @@ discard block |
||
| 989 | 1030 | else |
| 990 | 1031 | { |
| 991 | 1032 | // First get the profile of the given board. |
| 992 | - if (isset($board_info['id']) && $board_info['id'] == $board_id) |
|
| 993 | - $profile_id = $board_info['profile']; |
|
| 994 | - elseif ($board_id !== 0) |
|
| 1033 | + if (isset($board_info['id']) && $board_info['id'] == $board_id) { |
|
| 1034 | + $profile_id = $board_info['profile']; |
|
| 1035 | + } elseif ($board_id !== 0) |
|
| 995 | 1036 | { |
| 996 | 1037 | $request = $smcFunc['db_query']('', ' |
| 997 | 1038 | SELECT id_profile |
@@ -1002,13 +1043,14 @@ discard block |
||
| 1002 | 1043 | 'id_board' => $board_id, |
| 1003 | 1044 | ) |
| 1004 | 1045 | ); |
| 1005 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
| 1006 | - fatal_lang_error('no_board'); |
|
| 1046 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
| 1047 | + fatal_lang_error('no_board'); |
|
| 1048 | + } |
|
| 1007 | 1049 | list ($profile_id) = $smcFunc['db_fetch_row']($request); |
| 1008 | 1050 | $smcFunc['db_free_result']($request); |
| 1051 | + } else { |
|
| 1052 | + $profile_id = 1; |
|
| 1009 | 1053 | } |
| 1010 | - else |
|
| 1011 | - $profile_id = 1; |
|
| 1012 | 1054 | |
| 1013 | 1055 | $request = $smcFunc['db_query']('', ' |
| 1014 | 1056 | SELECT bp.id_group, bp.add_deny |
@@ -1020,8 +1062,9 @@ discard block |
||
| 1020 | 1062 | 'permission' => $permission, |
| 1021 | 1063 | ) |
| 1022 | 1064 | ); |
| 1023 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1024 | - $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group']; |
|
| 1065 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1066 | + $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group']; |
|
| 1067 | + } |
|
| 1025 | 1068 | $smcFunc['db_free_result']($request); |
| 1026 | 1069 | |
| 1027 | 1070 | $moderator_groups = array(); |
@@ -1030,8 +1073,7 @@ discard block |
||
| 1030 | 1073 | if (isset($board_info['moderator_groups'])) |
| 1031 | 1074 | { |
| 1032 | 1075 | $moderator_groups = array_keys($board_info['moderator_groups']); |
| 1033 | - } |
|
| 1034 | - elseif ($board_id !== 0) |
|
| 1076 | + } elseif ($board_id !== 0) |
|
| 1035 | 1077 | { |
| 1036 | 1078 | // Get the groups that can moderate this board |
| 1037 | 1079 | $request = $smcFunc['db_query']('', ' |
@@ -1116,8 +1158,9 @@ discard block |
||
| 1116 | 1158 | ) |
| 1117 | 1159 | ); |
| 1118 | 1160 | $members = array(); |
| 1119 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1120 | - $members[] = $row['id_member']; |
|
| 1161 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1162 | + $members[] = $row['id_member']; |
|
| 1163 | + } |
|
| 1121 | 1164 | $smcFunc['db_free_result']($request); |
| 1122 | 1165 | |
| 1123 | 1166 | return $members; |
@@ -1190,10 +1233,12 @@ discard block |
||
| 1190 | 1233 | } |
| 1191 | 1234 | |
| 1192 | 1235 | $query_parts = array(); |
| 1193 | - if (!empty($email)) |
|
| 1194 | - $query_parts[] = 'poster_email = {string:email_address}'; |
|
| 1195 | - if (!empty($membername)) |
|
| 1196 | - $query_parts[] = 'poster_name = {string:member_name}'; |
|
| 1236 | + if (!empty($email)) { |
|
| 1237 | + $query_parts[] = 'poster_email = {string:email_address}'; |
|
| 1238 | + } |
|
| 1239 | + if (!empty($membername)) { |
|
| 1240 | + $query_parts[] = 'poster_name = {string:member_name}'; |
|
| 1241 | + } |
|
| 1197 | 1242 | $query = implode(' AND ', $query_parts); |
| 1198 | 1243 | |
| 1199 | 1244 | // Finally, update the posts themselves! |
@@ -1260,12 +1305,14 @@ discard block |
||
| 1260 | 1305 | |
| 1261 | 1306 | $userReceiver = (int) !empty($_REQUEST['u']) ? $_REQUEST['u'] : 0; |
| 1262 | 1307 | |
| 1263 | - if (empty($userReceiver)) |
|
| 1264 | - fatal_lang_error('no_access', false); |
|
| 1308 | + if (empty($userReceiver)) { |
|
| 1309 | + fatal_lang_error('no_access', false); |
|
| 1310 | + } |
|
| 1265 | 1311 | |
| 1266 | 1312 | // Remove if it's already there... |
| 1267 | - if (in_array($userReceiver, $user_info['buddies'])) |
|
| 1268 | - $user_info['buddies'] = array_diff($user_info['buddies'], array($userReceiver)); |
|
| 1313 | + if (in_array($userReceiver, $user_info['buddies'])) { |
|
| 1314 | + $user_info['buddies'] = array_diff($user_info['buddies'], array($userReceiver)); |
|
| 1315 | + } |
|
| 1269 | 1316 | |
| 1270 | 1317 | // ...or add if it's not and if it's not you. |
| 1271 | 1318 | elseif ($user_info['id'] != $userReceiver) |
@@ -1340,8 +1387,9 @@ discard block |
||
| 1340 | 1387 | $smcFunc['db_free_result']($request); |
| 1341 | 1388 | |
| 1342 | 1389 | // If we want duplicates pass the members array off. |
| 1343 | - if ($get_duplicates) |
|
| 1344 | - populateDuplicateMembers($members); |
|
| 1390 | + if ($get_duplicates) { |
|
| 1391 | + populateDuplicateMembers($members); |
|
| 1392 | + } |
|
| 1345 | 1393 | |
| 1346 | 1394 | return $members; |
| 1347 | 1395 | } |
@@ -1358,8 +1406,9 @@ discard block |
||
| 1358 | 1406 | global $smcFunc, $modSettings; |
| 1359 | 1407 | |
| 1360 | 1408 | // We know how many members there are in total. |
| 1361 | - if (empty($where) || $where == '1=1') |
|
| 1362 | - $num_members = $modSettings['totalMembers']; |
|
| 1409 | + if (empty($where) || $where == '1=1') { |
|
| 1410 | + $num_members = $modSettings['totalMembers']; |
|
| 1411 | + } |
|
| 1363 | 1412 | |
| 1364 | 1413 | // The database knows the amount when there are extra conditions. |
| 1365 | 1414 | else |
@@ -1395,16 +1444,19 @@ discard block |
||
| 1395 | 1444 | $members[$key]['duplicate_members'] = array(); |
| 1396 | 1445 | |
| 1397 | 1446 | // Store the IPs. |
| 1398 | - if (!empty($member['member_ip'])) |
|
| 1399 | - $ips[] = $member['member_ip']; |
|
| 1400 | - if (!empty($member['member_ip2'])) |
|
| 1401 | - $ips[] = $member['member_ip2']; |
|
| 1447 | + if (!empty($member['member_ip'])) { |
|
| 1448 | + $ips[] = $member['member_ip']; |
|
| 1449 | + } |
|
| 1450 | + if (!empty($member['member_ip2'])) { |
|
| 1451 | + $ips[] = $member['member_ip2']; |
|
| 1452 | + } |
|
| 1402 | 1453 | } |
| 1403 | 1454 | |
| 1404 | 1455 | $ips = array_unique($ips); |
| 1405 | 1456 | |
| 1406 | - if (empty($ips)) |
|
| 1407 | - return false; |
|
| 1457 | + if (empty($ips)) { |
|
| 1458 | + return false; |
|
| 1459 | + } |
|
| 1408 | 1460 | |
| 1409 | 1461 | // Fetch all members with this IP address, we'll filter out the current ones in a sec. |
| 1410 | 1462 | $request = $smcFunc['db_query']('', ' |
@@ -1434,10 +1486,12 @@ discard block |
||
| 1434 | 1486 | 'ip2' => $row['member_ip2'], |
| 1435 | 1487 | ); |
| 1436 | 1488 | |
| 1437 | - if (in_array($row['member_ip'], $ips)) |
|
| 1438 | - $duplicate_members[$row['member_ip']][] = $member_context; |
|
| 1439 | - if ($row['member_ip'] != $row['member_ip2'] && in_array($row['member_ip2'], $ips)) |
|
| 1440 | - $duplicate_members[$row['member_ip2']][] = $member_context; |
|
| 1489 | + if (in_array($row['member_ip'], $ips)) { |
|
| 1490 | + $duplicate_members[$row['member_ip']][] = $member_context; |
|
| 1491 | + } |
|
| 1492 | + if ($row['member_ip'] != $row['member_ip2'] && in_array($row['member_ip2'], $ips)) { |
|
| 1493 | + $duplicate_members[$row['member_ip2']][] = $member_context; |
|
| 1494 | + } |
|
| 1441 | 1495 | } |
| 1442 | 1496 | $smcFunc['db_free_result']($request); |
| 1443 | 1497 | |
@@ -1462,8 +1516,9 @@ discard block |
||
| 1462 | 1516 | $row['poster_ip'] = inet_dtop($row['poster_ip']); |
| 1463 | 1517 | |
| 1464 | 1518 | // Don't collect lots of the same. |
| 1465 | - if (isset($had_ips[$row['poster_ip']]) && in_array($row['id_member'], $had_ips[$row['poster_ip']])) |
|
| 1466 | - continue; |
|
| 1519 | + if (isset($had_ips[$row['poster_ip']]) && in_array($row['id_member'], $had_ips[$row['poster_ip']])) { |
|
| 1520 | + continue; |
|
| 1521 | + } |
|
| 1467 | 1522 | $had_ips[$row['poster_ip']][] = $row['id_member']; |
| 1468 | 1523 | |
| 1469 | 1524 | $duplicate_members[$row['poster_ip']][] = array( |
@@ -1478,13 +1533,15 @@ discard block |
||
| 1478 | 1533 | $smcFunc['db_free_result']($request); |
| 1479 | 1534 | |
| 1480 | 1535 | // Now we have all the duplicate members, stick them with their respective member in the list. |
| 1481 | - if (!empty($duplicate_members)) |
|
| 1482 | - foreach ($members as $key => $member) |
|
| 1536 | + if (!empty($duplicate_members)) { |
|
| 1537 | + foreach ($members as $key => $member) |
|
| 1483 | 1538 | { |
| 1484 | 1539 | if (isset($duplicate_members[$member['member_ip']])) |
| 1485 | 1540 | $members[$key]['duplicate_members'] = $duplicate_members[$member['member_ip']]; |
| 1486 | - if ($member['member_ip'] != $member['member_ip2'] && isset($duplicate_members[$member['member_ip2']])) |
|
| 1487 | - $members[$key]['duplicate_members'] = array_merge($member['duplicate_members'], $duplicate_members[$member['member_ip2']]); |
|
| 1541 | + } |
|
| 1542 | + if ($member['member_ip'] != $member['member_ip2'] && isset($duplicate_members[$member['member_ip2']])) { |
|
| 1543 | + $members[$key]['duplicate_members'] = array_merge($member['duplicate_members'], $duplicate_members[$member['member_ip2']]); |
|
| 1544 | + } |
|
| 1488 | 1545 | |
| 1489 | 1546 | // Check we don't have lots of the same member. |
| 1490 | 1547 | $member_track = array($member['id_member']); |
@@ -14,8 +14,9 @@ discard block |
||
| 14 | 14 | * @version 2.1 Beta 3 |
| 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 | * Show the list of topics in this board, along with any child boards. |
@@ -56,8 +57,9 @@ discard block |
||
| 56 | 57 | |
| 57 | 58 | $context['name'] = $board_info['name']; |
| 58 | 59 | $context['description'] = $board_info['description']; |
| 59 | - if (!empty($board_info['description'])) |
|
| 60 | - $context['meta_description'] = strip_tags($board_info['description']); |
|
| 60 | + if (!empty($board_info['description'])) { |
|
| 61 | + $context['meta_description'] = strip_tags($board_info['description']); |
|
| 62 | + } |
|
| 61 | 63 | |
| 62 | 64 | // How many topics do we have in total? |
| 63 | 65 | $board_info['total_topics'] = allowedTo('approve_posts') ? $board_info['num_topics'] + $board_info['unapproved_topics'] : $board_info['num_topics'] + $board_info['unapproved_user_topics']; |
@@ -73,12 +75,14 @@ discard block |
||
| 73 | 75 | $session_name = session_name(); |
| 74 | 76 | foreach ($_GET as $k => $v) |
| 75 | 77 | { |
| 76 | - if (!in_array($k, array('board', 'start', $session_name))) |
|
| 77 | - $context['robot_no_index'] = true; |
|
| 78 | + if (!in_array($k, array('board', 'start', $session_name))) { |
|
| 79 | + $context['robot_no_index'] = true; |
|
| 80 | + } |
|
| 78 | 81 | } |
| 79 | 82 | } |
| 80 | - if (!empty($_REQUEST['start']) && (!is_numeric($_REQUEST['start']) || $_REQUEST['start'] % $context['messages_per_page'] != 0)) |
|
| 81 | - $context['robot_no_index'] = true; |
|
| 83 | + if (!empty($_REQUEST['start']) && (!is_numeric($_REQUEST['start']) || $_REQUEST['start'] % $context['messages_per_page'] != 0)) { |
|
| 84 | + $context['robot_no_index'] = true; |
|
| 85 | + } |
|
| 82 | 86 | |
| 83 | 87 | // If we can view unapproved messages and there are some build up a list. |
| 84 | 88 | if (allowedTo('approve_posts') && ($board_info['unapproved_topics'] || $board_info['unapproved_posts'])) |
@@ -89,14 +93,16 @@ discard block |
||
| 89 | 93 | } |
| 90 | 94 | |
| 91 | 95 | // We only know these. |
| 92 | - if (isset($_REQUEST['sort']) && !in_array($_REQUEST['sort'], array('subject', 'starter', 'last_poster', 'replies', 'views', 'first_post', 'last_post'))) |
|
| 93 | - $_REQUEST['sort'] = 'last_post'; |
|
| 96 | + if (isset($_REQUEST['sort']) && !in_array($_REQUEST['sort'], array('subject', 'starter', 'last_poster', 'replies', 'views', 'first_post', 'last_post'))) { |
|
| 97 | + $_REQUEST['sort'] = 'last_post'; |
|
| 98 | + } |
|
| 94 | 99 | |
| 95 | 100 | // Make sure the starting place makes sense and construct the page index. |
| 96 | - if (isset($_REQUEST['sort'])) |
|
| 97 | - $context['page_index'] = constructPageIndex($scripturl . '?board=' . $board . '.%1$d;sort=' . $_REQUEST['sort'] . (isset($_REQUEST['desc']) ? ';desc' : ''), $_REQUEST['start'], $board_info['total_topics'], $maxindex, true); |
|
| 98 | - else |
|
| 99 | - $context['page_index'] = constructPageIndex($scripturl . '?board=' . $board . '.%1$d', $_REQUEST['start'], $board_info['total_topics'], $maxindex, true); |
|
| 101 | + if (isset($_REQUEST['sort'])) { |
|
| 102 | + $context['page_index'] = constructPageIndex($scripturl . '?board=' . $board . '.%1$d;sort=' . $_REQUEST['sort'] . (isset($_REQUEST['desc']) ? ';desc' : ''), $_REQUEST['start'], $board_info['total_topics'], $maxindex, true); |
|
| 103 | + } else { |
|
| 104 | + $context['page_index'] = constructPageIndex($scripturl . '?board=' . $board . '.%1$d', $_REQUEST['start'], $board_info['total_topics'], $maxindex, true); |
|
| 105 | + } |
|
| 100 | 106 | $context['start'] = &$_REQUEST['start']; |
| 101 | 107 | |
| 102 | 108 | // Set a canonical URL for this page. |
@@ -132,14 +138,16 @@ discard block |
||
| 132 | 138 | $context['link_moderators'] = array(); |
| 133 | 139 | if (!empty($board_info['moderators'])) |
| 134 | 140 | { |
| 135 | - foreach ($board_info['moderators'] as $mod) |
|
| 136 | - $context['link_moderators'][] ='<a href="' . $scripturl . '?action=profile;u=' . $mod['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod['name'] . '</a>'; |
|
| 141 | + foreach ($board_info['moderators'] as $mod) { |
|
| 142 | + $context['link_moderators'][] ='<a href="' . $scripturl . '?action=profile;u=' . $mod['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod['name'] . '</a>'; |
|
| 143 | + } |
|
| 137 | 144 | } |
| 138 | 145 | if (!empty($board_info['moderator_groups'])) |
| 139 | 146 | { |
| 140 | 147 | // By default just tack the moderator groups onto the end of the members |
| 141 | - foreach ($board_info['moderator_groups'] as $mod_group) |
|
| 142 | - $context['link_moderators'][] = '<a href="' . $scripturl . '?action=groups;sa=members;group=' . $mod_group['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod_group['name'] . '</a>'; |
|
| 148 | + foreach ($board_info['moderator_groups'] as $mod_group) { |
|
| 149 | + $context['link_moderators'][] = '<a href="' . $scripturl . '?action=groups;sa=members;group=' . $mod_group['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod_group['name'] . '</a>'; |
|
| 150 | + } |
|
| 143 | 151 | } |
| 144 | 152 | |
| 145 | 153 | // Now we tack the info onto the end of the linktree |
@@ -191,20 +199,24 @@ discard block |
||
| 191 | 199 | ); |
| 192 | 200 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 193 | 201 | { |
| 194 | - if (empty($row['id_member'])) |
|
| 195 | - continue; |
|
| 202 | + if (empty($row['id_member'])) { |
|
| 203 | + continue; |
|
| 204 | + } |
|
| 196 | 205 | |
| 197 | - if (!empty($row['online_color'])) |
|
| 198 | - $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '" style="color: ' . $row['online_color'] . ';">' . $row['real_name'] . '</a>'; |
|
| 199 | - else |
|
| 200 | - $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
| 206 | + if (!empty($row['online_color'])) { |
|
| 207 | + $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '" style="color: ' . $row['online_color'] . ';">' . $row['real_name'] . '</a>'; |
|
| 208 | + } else { |
|
| 209 | + $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
| 210 | + } |
|
| 201 | 211 | |
| 202 | 212 | $is_buddy = in_array($row['id_member'], $user_info['buddies']); |
| 203 | - if ($is_buddy) |
|
| 204 | - $link = '<strong>' . $link . '</strong>'; |
|
| 213 | + if ($is_buddy) { |
|
| 214 | + $link = '<strong>' . $link . '</strong>'; |
|
| 215 | + } |
|
| 205 | 216 | |
| 206 | - if (!empty($row['show_online']) || allowedTo('moderate_forum')) |
|
| 207 | - $context['view_members_list'][$row['log_time'] . $row['member_name']] = empty($row['show_online']) ? '<em>' . $link . '</em>' : $link; |
|
| 217 | + if (!empty($row['show_online']) || allowedTo('moderate_forum')) { |
|
| 218 | + $context['view_members_list'][$row['log_time'] . $row['member_name']] = empty($row['show_online']) ? '<em>' . $link . '</em>' : $link; |
|
| 219 | + } |
|
| 208 | 220 | // @todo why are we filling this array of data that are just counted (twice) and discarded? ??? |
| 209 | 221 | $context['view_members'][$row['log_time'] . $row['member_name']] = array( |
| 210 | 222 | 'id' => $row['id_member'], |
@@ -217,8 +229,9 @@ discard block |
||
| 217 | 229 | 'hidden' => empty($row['show_online']), |
| 218 | 230 | ); |
| 219 | 231 | |
| 220 | - if (empty($row['show_online'])) |
|
| 221 | - $context['view_num_hidden']++; |
|
| 232 | + if (empty($row['show_online'])) { |
|
| 233 | + $context['view_num_hidden']++; |
|
| 234 | + } |
|
| 222 | 235 | } |
| 223 | 236 | $context['view_num_guests'] = $smcFunc['db_num_rows']($request) - count($context['view_members']); |
| 224 | 237 | $smcFunc['db_free_result']($request); |
@@ -257,8 +270,9 @@ discard block |
||
| 257 | 270 | $context['sort_direction'] = $ascending ? 'up' : 'down'; |
| 258 | 271 | $txt['starter'] = $txt['started_by']; |
| 259 | 272 | |
| 260 | - foreach ($sort_methods as $key => $val) |
|
| 261 | - $context['topics_headers'][$key] = '<a href="' . $scripturl . '?board=' . $context['current_board'] . '.' . $context['start'] . ';sort=' . $key . ($context['sort_by'] == $key && $context['sort_direction'] == 'up' ? ';desc' : '') . '">' . $txt[$key] . ($context['sort_by'] == $key ? '<span class="sort sort_' . $context['sort_direction'] . '"></span>' : '') . '</a>'; |
|
| 273 | + foreach ($sort_methods as $key => $val) { |
|
| 274 | + $context['topics_headers'][$key] = '<a href="' . $scripturl . '?board=' . $context['current_board'] . '.' . $context['start'] . ';sort=' . $key . ($context['sort_by'] == $key && $context['sort_direction'] == 'up' ? ';desc' : '') . '">' . $txt[$key] . ($context['sort_by'] == $key ? '<span class="sort sort_' . $context['sort_direction'] . '"></span>' : '') . '</a>'; |
|
| 275 | + } |
|
| 262 | 276 | |
| 263 | 277 | // Calculate the fastest way to get the topics. |
| 264 | 278 | $start = (int) $_REQUEST['start']; |
@@ -268,14 +282,15 @@ discard block |
||
| 268 | 282 | $fake_ascending = true; |
| 269 | 283 | $maxindex = $board_info['total_topics'] < $start + $maxindex + 1 ? $board_info['total_topics'] - $start : $maxindex; |
| 270 | 284 | $start = $board_info['total_topics'] < $start + $maxindex + 1 ? 0 : $board_info['total_topics'] - $start - $maxindex; |
| 285 | + } else { |
|
| 286 | + $fake_ascending = false; |
|
| 271 | 287 | } |
| 272 | - else |
|
| 273 | - $fake_ascending = false; |
|
| 274 | 288 | |
| 275 | 289 | // Setup the default topic icons... |
| 276 | 290 | $context['icon_sources'] = array(); |
| 277 | - foreach ($context['stable_icons'] as $icon) |
|
| 278 | - $context['icon_sources'][$icon] = 'images_url'; |
|
| 291 | + foreach ($context['stable_icons'] as $icon) { |
|
| 292 | + $context['icon_sources'][$icon] = 'images_url'; |
|
| 293 | + } |
|
| 279 | 294 | |
| 280 | 295 | $topic_ids = array(); |
| 281 | 296 | $context['topics'] = array(); |
@@ -306,8 +321,9 @@ discard block |
||
| 306 | 321 | ) |
| 307 | 322 | ); |
| 308 | 323 | $topic_ids = array(); |
| 309 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 310 | - $topic_ids[] = $row['id_topic']; |
|
| 324 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 325 | + $topic_ids[] = $row['id_topic']; |
|
| 326 | + } |
|
| 311 | 327 | } |
| 312 | 328 | |
| 313 | 329 | // Grab the appropriate topic information... |
@@ -363,11 +379,13 @@ discard block |
||
| 363 | 379 | // Begin 'printing' the message index for current board. |
| 364 | 380 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
| 365 | 381 | { |
| 366 | - if ($row['id_poll'] > 0 && $modSettings['pollMode'] == '0') |
|
| 367 | - continue; |
|
| 382 | + if ($row['id_poll'] > 0 && $modSettings['pollMode'] == '0') { |
|
| 383 | + continue; |
|
| 384 | + } |
|
| 368 | 385 | |
| 369 | - if (!$pre_query) |
|
| 370 | - $topic_ids[] = $row['id_topic']; |
|
| 386 | + if (!$pre_query) { |
|
| 387 | + $topic_ids[] = $row['id_topic']; |
|
| 388 | + } |
|
| 371 | 389 | |
| 372 | 390 | // Reference the main color class. |
| 373 | 391 | $colorClass = 'windowbg'; |
@@ -377,8 +395,9 @@ discard block |
||
| 377 | 395 | { |
| 378 | 396 | // Limit them to $modSettings['preview_characters'] characters |
| 379 | 397 | $row['first_body'] = strip_tags(strtr(parse_bbc($row['first_body'], $row['first_smileys'], $row['id_first_msg']), array('<br>' => ' '))); |
| 380 | - if ($smcFunc['strlen']($row['first_body']) > $modSettings['preview_characters']) |
|
| 381 | - $row['first_body'] = $smcFunc['substr']($row['first_body'], 0, $modSettings['preview_characters']) . '...'; |
|
| 398 | + if ($smcFunc['strlen']($row['first_body']) > $modSettings['preview_characters']) { |
|
| 399 | + $row['first_body'] = $smcFunc['substr']($row['first_body'], 0, $modSettings['preview_characters']) . '...'; |
|
| 400 | + } |
|
| 382 | 401 | |
| 383 | 402 | // Censor the subject and message preview. |
| 384 | 403 | censorText($row['first_subject']); |
@@ -389,27 +408,27 @@ discard block |
||
| 389 | 408 | { |
| 390 | 409 | $row['last_subject'] = $row['first_subject']; |
| 391 | 410 | $row['last_body'] = $row['first_body']; |
| 392 | - } |
|
| 393 | - else |
|
| 411 | + } else |
|
| 394 | 412 | { |
| 395 | 413 | $row['last_body'] = strip_tags(strtr(parse_bbc($row['last_body'], $row['last_smileys'], $row['id_last_msg']), array('<br>' => ' '))); |
| 396 | - if ($smcFunc['strlen']($row['last_body']) > $modSettings['preview_characters']) |
|
| 397 | - $row['last_body'] = $smcFunc['substr']($row['last_body'], 0, $modSettings['preview_characters']) . '...'; |
|
| 414 | + if ($smcFunc['strlen']($row['last_body']) > $modSettings['preview_characters']) { |
|
| 415 | + $row['last_body'] = $smcFunc['substr']($row['last_body'], 0, $modSettings['preview_characters']) . '...'; |
|
| 416 | + } |
|
| 398 | 417 | |
| 399 | 418 | censorText($row['last_subject']); |
| 400 | 419 | censorText($row['last_body']); |
| 401 | 420 | } |
| 402 | - } |
|
| 403 | - else |
|
| 421 | + } else |
|
| 404 | 422 | { |
| 405 | 423 | $row['first_body'] = ''; |
| 406 | 424 | $row['last_body'] = ''; |
| 407 | 425 | censorText($row['first_subject']); |
| 408 | 426 | |
| 409 | - if ($row['id_first_msg'] == $row['id_last_msg']) |
|
| 410 | - $row['last_subject'] = $row['first_subject']; |
|
| 411 | - else |
|
| 412 | - censorText($row['last_subject']); |
|
| 427 | + if ($row['id_first_msg'] == $row['id_last_msg']) { |
|
| 428 | + $row['last_subject'] = $row['first_subject']; |
|
| 429 | + } else { |
|
| 430 | + censorText($row['last_subject']); |
|
| 431 | + } |
|
| 413 | 432 | } |
| 414 | 433 | |
| 415 | 434 | // Decide how many pages the topic should have. |
@@ -420,42 +439,50 @@ discard block |
||
| 420 | 439 | $pages = constructPageIndex($scripturl . '?topic=' . $row['id_topic'] . '.%1$d', $start, $row['num_replies'] + 1, $context['messages_per_page'], true, false); |
| 421 | 440 | |
| 422 | 441 | // If we can use all, show all. |
| 423 | - if (!empty($modSettings['enableAllMessages']) && $row['num_replies'] + 1 < $modSettings['enableAllMessages']) |
|
| 424 | - $pages .= ' <a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0;all">' . $txt['all'] . '</a>'; |
|
| 442 | + if (!empty($modSettings['enableAllMessages']) && $row['num_replies'] + 1 < $modSettings['enableAllMessages']) { |
|
| 443 | + $pages .= ' <a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0;all">' . $txt['all'] . '</a>'; |
|
| 444 | + } |
|
| 445 | + } else { |
|
| 446 | + $pages = ''; |
|
| 425 | 447 | } |
| 426 | - else |
|
| 427 | - $pages = ''; |
|
| 428 | 448 | |
| 429 | 449 | // We need to check the topic icons exist... |
| 430 | 450 | if (!empty($modSettings['messageIconChecks_enable'])) |
| 431 | 451 | { |
| 432 | - if (!isset($context['icon_sources'][$row['first_icon']])) |
|
| 433 | - $context['icon_sources'][$row['first_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['first_icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
| 434 | - if (!isset($context['icon_sources'][$row['last_icon']])) |
|
| 435 | - $context['icon_sources'][$row['last_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['last_icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
| 436 | - } |
|
| 437 | - else |
|
| 452 | + if (!isset($context['icon_sources'][$row['first_icon']])) { |
|
| 453 | + $context['icon_sources'][$row['first_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['first_icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
| 454 | + } |
|
| 455 | + if (!isset($context['icon_sources'][$row['last_icon']])) { |
|
| 456 | + $context['icon_sources'][$row['last_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['last_icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
| 457 | + } |
|
| 458 | + } else |
|
| 438 | 459 | { |
| 439 | - if (!isset($context['icon_sources'][$row['first_icon']])) |
|
| 440 | - $context['icon_sources'][$row['first_icon']] = 'images_url'; |
|
| 441 | - if (!isset($context['icon_sources'][$row['last_icon']])) |
|
| 442 | - $context['icon_sources'][$row['last_icon']] = 'images_url'; |
|
| 460 | + if (!isset($context['icon_sources'][$row['first_icon']])) { |
|
| 461 | + $context['icon_sources'][$row['first_icon']] = 'images_url'; |
|
| 462 | + } |
|
| 463 | + if (!isset($context['icon_sources'][$row['last_icon']])) { |
|
| 464 | + $context['icon_sources'][$row['last_icon']] = 'images_url'; |
|
| 465 | + } |
|
| 443 | 466 | } |
| 444 | 467 | |
| 445 | - if (!empty($board_info['recycle'])) |
|
| 446 | - $row['first_icon'] = 'recycled'; |
|
| 468 | + if (!empty($board_info['recycle'])) { |
|
| 469 | + $row['first_icon'] = 'recycled'; |
|
| 470 | + } |
|
| 447 | 471 | |
| 448 | 472 | // Is this topic pending approval, or does it have any posts pending approval? |
| 449 | - if ($context['can_approve_posts'] && $row['unapproved_posts']) |
|
| 450 | - $colorClass .= (!$row['approved'] ? ' approvetopic' : ' approvepost'); |
|
| 473 | + if ($context['can_approve_posts'] && $row['unapproved_posts']) { |
|
| 474 | + $colorClass .= (!$row['approved'] ? ' approvetopic' : ' approvepost'); |
|
| 475 | + } |
|
| 451 | 476 | |
| 452 | 477 | // Sticky topics should get a different color, too. |
| 453 | - if ($row['is_sticky']) |
|
| 454 | - $colorClass .= ' sticky'; |
|
| 478 | + if ($row['is_sticky']) { |
|
| 479 | + $colorClass .= ' sticky'; |
|
| 480 | + } |
|
| 455 | 481 | |
| 456 | 482 | // Locked topics get special treatment as well. |
| 457 | - if ($row['locked']) |
|
| 458 | - $colorClass .= ' locked'; |
|
| 483 | + if ($row['locked']) { |
|
| 484 | + $colorClass .= ' locked'; |
|
| 485 | + } |
|
| 459 | 486 | |
| 460 | 487 | // 'Print' the topic info. |
| 461 | 488 | $context['topics'][$row['id_topic']] = array_merge($row, array( |
@@ -536,8 +563,9 @@ discard block |
||
| 536 | 563 | $smcFunc['db_free_result']($result); |
| 537 | 564 | |
| 538 | 565 | // Fix the sequence of topics if they were retrieved in the wrong order. (for speed reasons...) |
| 539 | - if ($fake_ascending) |
|
| 540 | - $context['topics'] = array_reverse($context['topics'], true); |
|
| 566 | + if ($fake_ascending) { |
|
| 567 | + $context['topics'] = array_reverse($context['topics'], true); |
|
| 568 | + } |
|
| 541 | 569 | |
| 542 | 570 | if (!empty($modSettings['enableParticipation']) && !$user_info['is_guest'] && !empty($topic_ids)) |
| 543 | 571 | { |
@@ -554,8 +582,9 @@ discard block |
||
| 554 | 582 | 'limit' => count($topic_ids), |
| 555 | 583 | ) |
| 556 | 584 | ); |
| 557 | - while ($row = $smcFunc['db_fetch_assoc']($result)) |
|
| 558 | - $context['topics'][$row['id_topic']]['is_posted_in'] = true; |
|
| 585 | + while ($row = $smcFunc['db_fetch_assoc']($result)) { |
|
| 586 | + $context['topics'][$row['id_topic']]['is_posted_in'] = true; |
|
| 587 | + } |
|
| 559 | 588 | $smcFunc['db_free_result']($result); |
| 560 | 589 | } |
| 561 | 590 | } |
@@ -580,9 +609,9 @@ discard block |
||
| 580 | 609 | // Can we restore topics? |
| 581 | 610 | $context['can_restore'] = allowedTo('move_any') && !empty($board_info['recycle']); |
| 582 | 611 | |
| 583 | - if ($user_info['is_admin'] || $modSettings['topic_move_any']) |
|
| 584 | - $context['can_move_any'] = true; |
|
| 585 | - else |
|
| 612 | + if ($user_info['is_admin'] || $modSettings['topic_move_any']) { |
|
| 613 | + $context['can_move_any'] = true; |
|
| 614 | + } else |
|
| 586 | 615 | { |
| 587 | 616 | // We'll use this in a minute |
| 588 | 617 | $boards_allowed = boardsAllowedTo('post_new'); |
@@ -609,11 +638,13 @@ discard block |
||
| 609 | 638 | } |
| 610 | 639 | |
| 611 | 640 | // Can we use quick moderation checkboxes? |
| 612 | - if ($options['display_quick_mod'] == 1) |
|
| 613 | - $context['can_quick_mod'] = $context['user']['is_logged'] || $context['can_approve'] || $context['can_remove'] || $context['can_lock'] || $context['can_sticky'] || $context['can_move'] || $context['can_merge'] || $context['can_restore']; |
|
| 641 | + if ($options['display_quick_mod'] == 1) { |
|
| 642 | + $context['can_quick_mod'] = $context['user']['is_logged'] || $context['can_approve'] || $context['can_remove'] || $context['can_lock'] || $context['can_sticky'] || $context['can_move'] || $context['can_merge'] || $context['can_restore']; |
|
| 643 | + } |
|
| 614 | 644 | // Or the icons? |
| 615 | - else |
|
| 616 | - $context['can_quick_mod'] = $context['can_remove'] || $context['can_lock'] || $context['can_sticky'] || $context['can_move']; |
|
| 645 | + else { |
|
| 646 | + $context['can_quick_mod'] = $context['can_remove'] || $context['can_lock'] || $context['can_sticky'] || $context['can_move']; |
|
| 647 | + } |
|
| 617 | 648 | } |
| 618 | 649 | |
| 619 | 650 | if (!empty($context['can_quick_mod']) && $options['display_quick_mod'] == 1) |
@@ -647,13 +678,15 @@ discard block |
||
| 647 | 678 | ); |
| 648 | 679 | |
| 649 | 680 | // We've seen all these boards now! |
| 650 | - foreach ($board_info['parent_boards'] as $k => $dummy) |
|
| 651 | - if (isset($_SESSION['topicseen_cache'][$k])) |
|
| 681 | + foreach ($board_info['parent_boards'] as $k => $dummy) { |
|
| 682 | + if (isset($_SESSION['topicseen_cache'][$k])) |
|
| 652 | 683 | unset($_SESSION['topicseen_cache'][$k]); |
| 684 | + } |
|
| 653 | 685 | } |
| 654 | 686 | |
| 655 | - if (isset($_SESSION['topicseen_cache'][$board])) |
|
| 656 | - unset($_SESSION['topicseen_cache'][$board]); |
|
| 687 | + if (isset($_SESSION['topicseen_cache'][$board])) { |
|
| 688 | + unset($_SESSION['topicseen_cache'][$board]); |
|
| 689 | + } |
|
| 657 | 690 | |
| 658 | 691 | $request = $smcFunc['db_query']('', ' |
| 659 | 692 | SELECT id_topic, id_board, sent |
@@ -675,8 +708,9 @@ discard block |
||
| 675 | 708 | $context['is_marked_notify'] = true; |
| 676 | 709 | $board_sent = $row['sent']; |
| 677 | 710 | } |
| 678 | - if (!empty($row['id_topic'])) |
|
| 679 | - $context['topics'][$row['id_topic']]['is_watched'] = true; |
|
| 711 | + if (!empty($row['id_topic'])) { |
|
| 712 | + $context['topics'][$row['id_topic']]['is_watched'] = true; |
|
| 713 | + } |
|
| 680 | 714 | } |
| 681 | 715 | $smcFunc['db_free_result']($request); |
| 682 | 716 | |
@@ -700,8 +734,7 @@ discard block |
||
| 700 | 734 | $pref = !empty($pref[$user_info['id']]) ? $pref[$user_info['id']] : array(); |
| 701 | 735 | $pref = isset($pref['board_notify_' . $board]) ? $pref['board_notify_' . $board] : (!empty($pref['board_notify']) ? $pref['board_notify'] : 0); |
| 702 | 736 | $context['board_notification_mode'] = !$context['is_marked_notify'] ? 1 : ($pref & 0x02 ? 3 : ($pref & 0x01 ? 2 : 1)); |
| 703 | - } |
|
| 704 | - else |
|
| 737 | + } else |
|
| 705 | 738 | { |
| 706 | 739 | $context['is_marked_notify'] = false; |
| 707 | 740 | $context['board_notification_mode'] = 1; |
@@ -714,23 +747,27 @@ discard block |
||
| 714 | 747 | $context['becomesUnapproved'] = !empty($_SESSION['becomesUnapproved']) ? true : false; |
| 715 | 748 | |
| 716 | 749 | // Don't want to show this forever... |
| 717 | - if ($context['becomesUnapproved']) |
|
| 718 | - unset($_SESSION['becomesUnapproved']); |
|
| 750 | + if ($context['becomesUnapproved']) { |
|
| 751 | + unset($_SESSION['becomesUnapproved']); |
|
| 752 | + } |
|
| 719 | 753 | |
| 720 | 754 | // Build the message index button array. |
| 721 | 755 | $context['normal_buttons'] = array(); |
| 722 | 756 | |
| 723 | - if ($context['can_post_new']) |
|
| 724 | - $context['normal_buttons']['new_topic'] = array('text' => 'new_topic', 'image' => 'new_topic.png', 'lang' => true, 'url' => $scripturl . '?action=post;board=' . $context['current_board'] . '.0', 'active' => true); |
|
| 757 | + if ($context['can_post_new']) { |
|
| 758 | + $context['normal_buttons']['new_topic'] = array('text' => 'new_topic', 'image' => 'new_topic.png', 'lang' => true, 'url' => $scripturl . '?action=post;board=' . $context['current_board'] . '.0', 'active' => true); |
|
| 759 | + } |
|
| 725 | 760 | |
| 726 | - if ($context['can_post_poll']) |
|
| 727 | - $context['normal_buttons']['post_poll'] = array('text' => 'new_poll', 'image' => 'new_poll.png', 'lang' => true, 'url' => $scripturl . '?action=post;board=' . $context['current_board'] . '.0;poll'); |
|
| 761 | + if ($context['can_post_poll']) { |
|
| 762 | + $context['normal_buttons']['post_poll'] = array('text' => 'new_poll', 'image' => 'new_poll.png', 'lang' => true, 'url' => $scripturl . '?action=post;board=' . $context['current_board'] . '.0;poll'); |
|
| 763 | + } |
|
| 728 | 764 | |
| 729 | - if (!$context['user']['is_logged']) |
|
| 730 | - $context['normal_buttons']['markread'] = array('text' => 'mark_read_short', 'image' => 'markread.png', 'lang' => true, 'custom' => 'data-confirm="'. $txt['are_sure_mark_read'] .'"', 'class' => 'you_sure', 'url' => $scripturl . '?action=markasread;sa=board;board=' . $context['current_board'] . '.0;' . $context['session_var'] . '=' . $context['session_id']); |
|
| 765 | + if (!$context['user']['is_logged']) { |
|
| 766 | + $context['normal_buttons']['markread'] = array('text' => 'mark_read_short', 'image' => 'markread.png', 'lang' => true, 'custom' => 'data-confirm="'. $txt['are_sure_mark_read'] .'"', 'class' => 'you_sure', 'url' => $scripturl . '?action=markasread;sa=board;board=' . $context['current_board'] . '.0;' . $context['session_var'] . '=' . $context['session_id']); |
|
| 767 | + } |
|
| 731 | 768 | |
| 732 | - if ($context['can_mark_notify']) |
|
| 733 | - $context['normal_buttons']['notify'] = array( |
|
| 769 | + if ($context['can_mark_notify']) { |
|
| 770 | + $context['normal_buttons']['notify'] = array( |
|
| 734 | 771 | 'lang' => true, |
| 735 | 772 | 'text' => 'notify_board_' . $context['board_notification_mode'], |
| 736 | 773 | 'sub_buttons' => array( |
@@ -748,6 +785,7 @@ discard block |
||
| 748 | 785 | ), |
| 749 | 786 | ), |
| 750 | 787 | ); |
| 788 | + } |
|
| 751 | 789 | |
| 752 | 790 | // Javascript for inline editing. |
| 753 | 791 | loadJavaScriptFile('topic.js', array('defer' => false), 'smf_topic'); |
@@ -769,18 +807,21 @@ discard block |
||
| 769 | 807 | checkSession('request'); |
| 770 | 808 | |
| 771 | 809 | // Lets go straight to the restore area. |
| 772 | - if (isset($_REQUEST['qaction']) && $_REQUEST['qaction'] == 'restore' && !empty($_REQUEST['topics'])) |
|
| 773 | - redirectexit('action=restoretopic;topics=' . implode(',', $_REQUEST['topics']) . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 810 | + if (isset($_REQUEST['qaction']) && $_REQUEST['qaction'] == 'restore' && !empty($_REQUEST['topics'])) { |
|
| 811 | + redirectexit('action=restoretopic;topics=' . implode(',', $_REQUEST['topics']) . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 812 | + } |
|
| 774 | 813 | |
| 775 | - if (isset($_SESSION['topicseen_cache'])) |
|
| 776 | - $_SESSION['topicseen_cache'] = array(); |
|
| 814 | + if (isset($_SESSION['topicseen_cache'])) { |
|
| 815 | + $_SESSION['topicseen_cache'] = array(); |
|
| 816 | + } |
|
| 777 | 817 | |
| 778 | 818 | // This is going to be needed to send off the notifications and for updateLastMessages(). |
| 779 | 819 | require_once($sourcedir . '/Subs-Post.php'); |
| 780 | 820 | |
| 781 | 821 | // Remember the last board they moved things to. |
| 782 | - if (isset($_REQUEST['move_to'])) |
|
| 783 | - $_SESSION['move_to_topic'] = $_REQUEST['move_to']; |
|
| 822 | + if (isset($_REQUEST['move_to'])) { |
|
| 823 | + $_SESSION['move_to_topic'] = $_REQUEST['move_to']; |
|
| 824 | + } |
|
| 784 | 825 | |
| 785 | 826 | // Only a few possible actions. |
| 786 | 827 | $possibleActions = array(); |
@@ -800,8 +841,7 @@ discard block |
||
| 800 | 841 | ); |
| 801 | 842 | |
| 802 | 843 | $redirect_url = 'board=' . $board . '.' . $_REQUEST['start']; |
| 803 | - } |
|
| 804 | - else |
|
| 844 | + } else |
|
| 805 | 845 | { |
| 806 | 846 | /** |
| 807 | 847 | * @todo Ugly. There's no getting around this, is there? |
@@ -819,8 +859,7 @@ discard block |
||
| 819 | 859 | if (!empty($board)) |
| 820 | 860 | { |
| 821 | 861 | $boards_can['post_new'] = array_diff(boardsAllowedTo('post_new'), array($board)); |
| 822 | - } |
|
| 823 | - else |
|
| 862 | + } else |
|
| 824 | 863 | { |
| 825 | 864 | $boards_can['post_new'] = boardsAllowedTo('post_new'); |
| 826 | 865 | } |
@@ -831,55 +870,67 @@ discard block |
||
| 831 | 870 | } |
| 832 | 871 | } |
| 833 | 872 | |
| 834 | - if (!$user_info['is_guest']) |
|
| 835 | - $possibleActions[] = 'markread'; |
|
| 836 | - if (!empty($boards_can['make_sticky'])) |
|
| 837 | - $possibleActions[] = 'sticky'; |
|
| 838 | - if (!empty($boards_can['move_any']) || !empty($boards_can['move_own'])) |
|
| 839 | - $possibleActions[] = 'move'; |
|
| 840 | - if (!empty($boards_can['remove_any']) || !empty($boards_can['remove_own'])) |
|
| 841 | - $possibleActions[] = 'remove'; |
|
| 842 | - if (!empty($boards_can['lock_any']) || !empty($boards_can['lock_own'])) |
|
| 843 | - $possibleActions[] = 'lock'; |
|
| 844 | - if (!empty($boards_can['merge_any'])) |
|
| 845 | - $possibleActions[] = 'merge'; |
|
| 846 | - if (!empty($boards_can['approve_posts'])) |
|
| 847 | - $possibleActions[] = 'approve'; |
|
| 873 | + if (!$user_info['is_guest']) { |
|
| 874 | + $possibleActions[] = 'markread'; |
|
| 875 | + } |
|
| 876 | + if (!empty($boards_can['make_sticky'])) { |
|
| 877 | + $possibleActions[] = 'sticky'; |
|
| 878 | + } |
|
| 879 | + if (!empty($boards_can['move_any']) || !empty($boards_can['move_own'])) { |
|
| 880 | + $possibleActions[] = 'move'; |
|
| 881 | + } |
|
| 882 | + if (!empty($boards_can['remove_any']) || !empty($boards_can['remove_own'])) { |
|
| 883 | + $possibleActions[] = 'remove'; |
|
| 884 | + } |
|
| 885 | + if (!empty($boards_can['lock_any']) || !empty($boards_can['lock_own'])) { |
|
| 886 | + $possibleActions[] = 'lock'; |
|
| 887 | + } |
|
| 888 | + if (!empty($boards_can['merge_any'])) { |
|
| 889 | + $possibleActions[] = 'merge'; |
|
| 890 | + } |
|
| 891 | + if (!empty($boards_can['approve_posts'])) { |
|
| 892 | + $possibleActions[] = 'approve'; |
|
| 893 | + } |
|
| 848 | 894 | |
| 849 | 895 | // Two methods: $_REQUEST['actions'] (id_topic => action), and $_REQUEST['topics'] and $_REQUEST['qaction']. |
| 850 | 896 | // (if action is 'move', $_REQUEST['move_to'] or $_REQUEST['move_tos'][$topic] is used.) |
| 851 | 897 | if (!empty($_REQUEST['topics'])) |
| 852 | 898 | { |
| 853 | 899 | // If the action isn't valid, just quit now. |
| 854 | - if (empty($_REQUEST['qaction']) || !in_array($_REQUEST['qaction'], $possibleActions)) |
|
| 855 | - redirectexit($redirect_url); |
|
| 900 | + if (empty($_REQUEST['qaction']) || !in_array($_REQUEST['qaction'], $possibleActions)) { |
|
| 901 | + redirectexit($redirect_url); |
|
| 902 | + } |
|
| 856 | 903 | |
| 857 | 904 | // Merge requires all topics as one parameter and can be done at once. |
| 858 | 905 | if ($_REQUEST['qaction'] == 'merge') |
| 859 | 906 | { |
| 860 | 907 | // Merge requires at least two topics. |
| 861 | - if (empty($_REQUEST['topics']) || count($_REQUEST['topics']) < 2) |
|
| 862 | - redirectexit($redirect_url); |
|
| 908 | + if (empty($_REQUEST['topics']) || count($_REQUEST['topics']) < 2) { |
|
| 909 | + redirectexit($redirect_url); |
|
| 910 | + } |
|
| 863 | 911 | |
| 864 | 912 | require_once($sourcedir . '/SplitTopics.php'); |
| 865 | 913 | return MergeExecute($_REQUEST['topics']); |
| 866 | 914 | } |
| 867 | 915 | |
| 868 | 916 | // Just convert to the other method, to make it easier. |
| 869 | - foreach ($_REQUEST['topics'] as $topic) |
|
| 870 | - $_REQUEST['actions'][(int) $topic] = $_REQUEST['qaction']; |
|
| 917 | + foreach ($_REQUEST['topics'] as $topic) { |
|
| 918 | + $_REQUEST['actions'][(int) $topic] = $_REQUEST['qaction']; |
|
| 919 | + } |
|
| 871 | 920 | } |
| 872 | 921 | |
| 873 | 922 | // Weird... how'd you get here? |
| 874 | - if (empty($_REQUEST['actions'])) |
|
| 875 | - redirectexit($redirect_url); |
|
| 923 | + if (empty($_REQUEST['actions'])) { |
|
| 924 | + redirectexit($redirect_url); |
|
| 925 | + } |
|
| 876 | 926 | |
| 877 | 927 | // Validate each action. |
| 878 | 928 | $temp = array(); |
| 879 | 929 | foreach ($_REQUEST['actions'] as $topic => $action) |
| 880 | 930 | { |
| 881 | - if (in_array($action, $possibleActions)) |
|
| 882 | - $temp[(int) $topic] = $action; |
|
| 931 | + if (in_array($action, $possibleActions)) { |
|
| 932 | + $temp[(int) $topic] = $action; |
|
| 933 | + } |
|
| 883 | 934 | } |
| 884 | 935 | $_REQUEST['actions'] = $temp; |
| 885 | 936 | |
@@ -900,27 +951,31 @@ discard block |
||
| 900 | 951 | { |
| 901 | 952 | if (!empty($board)) |
| 902 | 953 | { |
| 903 | - if ($row['id_board'] != $board || ($modSettings['postmod_active'] && !$row['approved'] && !allowedTo('approve_posts'))) |
|
| 904 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 905 | - } |
|
| 906 | - else |
|
| 954 | + if ($row['id_board'] != $board || ($modSettings['postmod_active'] && !$row['approved'] && !allowedTo('approve_posts'))) { |
|
| 955 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 956 | + } |
|
| 957 | + } else |
|
| 907 | 958 | { |
| 908 | 959 | // Don't allow them to act on unapproved posts they can't see... |
| 909 | - if ($modSettings['postmod_active'] && !$row['approved'] && !in_array(0, $boards_can['approve_posts']) && !in_array($row['id_board'], $boards_can['approve_posts'])) |
|
| 910 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 960 | + if ($modSettings['postmod_active'] && !$row['approved'] && !in_array(0, $boards_can['approve_posts']) && !in_array($row['id_board'], $boards_can['approve_posts'])) { |
|
| 961 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 962 | + } |
|
| 911 | 963 | // Goodness, this is fun. We need to validate the action. |
| 912 | - elseif ($_REQUEST['actions'][$row['id_topic']] == 'sticky' && !in_array(0, $boards_can['make_sticky']) && !in_array($row['id_board'], $boards_can['make_sticky'])) |
|
| 913 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 914 | - elseif ($_REQUEST['actions'][$row['id_topic']] == 'move' && !in_array(0, $boards_can['move_any']) && !in_array($row['id_board'], $boards_can['move_any']) && ($row['id_member_started'] != $user_info['id'] || (!in_array(0, $boards_can['move_own']) && !in_array($row['id_board'], $boards_can['move_own'])))) |
|
| 915 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 916 | - elseif ($_REQUEST['actions'][$row['id_topic']] == 'remove' && !in_array(0, $boards_can['remove_any']) && !in_array($row['id_board'], $boards_can['remove_any']) && ($row['id_member_started'] != $user_info['id'] || (!in_array(0, $boards_can['remove_own']) && !in_array($row['id_board'], $boards_can['remove_own'])))) |
|
| 917 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 964 | + elseif ($_REQUEST['actions'][$row['id_topic']] == 'sticky' && !in_array(0, $boards_can['make_sticky']) && !in_array($row['id_board'], $boards_can['make_sticky'])) { |
|
| 965 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 966 | + } elseif ($_REQUEST['actions'][$row['id_topic']] == 'move' && !in_array(0, $boards_can['move_any']) && !in_array($row['id_board'], $boards_can['move_any']) && ($row['id_member_started'] != $user_info['id'] || (!in_array(0, $boards_can['move_own']) && !in_array($row['id_board'], $boards_can['move_own'])))) { |
|
| 967 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 968 | + } elseif ($_REQUEST['actions'][$row['id_topic']] == 'remove' && !in_array(0, $boards_can['remove_any']) && !in_array($row['id_board'], $boards_can['remove_any']) && ($row['id_member_started'] != $user_info['id'] || (!in_array(0, $boards_can['remove_own']) && !in_array($row['id_board'], $boards_can['remove_own'])))) { |
|
| 969 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 970 | + } |
|
| 918 | 971 | // @todo $locked is not set, what are you trying to do? (taking the change it is supposed to be $row['locked']) |
| 919 | - elseif ($_REQUEST['actions'][$row['id_topic']] == 'lock' && !in_array(0, $boards_can['lock_any']) && !in_array($row['id_board'], $boards_can['lock_any']) && ($row['id_member_started'] != $user_info['id'] || $row['locked'] == 1 || (!in_array(0, $boards_can['lock_own']) && !in_array($row['id_board'], $boards_can['lock_own'])))) |
|
| 920 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 972 | + elseif ($_REQUEST['actions'][$row['id_topic']] == 'lock' && !in_array(0, $boards_can['lock_any']) && !in_array($row['id_board'], $boards_can['lock_any']) && ($row['id_member_started'] != $user_info['id'] || $row['locked'] == 1 || (!in_array(0, $boards_can['lock_own']) && !in_array($row['id_board'], $boards_can['lock_own'])))) { |
|
| 973 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 974 | + } |
|
| 921 | 975 | // If the topic is approved then you need permission to approve the posts within. |
| 922 | - elseif ($_REQUEST['actions'][$row['id_topic']] == 'approve' && (!$row['unapproved_posts'] || (!in_array(0, $boards_can['approve_posts']) && !in_array($row['id_board'], $boards_can['approve_posts'])))) |
|
| 923 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 976 | + elseif ($_REQUEST['actions'][$row['id_topic']] == 'approve' && (!$row['unapproved_posts'] || (!in_array(0, $boards_can['approve_posts']) && !in_array($row['id_board'], $boards_can['approve_posts'])))) { |
|
| 977 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 978 | + } |
|
| 924 | 979 | } |
| 925 | 980 | } |
| 926 | 981 | $smcFunc['db_free_result']($request); |
@@ -938,11 +993,11 @@ discard block |
||
| 938 | 993 | { |
| 939 | 994 | $topic = (int) $topic; |
| 940 | 995 | |
| 941 | - if ($action == 'markread') |
|
| 942 | - $markCache[] = $topic; |
|
| 943 | - elseif ($action == 'sticky') |
|
| 944 | - $stickyCache[] = $topic; |
|
| 945 | - elseif ($action == 'move') |
|
| 996 | + if ($action == 'markread') { |
|
| 997 | + $markCache[] = $topic; |
|
| 998 | + } elseif ($action == 'sticky') { |
|
| 999 | + $stickyCache[] = $topic; |
|
| 1000 | + } elseif ($action == 'move') |
|
| 946 | 1001 | { |
| 947 | 1002 | require_once($sourcedir . '/MoveTopic.php'); |
| 948 | 1003 | moveTopicConcurrence(); |
@@ -950,23 +1005,25 @@ discard block |
||
| 950 | 1005 | // $moveCache[0] is the topic, $moveCache[1] is the board to move to. |
| 951 | 1006 | $moveCache[1][$topic] = (int) (isset($_REQUEST['move_tos'][$topic]) ? $_REQUEST['move_tos'][$topic] : $_REQUEST['move_to']); |
| 952 | 1007 | |
| 953 | - if (empty($moveCache[1][$topic])) |
|
| 954 | - continue; |
|
| 1008 | + if (empty($moveCache[1][$topic])) { |
|
| 1009 | + continue; |
|
| 1010 | + } |
|
| 955 | 1011 | |
| 956 | 1012 | $moveCache[0][] = $topic; |
| 1013 | + } elseif ($action == 'remove') { |
|
| 1014 | + $removeCache[] = $topic; |
|
| 1015 | + } elseif ($action == 'lock') { |
|
| 1016 | + $lockCache[] = $topic; |
|
| 1017 | + } elseif ($action == 'approve') { |
|
| 1018 | + $approveCache[] = $topic; |
|
| 957 | 1019 | } |
| 958 | - elseif ($action == 'remove') |
|
| 959 | - $removeCache[] = $topic; |
|
| 960 | - elseif ($action == 'lock') |
|
| 961 | - $lockCache[] = $topic; |
|
| 962 | - elseif ($action == 'approve') |
|
| 963 | - $approveCache[] = $topic; |
|
| 964 | 1020 | } |
| 965 | 1021 | |
| 966 | - if (empty($board)) |
|
| 967 | - $affectedBoards = array(); |
|
| 968 | - else |
|
| 969 | - $affectedBoards = array($board => array(0, 0)); |
|
| 1022 | + if (empty($board)) { |
|
| 1023 | + $affectedBoards = array(); |
|
| 1024 | + } else { |
|
| 1025 | + $affectedBoards = array($board => array(0, 0)); |
|
| 1026 | + } |
|
| 970 | 1027 | |
| 971 | 1028 | // Do all the stickies... |
| 972 | 1029 | if (!empty($stickyCache)) |
@@ -1026,14 +1083,16 @@ discard block |
||
| 1026 | 1083 | { |
| 1027 | 1084 | $to = $moveCache[1][$row['id_topic']]; |
| 1028 | 1085 | |
| 1029 | - if (empty($to)) |
|
| 1030 | - continue; |
|
| 1086 | + if (empty($to)) { |
|
| 1087 | + continue; |
|
| 1088 | + } |
|
| 1031 | 1089 | |
| 1032 | 1090 | // Does this topic's board count the posts or not? |
| 1033 | 1091 | $countPosts[$row['id_topic']] = empty($row['count_posts']); |
| 1034 | 1092 | |
| 1035 | - if (!isset($moveTos[$to])) |
|
| 1036 | - $moveTos[$to] = array(); |
|
| 1093 | + if (!isset($moveTos[$to])) { |
|
| 1094 | + $moveTos[$to] = array(); |
|
| 1095 | + } |
|
| 1037 | 1096 | |
| 1038 | 1097 | $moveTos[$to][] = $row['id_topic']; |
| 1039 | 1098 | |
@@ -1047,8 +1106,9 @@ discard block |
||
| 1047 | 1106 | require_once($sourcedir . '/MoveTopic.php'); |
| 1048 | 1107 | |
| 1049 | 1108 | // Do the actual moves... |
| 1050 | - foreach ($moveTos as $to => $topics) |
|
| 1051 | - moveTopics($topics, $to); |
|
| 1109 | + foreach ($moveTos as $to => $topics) { |
|
| 1110 | + moveTopics($topics, $to); |
|
| 1111 | + } |
|
| 1052 | 1112 | |
| 1053 | 1113 | // Does the post counts need to be updated? |
| 1054 | 1114 | if (!empty($moveTos)) |
@@ -1097,20 +1157,23 @@ discard block |
||
| 1097 | 1157 | |
| 1098 | 1158 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 1099 | 1159 | { |
| 1100 | - if (!isset($members[$row['id_member']])) |
|
| 1101 | - $members[$row['id_member']] = 0; |
|
| 1160 | + if (!isset($members[$row['id_member']])) { |
|
| 1161 | + $members[$row['id_member']] = 0; |
|
| 1162 | + } |
|
| 1102 | 1163 | |
| 1103 | - if ($topicRecounts[$row['id_topic']] === '+') |
|
| 1104 | - $members[$row['id_member']] += 1; |
|
| 1105 | - else |
|
| 1106 | - $members[$row['id_member']] -= 1; |
|
| 1164 | + if ($topicRecounts[$row['id_topic']] === '+') { |
|
| 1165 | + $members[$row['id_member']] += 1; |
|
| 1166 | + } else { |
|
| 1167 | + $members[$row['id_member']] -= 1; |
|
| 1168 | + } |
|
| 1107 | 1169 | } |
| 1108 | 1170 | |
| 1109 | 1171 | $smcFunc['db_free_result']($request); |
| 1110 | 1172 | |
| 1111 | 1173 | // And now update them member's post counts |
| 1112 | - foreach ($members as $id_member => $post_adj) |
|
| 1113 | - updateMemberData($id_member, array('posts' => 'posts + ' . $post_adj)); |
|
| 1174 | + foreach ($members as $id_member => $post_adj) { |
|
| 1175 | + updateMemberData($id_member, array('posts' => 'posts + ' . $post_adj)); |
|
| 1176 | + } |
|
| 1114 | 1177 | |
| 1115 | 1178 | } |
| 1116 | 1179 | } |
@@ -1190,8 +1253,9 @@ discard block |
||
| 1190 | 1253 | approveTopics($approveCache); |
| 1191 | 1254 | |
| 1192 | 1255 | // Time for some logging! |
| 1193 | - foreach ($approveCache as $topic) |
|
| 1194 | - logAction('approve_topic', array('topic' => $topic, 'member' => $approveCacheMembers[$topic])); |
|
| 1256 | + foreach ($approveCache as $topic) { |
|
| 1257 | + logAction('approve_topic', array('topic' => $topic, 'member' => $approveCacheMembers[$topic])); |
|
| 1258 | + } |
|
| 1195 | 1259 | } |
| 1196 | 1260 | } |
| 1197 | 1261 | |
@@ -1226,8 +1290,7 @@ discard block |
||
| 1226 | 1290 | $lockStatus[$row['id_topic']] = empty($row['locked']); |
| 1227 | 1291 | } |
| 1228 | 1292 | $smcFunc['db_free_result']($result); |
| 1229 | - } |
|
| 1230 | - else |
|
| 1293 | + } else |
|
| 1231 | 1294 | { |
| 1232 | 1295 | $result = $smcFunc['db_query']('', ' |
| 1233 | 1296 | SELECT id_topic, locked, id_board |
@@ -1277,13 +1340,15 @@ discard block |
||
| 1277 | 1340 | ) |
| 1278 | 1341 | ); |
| 1279 | 1342 | $logged_topics = array(); |
| 1280 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1281 | - $logged_topics[$row['id_topic']] = $row['unwatched']; |
|
| 1343 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1344 | + $logged_topics[$row['id_topic']] = $row['unwatched']; |
|
| 1345 | + } |
|
| 1282 | 1346 | $smcFunc['db_free_result']($request); |
| 1283 | 1347 | |
| 1284 | 1348 | $markArray = array(); |
| 1285 | - foreach ($markCache as $topic) |
|
| 1286 | - $markArray[] = array($modSettings['maxMsgID'], $user_info['id'], $topic, (isset($logged_topics[$topic]) ? $logged_topics[$topic] : 0)); |
|
| 1349 | + foreach ($markCache as $topic) { |
|
| 1350 | + $markArray[] = array($modSettings['maxMsgID'], $user_info['id'], $topic, (isset($logged_topics[$topic]) ? $logged_topics[$topic] : 0)); |
|
| 1351 | + } |
|
| 1287 | 1352 | |
| 1288 | 1353 | $smcFunc['db_insert']('replace', |
| 1289 | 1354 | '{db_prefix}log_topics', |
@@ -1296,8 +1361,9 @@ discard block |
||
| 1296 | 1361 | foreach ($moveCache as $topic) |
| 1297 | 1362 | { |
| 1298 | 1363 | // Didn't actually move anything! |
| 1299 | - if (!isset($topic[0])) |
|
| 1300 | - break; |
|
| 1364 | + if (!isset($topic[0])) { |
|
| 1365 | + break; |
|
| 1366 | + } |
|
| 1301 | 1367 | |
| 1302 | 1368 | logAction('move', array('topic' => $topic[0], 'board_from' => $topic[1], 'board_to' => $topic[2])); |
| 1303 | 1369 | sendNotifications($topic[0], 'move'); |
@@ -1319,8 +1385,9 @@ discard block |
||
| 1319 | 1385 | 'calendar_updated' => time(), |
| 1320 | 1386 | )); |
| 1321 | 1387 | |
| 1322 | - if (!empty($affectedBoards)) |
|
| 1323 | - updateLastMessages(array_keys($affectedBoards)); |
|
| 1388 | + if (!empty($affectedBoards)) { |
|
| 1389 | + updateLastMessages(array_keys($affectedBoards)); |
|
| 1390 | + } |
|
| 1324 | 1391 | |
| 1325 | 1392 | redirectexit($redirect_url); |
| 1326 | 1393 | } |
@@ -14,8 +14,9 @@ discard block |
||
| 14 | 14 | * @version 2.1 Beta 3 |
| 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 | * Clean the request variables - add html entities to GET and slashes if magic_quotes_gpc is Off. |
@@ -44,22 +45,26 @@ discard block |
||
| 44 | 45 | unset($GLOBALS['HTTP_POST_FILES'], $GLOBALS['HTTP_POST_FILES']); |
| 45 | 46 | |
| 46 | 47 | // These keys shouldn't be set...ever. |
| 47 | - if (isset($_REQUEST['GLOBALS']) || isset($_COOKIE['GLOBALS'])) |
|
| 48 | - die('Invalid request variable.'); |
|
| 48 | + if (isset($_REQUEST['GLOBALS']) || isset($_COOKIE['GLOBALS'])) { |
|
| 49 | + die('Invalid request variable.'); |
|
| 50 | + } |
|
| 49 | 51 | |
| 50 | 52 | // Same goes for numeric keys. |
| 51 | - foreach (array_merge(array_keys($_POST), array_keys($_GET), array_keys($_FILES)) as $key) |
|
| 52 | - if (is_numeric($key)) |
|
| 53 | + foreach (array_merge(array_keys($_POST), array_keys($_GET), array_keys($_FILES)) as $key) { |
|
| 54 | + if (is_numeric($key)) |
|
| 53 | 55 | die('Numeric request keys are invalid.'); |
| 56 | + } |
|
| 54 | 57 | |
| 55 | 58 | // Numeric keys in cookies are less of a problem. Just unset those. |
| 56 | - foreach ($_COOKIE as $key => $value) |
|
| 57 | - if (is_numeric($key)) |
|
| 59 | + foreach ($_COOKIE as $key => $value) { |
|
| 60 | + if (is_numeric($key)) |
|
| 58 | 61 | unset($_COOKIE[$key]); |
| 62 | + } |
|
| 59 | 63 | |
| 60 | 64 | // Get the correct query string. It may be in an environment variable... |
| 61 | - if (!isset($_SERVER['QUERY_STRING'])) |
|
| 62 | - $_SERVER['QUERY_STRING'] = getenv('QUERY_STRING'); |
|
| 65 | + if (!isset($_SERVER['QUERY_STRING'])) { |
|
| 66 | + $_SERVER['QUERY_STRING'] = getenv('QUERY_STRING'); |
|
| 67 | + } |
|
| 63 | 68 | |
| 64 | 69 | // It seems that sticking a URL after the query string is mighty common, well, it's evil - don't. |
| 65 | 70 | if (strpos($_SERVER['QUERY_STRING'], 'http') === 0) |
@@ -83,13 +88,14 @@ discard block |
||
| 83 | 88 | parse_str(preg_replace('/&(\w+)(?=&|$)/', '&$1=', strtr($_SERVER['QUERY_STRING'], array(';?' => '&', ';' => '&', '%00' => '', "\0" => ''))), $_GET); |
| 84 | 89 | |
| 85 | 90 | // Magic quotes still applies with parse_str - so clean it up. |
| 86 | - if (function_exists('get_magic_quotes_gpc') && @get_magic_quotes_gpc() != 0 && empty($modSettings['integrate_magic_quotes'])) |
|
| 87 | - $_GET = $removeMagicQuoteFunction($_GET); |
|
| 88 | - } |
|
| 89 | - elseif (strpos(ini_get('arg_separator.input'), ';') !== false) |
|
| 91 | + if (function_exists('get_magic_quotes_gpc') && @get_magic_quotes_gpc() != 0 && empty($modSettings['integrate_magic_quotes'])) { |
|
| 92 | + $_GET = $removeMagicQuoteFunction($_GET); |
|
| 93 | + } |
|
| 94 | + } elseif (strpos(ini_get('arg_separator.input'), ';') !== false) |
|
| 90 | 95 | { |
| 91 | - if (function_exists('get_magic_quotes_gpc') && @get_magic_quotes_gpc() != 0 && empty($modSettings['integrate_magic_quotes'])) |
|
| 92 | - $_GET = $removeMagicQuoteFunction($_GET); |
|
| 96 | + if (function_exists('get_magic_quotes_gpc') && @get_magic_quotes_gpc() != 0 && empty($modSettings['integrate_magic_quotes'])) { |
|
| 97 | + $_GET = $removeMagicQuoteFunction($_GET); |
|
| 98 | + } |
|
| 93 | 99 | |
| 94 | 100 | // Search engines will send action=profile%3Bu=1, which confuses PHP. |
| 95 | 101 | foreach ($_GET as $k => $v) |
@@ -102,8 +108,9 @@ discard block |
||
| 102 | 108 | for ($i = 1, $n = count($temp); $i < $n; $i++) |
| 103 | 109 | { |
| 104 | 110 | @list ($key, $val) = @explode('=', $temp[$i], 2); |
| 105 | - if (!isset($_GET[$key])) |
|
| 106 | - $_GET[$key] = $val; |
|
| 111 | + if (!isset($_GET[$key])) { |
|
| 112 | + $_GET[$key] = $val; |
|
| 113 | + } |
|
| 107 | 114 | } |
| 108 | 115 | } |
| 109 | 116 | |
@@ -120,18 +127,20 @@ discard block |
||
| 120 | 127 | if (!empty($_SERVER['REQUEST_URI'])) |
| 121 | 128 | { |
| 122 | 129 | // Remove the .html, assuming there is one. |
| 123 | - if (substr($_SERVER['REQUEST_URI'], strrpos($_SERVER['REQUEST_URI'], '.'), 4) == '.htm') |
|
| 124 | - $request = substr($_SERVER['REQUEST_URI'], 0, strrpos($_SERVER['REQUEST_URI'], '.')); |
|
| 125 | - else |
|
| 126 | - $request = $_SERVER['REQUEST_URI']; |
|
| 130 | + if (substr($_SERVER['REQUEST_URI'], strrpos($_SERVER['REQUEST_URI'], '.'), 4) == '.htm') { |
|
| 131 | + $request = substr($_SERVER['REQUEST_URI'], 0, strrpos($_SERVER['REQUEST_URI'], '.')); |
|
| 132 | + } else { |
|
| 133 | + $request = $_SERVER['REQUEST_URI']; |
|
| 134 | + } |
|
| 127 | 135 | |
| 128 | 136 | // @todo smflib. |
| 129 | 137 | // Replace 'index.php/a,b,c/d/e,f' with 'a=b,c&d=&e=f' and parse it into $_GET. |
| 130 | 138 | if (strpos($request, basename($scripturl) . '/') !== false) |
| 131 | 139 | { |
| 132 | 140 | parse_str(substr(preg_replace('/&(\w+)(?=&|$)/', '&$1=', strtr(preg_replace('~/([^,/]+),~', '/$1=', substr($request, strpos($request, basename($scripturl)) + strlen(basename($scripturl)))), '/', '&')), 1), $temp); |
| 133 | - if (function_exists('get_magic_quotes_gpc') && @get_magic_quotes_gpc() != 0 && empty($modSettings['integrate_magic_quotes'])) |
|
| 134 | - $temp = $removeMagicQuoteFunction($temp); |
|
| 141 | + if (function_exists('get_magic_quotes_gpc') && @get_magic_quotes_gpc() != 0 && empty($modSettings['integrate_magic_quotes'])) { |
|
| 142 | + $temp = $removeMagicQuoteFunction($temp); |
|
| 143 | + } |
|
| 135 | 144 | $_GET += $temp; |
| 136 | 145 | } |
| 137 | 146 | } |
@@ -142,9 +151,10 @@ discard block |
||
| 142 | 151 | $_ENV = $removeMagicQuoteFunction($_ENV); |
| 143 | 152 | $_POST = $removeMagicQuoteFunction($_POST); |
| 144 | 153 | $_COOKIE = $removeMagicQuoteFunction($_COOKIE); |
| 145 | - foreach ($_FILES as $k => $dummy) |
|
| 146 | - if (isset($_FILES[$k]['name'])) |
|
| 154 | + foreach ($_FILES as $k => $dummy) { |
|
| 155 | + if (isset($_FILES[$k]['name'])) |
|
| 147 | 156 | $_FILES[$k]['name'] = $removeMagicQuoteFunction($_FILES[$k]['name']); |
| 157 | + } |
|
| 148 | 158 | } |
| 149 | 159 | |
| 150 | 160 | // Add entities to GET. This is kinda like the slashes on everything else. |
@@ -160,11 +170,13 @@ discard block |
||
| 160 | 170 | $_REQUEST['board'] = (string) $_REQUEST['board']; |
| 161 | 171 | |
| 162 | 172 | // If there's a slash in it, we've got a start value! (old, compatible links.) |
| 163 | - if (strpos($_REQUEST['board'], '/') !== false) |
|
| 164 | - list ($_REQUEST['board'], $_REQUEST['start']) = explode('/', $_REQUEST['board']); |
|
| 173 | + if (strpos($_REQUEST['board'], '/') !== false) { |
|
| 174 | + list ($_REQUEST['board'], $_REQUEST['start']) = explode('/', $_REQUEST['board']); |
|
| 175 | + } |
|
| 165 | 176 | // Same idea, but dots. This is the currently used format - ?board=1.0... |
| 166 | - elseif (strpos($_REQUEST['board'], '.') !== false) |
|
| 167 | - list ($_REQUEST['board'], $_REQUEST['start']) = explode('.', $_REQUEST['board']); |
|
| 177 | + elseif (strpos($_REQUEST['board'], '.') !== false) { |
|
| 178 | + list ($_REQUEST['board'], $_REQUEST['start']) = explode('.', $_REQUEST['board']); |
|
| 179 | + } |
|
| 168 | 180 | // Now make absolutely sure it's a number. |
| 169 | 181 | $board = (int) $_REQUEST['board']; |
| 170 | 182 | $_REQUEST['start'] = isset($_REQUEST['start']) ? (int) $_REQUEST['start'] : 0; |
@@ -173,12 +185,14 @@ discard block |
||
| 173 | 185 | $_GET['board'] = $board; |
| 174 | 186 | } |
| 175 | 187 | // Well, $board is going to be a number no matter what. |
| 176 | - else |
|
| 177 | - $board = 0; |
|
| 188 | + else { |
|
| 189 | + $board = 0; |
|
| 190 | + } |
|
| 178 | 191 | |
| 179 | 192 | // If there's a threadid, it's probably an old YaBB SE link. Flow with it. |
| 180 | - if (isset($_REQUEST['threadid']) && !isset($_REQUEST['topic'])) |
|
| 181 | - $_REQUEST['topic'] = $_REQUEST['threadid']; |
|
| 193 | + if (isset($_REQUEST['threadid']) && !isset($_REQUEST['topic'])) { |
|
| 194 | + $_REQUEST['topic'] = $_REQUEST['threadid']; |
|
| 195 | + } |
|
| 182 | 196 | |
| 183 | 197 | // We've got topic! |
| 184 | 198 | if (isset($_REQUEST['topic'])) |
@@ -187,29 +201,34 @@ discard block |
||
| 187 | 201 | $_REQUEST['topic'] = (string) $_REQUEST['topic']; |
| 188 | 202 | |
| 189 | 203 | // Slash means old, beta style, formatting. That's okay though, the link should still work. |
| 190 | - if (strpos($_REQUEST['topic'], '/') !== false) |
|
| 191 | - list ($_REQUEST['topic'], $_REQUEST['start']) = explode('/', $_REQUEST['topic']); |
|
| 204 | + if (strpos($_REQUEST['topic'], '/') !== false) { |
|
| 205 | + list ($_REQUEST['topic'], $_REQUEST['start']) = explode('/', $_REQUEST['topic']); |
|
| 206 | + } |
|
| 192 | 207 | // Dots are useful and fun ;). This is ?topic=1.15. |
| 193 | - elseif (strpos($_REQUEST['topic'], '.') !== false) |
|
| 194 | - list ($_REQUEST['topic'], $_REQUEST['start']) = explode('.', $_REQUEST['topic']); |
|
| 208 | + elseif (strpos($_REQUEST['topic'], '.') !== false) { |
|
| 209 | + list ($_REQUEST['topic'], $_REQUEST['start']) = explode('.', $_REQUEST['topic']); |
|
| 210 | + } |
|
| 195 | 211 | |
| 196 | 212 | $topic = (int) $_REQUEST['topic']; |
| 197 | 213 | |
| 198 | 214 | // Now make sure the online log gets the right number. |
| 199 | 215 | $_GET['topic'] = $topic; |
| 216 | + } else { |
|
| 217 | + $topic = 0; |
|
| 200 | 218 | } |
| 201 | - else |
|
| 202 | - $topic = 0; |
|
| 203 | 219 | |
| 204 | 220 | // There should be a $_REQUEST['start'], some at least. If you need to default to other than 0, use $_GET['start']. |
| 205 | - if (empty($_REQUEST['start']) || $_REQUEST['start'] < 0 || (int) $_REQUEST['start'] > 2147473647) |
|
| 206 | - $_REQUEST['start'] = 0; |
|
| 221 | + if (empty($_REQUEST['start']) || $_REQUEST['start'] < 0 || (int) $_REQUEST['start'] > 2147473647) { |
|
| 222 | + $_REQUEST['start'] = 0; |
|
| 223 | + } |
|
| 207 | 224 | |
| 208 | 225 | // The action needs to be a string and not an array or anything else |
| 209 | - if (isset($_REQUEST['action'])) |
|
| 210 | - $_REQUEST['action'] = (string) $_REQUEST['action']; |
|
| 211 | - if (isset($_GET['action'])) |
|
| 212 | - $_GET['action'] = (string) $_GET['action']; |
|
| 226 | + if (isset($_REQUEST['action'])) { |
|
| 227 | + $_REQUEST['action'] = (string) $_REQUEST['action']; |
|
| 228 | + } |
|
| 229 | + if (isset($_GET['action'])) { |
|
| 230 | + $_GET['action'] = (string) $_GET['action']; |
|
| 231 | + } |
|
| 213 | 232 | |
| 214 | 233 | // Some mail providers like to encode semicolons in activation URLs... |
| 215 | 234 | if (!empty($_REQUEST['action']) && substr($_SERVER['QUERY_STRING'], 0, 18) == 'action=activate%3b') |
@@ -235,29 +254,33 @@ discard block |
||
| 235 | 254 | $_SERVER['BAN_CHECK_IP'] = $_SERVER['REMOTE_ADDR']; |
| 236 | 255 | |
| 237 | 256 | // If we haven't specified how to handle Reverse Proxy IP headers, lets do what we always used to do. |
| 238 | - if (!isset($modSettings['proxy_ip_header'])) |
|
| 239 | - $modSettings['proxy_ip_header'] = 'autodetect'; |
|
| 257 | + if (!isset($modSettings['proxy_ip_header'])) { |
|
| 258 | + $modSettings['proxy_ip_header'] = 'autodetect'; |
|
| 259 | + } |
|
| 240 | 260 | |
| 241 | 261 | // Which headers are we going to check for Reverse Proxy IP headers? |
| 242 | - if ($modSettings['proxy_ip_header'] == 'disabled') |
|
| 243 | - $reverseIPheaders = array(); |
|
| 244 | - elseif ($modSettings['proxy_ip_header'] == 'autodetect') |
|
| 245 | - $reverseIPheaders = array('HTTP_X_FORWARDED_FOR', 'HTTP_CLIENT_IP'); |
|
| 246 | - else |
|
| 247 | - $reverseIPheaders = array($modSettings['proxy_ip_header']); |
|
| 262 | + if ($modSettings['proxy_ip_header'] == 'disabled') { |
|
| 263 | + $reverseIPheaders = array(); |
|
| 264 | + } elseif ($modSettings['proxy_ip_header'] == 'autodetect') { |
|
| 265 | + $reverseIPheaders = array('HTTP_X_FORWARDED_FOR', 'HTTP_CLIENT_IP'); |
|
| 266 | + } else { |
|
| 267 | + $reverseIPheaders = array($modSettings['proxy_ip_header']); |
|
| 268 | + } |
|
| 248 | 269 | |
| 249 | 270 | // Find the user's IP address. (but don't let it give you 'unknown'!) |
| 250 | 271 | foreach ($reverseIPheaders as $proxyIPheader) |
| 251 | 272 | { |
| 252 | 273 | // Ignore if this is not set. |
| 253 | - if (!isset($_SERVER[$proxyIPheader])) |
|
| 254 | - continue; |
|
| 274 | + if (!isset($_SERVER[$proxyIPheader])) { |
|
| 275 | + continue; |
|
| 276 | + } |
|
| 255 | 277 | |
| 256 | 278 | if (!empty($modSettings['proxy_ip_servers'])) |
| 257 | 279 | { |
| 258 | - foreach (explode(',', $modSettings['proxy_ip_servers']) as $proxy) |
|
| 259 | - if ($proxy == $_SERVER['REMOTE_ADDR'] || matchIPtoCIDR($_SERVER['REMOTE_ADDR'], $proxy)) |
|
| 280 | + foreach (explode(',', $modSettings['proxy_ip_servers']) as $proxy) { |
|
| 281 | + if ($proxy == $_SERVER['REMOTE_ADDR'] || matchIPtoCIDR($_SERVER['REMOTE_ADDR'], $proxy)) |
|
| 260 | 282 | continue; |
| 283 | + } |
|
| 261 | 284 | } |
| 262 | 285 | |
| 263 | 286 | // If there are commas, get the last one.. probably. |
@@ -277,8 +300,9 @@ discard block |
||
| 277 | 300 | |
| 278 | 301 | // Just incase we have a legacy IPv4 address. |
| 279 | 302 | // @ TODO: Convert to IPv6. |
| 280 | - if (preg_match('~^((([1]?\d)?\d|2[0-4]\d|25[0-5])\.){3}(([1]?\d)?\d|2[0-4]\d|25[0-5])$~', $_SERVER[$proxyIPheader]) === 0) |
|
| 281 | - continue; |
|
| 303 | + if (preg_match('~^((([1]?\d)?\d|2[0-4]\d|25[0-5])\.){3}(([1]?\d)?\d|2[0-4]\d|25[0-5])$~', $_SERVER[$proxyIPheader]) === 0) { |
|
| 304 | + continue; |
|
| 305 | + } |
|
| 282 | 306 | } |
| 283 | 307 | |
| 284 | 308 | continue; |
@@ -290,36 +314,40 @@ discard block |
||
| 290 | 314 | } |
| 291 | 315 | } |
| 292 | 316 | // Otherwise just use the only one. |
| 293 | - elseif (preg_match('~^((0|10|172\.(1[6-9]|2[0-9]|3[01])|192\.168|255|127)\.|unknown|::1|fe80::|fc00::)~', $_SERVER[$proxyIPheader]) == 0 || preg_match('~^((0|10|172\.(1[6-9]|2[0-9]|3[01])|192\.168|255|127)\.|unknown|::1|fe80::|fc00::)~', $_SERVER['REMOTE_ADDR']) != 0) |
|
| 294 | - $_SERVER['BAN_CHECK_IP'] = $_SERVER[$proxyIPheader]; |
|
| 295 | - elseif (!isValidIPv6($_SERVER[$proxyIPheader]) || preg_match('~::ffff:\d+\.\d+\.\d+\.\d+~', $_SERVER[$proxyIPheader]) !== 0) |
|
| 317 | + elseif (preg_match('~^((0|10|172\.(1[6-9]|2[0-9]|3[01])|192\.168|255|127)\.|unknown|::1|fe80::|fc00::)~', $_SERVER[$proxyIPheader]) == 0 || preg_match('~^((0|10|172\.(1[6-9]|2[0-9]|3[01])|192\.168|255|127)\.|unknown|::1|fe80::|fc00::)~', $_SERVER['REMOTE_ADDR']) != 0) { |
|
| 318 | + $_SERVER['BAN_CHECK_IP'] = $_SERVER[$proxyIPheader]; |
|
| 319 | + } elseif (!isValidIPv6($_SERVER[$proxyIPheader]) || preg_match('~::ffff:\d+\.\d+\.\d+\.\d+~', $_SERVER[$proxyIPheader]) !== 0) |
|
| 296 | 320 | { |
| 297 | 321 | $_SERVER[$proxyIPheader] = preg_replace('~^::ffff:(\d+\.\d+\.\d+\.\d+)~', '\1', $_SERVER[$proxyIPheader]); |
| 298 | 322 | |
| 299 | 323 | // Just incase we have a legacy IPv4 address. |
| 300 | 324 | // @ TODO: Convert to IPv6. |
| 301 | - if (preg_match('~^((([1]?\d)?\d|2[0-4]\d|25[0-5])\.){3}(([1]?\d)?\d|2[0-4]\d|25[0-5])$~', $_SERVER[$proxyIPheader]) === 0) |
|
| 302 | - continue; |
|
| 325 | + if (preg_match('~^((([1]?\d)?\d|2[0-4]\d|25[0-5])\.){3}(([1]?\d)?\d|2[0-4]\d|25[0-5])$~', $_SERVER[$proxyIPheader]) === 0) { |
|
| 326 | + continue; |
|
| 327 | + } |
|
| 303 | 328 | } |
| 304 | 329 | } |
| 305 | 330 | |
| 306 | 331 | // Make sure we know the URL of the current request. |
| 307 | - if (empty($_SERVER['REQUEST_URI'])) |
|
| 308 | - $_SERVER['REQUEST_URL'] = $scripturl . (!empty($_SERVER['QUERY_STRING']) ? '?' . $_SERVER['QUERY_STRING'] : ''); |
|
| 309 | - elseif (preg_match('~^([^/]+//[^/]+)~', $scripturl, $match) == 1) |
|
| 310 | - $_SERVER['REQUEST_URL'] = $match[1] . $_SERVER['REQUEST_URI']; |
|
| 311 | - else |
|
| 312 | - $_SERVER['REQUEST_URL'] = $_SERVER['REQUEST_URI']; |
|
| 332 | + if (empty($_SERVER['REQUEST_URI'])) { |
|
| 333 | + $_SERVER['REQUEST_URL'] = $scripturl . (!empty($_SERVER['QUERY_STRING']) ? '?' . $_SERVER['QUERY_STRING'] : ''); |
|
| 334 | + } elseif (preg_match('~^([^/]+//[^/]+)~', $scripturl, $match) == 1) { |
|
| 335 | + $_SERVER['REQUEST_URL'] = $match[1] . $_SERVER['REQUEST_URI']; |
|
| 336 | + } else { |
|
| 337 | + $_SERVER['REQUEST_URL'] = $_SERVER['REQUEST_URI']; |
|
| 338 | + } |
|
| 313 | 339 | |
| 314 | 340 | // And make sure HTTP_USER_AGENT is set. |
| 315 | 341 | $_SERVER['HTTP_USER_AGENT'] = isset($_SERVER['HTTP_USER_AGENT']) ? (isset($smcFunc['htmlspecialchars']) ? $smcFunc['htmlspecialchars']($smcFunc['db_unescape_string']($_SERVER['HTTP_USER_AGENT']), ENT_QUOTES) : htmlspecialchars($smcFunc['db_unescape_string']($_SERVER['HTTP_USER_AGENT']), ENT_QUOTES)) : ''; |
| 316 | 342 | |
| 317 | 343 | // Some final checking. |
| 318 | - if (!isValidIP($_SERVER['BAN_CHECK_IP'])) |
|
| 319 | - $_SERVER['BAN_CHECK_IP'] = ''; |
|
| 320 | - if ($_SERVER['REMOTE_ADDR'] == 'unknown') |
|
| 321 | - $_SERVER['REMOTE_ADDR'] = ''; |
|
| 322 | -} |
|
| 344 | + if (!isValidIP($_SERVER['BAN_CHECK_IP'])) { |
|
| 345 | + $_SERVER['BAN_CHECK_IP'] = ''; |
|
| 346 | + } |
|
| 347 | + if ($_SERVER['REMOTE_ADDR'] == 'unknown') { |
|
| 348 | + $_SERVER['REMOTE_ADDR'] = ''; |
|
| 349 | + } |
|
| 350 | + } |
|
| 323 | 351 | |
| 324 | 352 | /** |
| 325 | 353 | * Validates a IPv6 address. returns true if it is ipv6. |
@@ -330,8 +358,9 @@ discard block |
||
| 330 | 358 | function isValidIPv6($ip) |
| 331 | 359 | { |
| 332 | 360 | //looking for : |
| 333 | - if (strpos($ip , ':') === false ) |
|
| 334 | - return false; |
|
| 361 | + if (strpos($ip , ':') === false ) { |
|
| 362 | + return false; |
|
| 363 | + } |
|
| 335 | 364 | |
| 336 | 365 | //check valid address |
| 337 | 366 | return inet_pton($ip); |
@@ -348,15 +377,17 @@ discard block |
||
| 348 | 377 | static $expanded = array(); |
| 349 | 378 | |
| 350 | 379 | // Check if we have done this already. |
| 351 | - if (isset($expanded[$ip])) |
|
| 352 | - return $expanded[$ip]; |
|
| 380 | + if (isset($expanded[$ip])) { |
|
| 381 | + return $expanded[$ip]; |
|
| 382 | + } |
|
| 353 | 383 | |
| 354 | 384 | // Expand the IP out. |
| 355 | 385 | $expanded_ip = explode(':', expandIPv6($ip)); |
| 356 | 386 | |
| 357 | 387 | $new_ip = array(); |
| 358 | - foreach ($expanded_ip as $int) |
|
| 359 | - $new_ip[] = hexdec($int); |
|
| 388 | + foreach ($expanded_ip as $int) { |
|
| 389 | + $new_ip[] = hexdec($int); |
|
| 390 | + } |
|
| 360 | 391 | |
| 361 | 392 | // Save this incase of repeated use. |
| 362 | 393 | $expanded[$ip] = $new_ip; |
@@ -376,8 +407,9 @@ discard block |
||
| 376 | 407 | static $converted = array(); |
| 377 | 408 | |
| 378 | 409 | // Check if we have done this already. |
| 379 | - if (isset($converted[$addr])) |
|
| 380 | - return $converted[$addr]; |
|
| 410 | + if (isset($converted[$addr])) { |
|
| 411 | + return $converted[$addr]; |
|
| 412 | + } |
|
| 381 | 413 | |
| 382 | 414 | // Check if there are segments missing, insert if necessary. |
| 383 | 415 | if (strpos($addr, '::') !== false) |
@@ -387,18 +419,20 @@ discard block |
||
| 387 | 419 | $part[1] = explode(':', $part[1]); |
| 388 | 420 | $missing = array(); |
| 389 | 421 | |
| 390 | - for ($i = 0; $i < (8 - (count($part[0]) + count($part[1]))); $i++) |
|
| 391 | - array_push($missing, '0000'); |
|
| 422 | + for ($i = 0; $i < (8 - (count($part[0]) + count($part[1]))); $i++) { |
|
| 423 | + array_push($missing, '0000'); |
|
| 424 | + } |
|
| 392 | 425 | |
| 393 | 426 | $part = array_merge($part[0], $missing, $part[1]); |
| 427 | + } else { |
|
| 428 | + $part = explode(':', $addr); |
|
| 394 | 429 | } |
| 395 | - else |
|
| 396 | - $part = explode(':', $addr); |
|
| 397 | 430 | |
| 398 | 431 | // Pad each segment until it has 4 digits. |
| 399 | - foreach ($part as &$p) |
|
| 400 | - while (strlen($p) < 4) |
|
| 432 | + foreach ($part as &$p) { |
|
| 433 | + while (strlen($p) < 4) |
|
| 401 | 434 | $p = '0' . $p; |
| 435 | + } |
|
| 402 | 436 | |
| 403 | 437 | unset($p); |
| 404 | 438 | |
@@ -409,11 +443,12 @@ discard block |
||
| 409 | 443 | $converted[$addr] = $result; |
| 410 | 444 | |
| 411 | 445 | // Quick check to make sure the length is as expected. |
| 412 | - if (!$strict_check || strlen($result) == 39) |
|
| 413 | - return $result; |
|
| 414 | - else |
|
| 415 | - return false; |
|
| 416 | -} |
|
| 446 | + if (!$strict_check || strlen($result) == 39) { |
|
| 447 | + return $result; |
|
| 448 | + } else { |
|
| 449 | + return false; |
|
| 450 | + } |
|
| 451 | + } |
|
| 417 | 452 | |
| 418 | 453 | |
| 419 | 454 | /** |
@@ -444,15 +479,17 @@ discard block |
||
| 444 | 479 | { |
| 445 | 480 | global $smcFunc; |
| 446 | 481 | |
| 447 | - if (!is_array($var)) |
|
| 448 | - return $smcFunc['db_escape_string']($var); |
|
| 482 | + if (!is_array($var)) { |
|
| 483 | + return $smcFunc['db_escape_string']($var); |
|
| 484 | + } |
|
| 449 | 485 | |
| 450 | 486 | // Reindex the array with slashes. |
| 451 | 487 | $new_var = array(); |
| 452 | 488 | |
| 453 | 489 | // Add slashes to every element, even the indexes! |
| 454 | - foreach ($var as $k => $v) |
|
| 455 | - $new_var[$smcFunc['db_escape_string']($k)] = escapestring__recursive($v); |
|
| 490 | + foreach ($var as $k => $v) { |
|
| 491 | + $new_var[$smcFunc['db_escape_string']($k)] = escapestring__recursive($v); |
|
| 492 | + } |
|
| 456 | 493 | |
| 457 | 494 | return $new_var; |
| 458 | 495 | } |
@@ -472,12 +509,14 @@ discard block |
||
| 472 | 509 | { |
| 473 | 510 | global $smcFunc; |
| 474 | 511 | |
| 475 | - if (!is_array($var)) |
|
| 476 | - return isset($smcFunc['htmlspecialchars']) ? $smcFunc['htmlspecialchars']($var, ENT_QUOTES) : htmlspecialchars($var, ENT_QUOTES); |
|
| 512 | + if (!is_array($var)) { |
|
| 513 | + return isset($smcFunc['htmlspecialchars']) ? $smcFunc['htmlspecialchars']($var, ENT_QUOTES) : htmlspecialchars($var, ENT_QUOTES); |
|
| 514 | + } |
|
| 477 | 515 | |
| 478 | 516 | // Add the htmlspecialchars to every element. |
| 479 | - foreach ($var as $k => $v) |
|
| 480 | - $var[$k] = $level > 25 ? null : htmlspecialchars__recursive($v, $level + 1); |
|
| 517 | + foreach ($var as $k => $v) { |
|
| 518 | + $var[$k] = $level > 25 ? null : htmlspecialchars__recursive($v, $level + 1); |
|
| 519 | + } |
|
| 481 | 520 | |
| 482 | 521 | return $var; |
| 483 | 522 | } |
@@ -495,15 +534,17 @@ discard block |
||
| 495 | 534 | */ |
| 496 | 535 | function urldecode__recursive($var, $level = 0) |
| 497 | 536 | { |
| 498 | - if (!is_array($var)) |
|
| 499 | - return urldecode($var); |
|
| 537 | + if (!is_array($var)) { |
|
| 538 | + return urldecode($var); |
|
| 539 | + } |
|
| 500 | 540 | |
| 501 | 541 | // Reindex the array... |
| 502 | 542 | $new_var = array(); |
| 503 | 543 | |
| 504 | 544 | // Add the htmlspecialchars to every element. |
| 505 | - foreach ($var as $k => $v) |
|
| 506 | - $new_var[urldecode($k)] = $level > 25 ? null : urldecode__recursive($v, $level + 1); |
|
| 545 | + foreach ($var as $k => $v) { |
|
| 546 | + $new_var[urldecode($k)] = $level > 25 ? null : urldecode__recursive($v, $level + 1); |
|
| 547 | + } |
|
| 507 | 548 | |
| 508 | 549 | return $new_var; |
| 509 | 550 | } |
@@ -521,15 +562,17 @@ discard block |
||
| 521 | 562 | { |
| 522 | 563 | global $smcFunc; |
| 523 | 564 | |
| 524 | - if (!is_array($var)) |
|
| 525 | - return $smcFunc['db_unescape_string']($var); |
|
| 565 | + if (!is_array($var)) { |
|
| 566 | + return $smcFunc['db_unescape_string']($var); |
|
| 567 | + } |
|
| 526 | 568 | |
| 527 | 569 | // Reindex the array without slashes, this time. |
| 528 | 570 | $new_var = array(); |
| 529 | 571 | |
| 530 | 572 | // Strip the slashes from every element. |
| 531 | - foreach ($var as $k => $v) |
|
| 532 | - $new_var[$smcFunc['db_unescape_string']($k)] = unescapestring__recursive($v); |
|
| 573 | + foreach ($var as $k => $v) { |
|
| 574 | + $new_var[$smcFunc['db_unescape_string']($k)] = unescapestring__recursive($v); |
|
| 575 | + } |
|
| 533 | 576 | |
| 534 | 577 | return $new_var; |
| 535 | 578 | } |
@@ -547,15 +590,17 @@ discard block |
||
| 547 | 590 | */ |
| 548 | 591 | function stripslashes__recursive($var, $level = 0) |
| 549 | 592 | { |
| 550 | - if (!is_array($var)) |
|
| 551 | - return stripslashes($var); |
|
| 593 | + if (!is_array($var)) { |
|
| 594 | + return stripslashes($var); |
|
| 595 | + } |
|
| 552 | 596 | |
| 553 | 597 | // Reindex the array without slashes, this time. |
| 554 | 598 | $new_var = array(); |
| 555 | 599 | |
| 556 | 600 | // Strip the slashes from every element. |
| 557 | - foreach ($var as $k => $v) |
|
| 558 | - $new_var[stripslashes($k)] = $level > 25 ? null : stripslashes__recursive($v, $level + 1); |
|
| 601 | + foreach ($var as $k => $v) { |
|
| 602 | + $new_var[stripslashes($k)] = $level > 25 ? null : stripslashes__recursive($v, $level + 1); |
|
| 603 | + } |
|
| 559 | 604 | |
| 560 | 605 | return $new_var; |
| 561 | 606 | } |
@@ -576,12 +621,14 @@ discard block |
||
| 576 | 621 | global $smcFunc; |
| 577 | 622 | |
| 578 | 623 | // Remove spaces (32), tabs (9), returns (13, 10, and 11), nulls (0), and hard spaces. (160) |
| 579 | - if (!is_array($var)) |
|
| 580 | - return isset($smcFunc) ? $smcFunc['htmltrim']($var) : trim($var, ' ' . "\t\n\r\x0B" . '\0' . "\xA0"); |
|
| 624 | + if (!is_array($var)) { |
|
| 625 | + return isset($smcFunc) ? $smcFunc['htmltrim']($var) : trim($var, ' ' . "\t\n\r\x0B" . '\0' . "\xA0"); |
|
| 626 | + } |
|
| 581 | 627 | |
| 582 | 628 | // Go through all the elements and remove the whitespace. |
| 583 | - foreach ($var as $k => $v) |
|
| 584 | - $var[$k] = $level > 25 ? null : htmltrim__recursive($v, $level + 1); |
|
| 629 | + foreach ($var as $k => $v) { |
|
| 630 | + $var[$k] = $level > 25 ? null : htmltrim__recursive($v, $level + 1); |
|
| 631 | + } |
|
| 585 | 632 | |
| 586 | 633 | return $var; |
| 587 | 634 | } |
@@ -646,30 +693,37 @@ discard block |
||
| 646 | 693 | global $scripturl, $modSettings, $context; |
| 647 | 694 | |
| 648 | 695 | // If $scripturl is set to nothing, or the SID is not defined (SSI?) just quit. |
| 649 | - if ($scripturl == '' || !defined('SID')) |
|
| 650 | - return $buffer; |
|
| 696 | + if ($scripturl == '' || !defined('SID')) { |
|
| 697 | + return $buffer; |
|
| 698 | + } |
|
| 651 | 699 | |
| 652 | 700 | // Do nothing if the session is cookied, or they are a crawler - guests are caught by redirectexit(). This doesn't work below PHP 4.3.0, because it makes the output buffer bigger. |
| 653 | 701 | // @todo smflib |
| 654 | - if (empty($_COOKIE) && SID != '' && !isBrowser('possibly_robot')) |
|
| 655 | - $buffer = preg_replace('/(?<!<link rel="canonical" href=)"' . preg_quote($scripturl, '/') . '(?!\?' . preg_quote(SID, '/') . ')\\??/', '"' . $scripturl . '?' . SID . '&', $buffer); |
|
| 702 | + if (empty($_COOKIE) && SID != '' && !isBrowser('possibly_robot')) { |
|
| 703 | + $buffer = preg_replace('/(?<!<link rel="canonical" href=)"' . preg_quote($scripturl, '/') . '(?!\?' . preg_quote(SID, '/') . ')\\??/', '"' . $scripturl . '?' . SID . '&', $buffer); |
|
| 704 | + } |
|
| 656 | 705 | // Debugging templates, are we? |
| 657 | - elseif (isset($_GET['debug'])) |
|
| 658 | - $buffer = preg_replace('/(?<!<link rel="canonical" href=)"' . preg_quote($scripturl, '/') . '\\??/', '"' . $scripturl . '?debug;', $buffer); |
|
| 706 | + elseif (isset($_GET['debug'])) { |
|
| 707 | + $buffer = preg_replace('/(?<!<link rel="canonical" href=)"' . preg_quote($scripturl, '/') . '\\??/', '"' . $scripturl . '?debug;', $buffer); |
|
| 708 | + } |
|
| 659 | 709 | |
| 660 | 710 | // This should work even in 4.2.x, just not CGI without cgi.fix_pathinfo. |
| 661 | 711 | if (!empty($modSettings['queryless_urls']) && (!$context['server']['is_cgi'] || ini_get('cgi.fix_pathinfo') == 1 || @get_cfg_var('cgi.fix_pathinfo') == 1) && ($context['server']['is_apache'] || $context['server']['is_lighttpd'] || $context['server']['is_litespeed'])) |
| 662 | 712 | { |
| 663 | 713 | // Let's do something special for session ids! |
| 664 | - if (defined('SID') && SID != '') |
|
| 665 | - $buffer = preg_replace_callback('~"' . preg_quote($scripturl, '/') . '\?(?:' . SID . '(?:;|&|&))((?:board|topic)=[^#"]+?)(#[^"]*?)?"~', function ($m) |
|
| 714 | + if (defined('SID') && SID != '') { |
|
| 715 | + $buffer = preg_replace_callback('~"' . preg_quote($scripturl, '/') . '\?(?:' . SID . '(?:;|&|&))((?:board|topic)=[^#"]+?)(#[^"]*?)?"~', function ($m) |
|
| 666 | 716 | { |
| 667 | - global $scripturl; return '"' . $scripturl . "/" . strtr("$m[1]", '&;=', '//,') . ".html?" . SID . (isset($m[2]) ? $m[2] : "") . '"'; |
|
| 717 | + global $scripturl; |
|
| 718 | + } |
|
| 719 | + return '"' . $scripturl . "/" . strtr("$m[1]", '&;=', '//,') . ".html?" . SID . (isset($m[2]) ? $m[2] : "") . '"'; |
|
| 668 | 720 | }, $buffer); |
| 669 | - else |
|
| 670 | - $buffer = preg_replace_callback('~"' . preg_quote($scripturl, '/') . '\?((?:board|topic)=[^#"]+?)(#[^"]*?)?"~', function ($m) |
|
| 721 | + else { |
|
| 722 | + $buffer = preg_replace_callback('~"' . preg_quote($scripturl, '/') . '\?((?:board|topic)=[^#"]+?)(#[^"]*?)?"~', function ($m) |
|
| 671 | 723 | { |
| 672 | - global $scripturl; return '"' . $scripturl . '/' . strtr("$m[1]", '&;=', '//,') . '.html' . (isset($m[2]) ? $m[2] : "") . '"'; |
|
| 724 | + global $scripturl; |
|
| 725 | + } |
|
| 726 | + return '"' . $scripturl . '/' . strtr("$m[1]", '&;=', '//,') . '.html' . (isset($m[2]) ? $m[2] : "") . '"'; |
|
| 673 | 727 | }, $buffer ); |
| 674 | 728 | } |
| 675 | 729 | |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 3 |
| 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 | * Sets the SMF-style login cookie and session based on the id_member and password passed. |
@@ -43,8 +44,9 @@ discard block |
||
| 43 | 44 | $array = smf_json_decode($_COOKIE[$cookiename], true); |
| 44 | 45 | |
| 45 | 46 | // Legacy format |
| 46 | - if (is_null($array)) |
|
| 47 | - $array = safe_unserialize($_COOKIE[$cookiename]); |
|
| 47 | + if (is_null($array)) { |
|
| 48 | + $array = safe_unserialize($_COOKIE[$cookiename]); |
|
| 49 | + } |
|
| 48 | 50 | |
| 49 | 51 | // Out with the old, in with the new! |
| 50 | 52 | if (isset($array[3]) && $array[3] != $cookie_state) |
@@ -62,8 +64,9 @@ discard block |
||
| 62 | 64 | smf_setcookie($cookiename, $data, time() + $cookie_length, $cookie_url[1], $cookie_url[0]); |
| 63 | 65 | |
| 64 | 66 | // If subdomain-independent cookies are on, unset the subdomain-dependent cookie too. |
| 65 | - if (empty($id) && !empty($modSettings['globalCookies'])) |
|
| 66 | - smf_setcookie($cookiename, $data, time() + $cookie_length, $cookie_url[1], ''); |
|
| 67 | + if (empty($id) && !empty($modSettings['globalCookies'])) { |
|
| 68 | + smf_setcookie($cookiename, $data, time() + $cookie_length, $cookie_url[1], ''); |
|
| 69 | + } |
|
| 67 | 70 | |
| 68 | 71 | // Any alias URLs? This is mainly for use with frames, etc. |
| 69 | 72 | if (!empty($modSettings['forum_alias_urls'])) |
@@ -79,8 +82,9 @@ discard block |
||
| 79 | 82 | |
| 80 | 83 | $cookie_url = url_parts(!empty($modSettings['localCookies']), !empty($modSettings['globalCookies'])); |
| 81 | 84 | |
| 82 | - if ($cookie_url[0] == '') |
|
| 83 | - $cookie_url[0] = strtok($alias, '/'); |
|
| 85 | + if ($cookie_url[0] == '') { |
|
| 86 | + $cookie_url[0] = strtok($alias, '/'); |
|
| 87 | + } |
|
| 84 | 88 | |
| 85 | 89 | smf_setcookie($cookiename, $data, time() + $cookie_length, $cookie_url[1], $cookie_url[0]); |
| 86 | 90 | } |
@@ -126,8 +130,9 @@ discard block |
||
| 126 | 130 | $identifier = $cookiename . '_tfa'; |
| 127 | 131 | $cookie_state = (empty($modSettings['localCookies']) ? 0 : 1) | (empty($modSettings['globalCookies']) ? 0 : 2); |
| 128 | 132 | |
| 129 | - if ($preserve) |
|
| 130 | - $cookie_length = 81600 * 30; |
|
| 133 | + if ($preserve) { |
|
| 134 | + $cookie_length = 81600 * 30; |
|
| 135 | + } |
|
| 131 | 136 | |
| 132 | 137 | // Get the data and path to set it on. |
| 133 | 138 | $data = json_encode(empty($id) ? array(0, '', 0, $cookie_state, false) : array($id, $secret, time() + $cookie_length, $cookie_state, $preserve)); |
@@ -137,8 +142,9 @@ discard block |
||
| 137 | 142 | smf_setcookie($identifier, $data, time() + $cookie_length, $cookie_url[1], $cookie_url[0]); |
| 138 | 143 | |
| 139 | 144 | // If subdomain-independent cookies are on, unset the subdomain-dependent cookie too. |
| 140 | - if (empty($id) && !empty($modSettings['globalCookies'])) |
|
| 141 | - smf_setcookie($identifier, $data, time() + $cookie_length, $cookie_url[1], ''); |
|
| 145 | + if (empty($id) && !empty($modSettings['globalCookies'])) { |
|
| 146 | + smf_setcookie($identifier, $data, time() + $cookie_length, $cookie_url[1], ''); |
|
| 147 | + } |
|
| 142 | 148 | |
| 143 | 149 | $_COOKIE[$identifier] = $data; |
| 144 | 150 | } |
@@ -160,23 +166,28 @@ discard block |
||
| 160 | 166 | $parsed_url = parse_url($boardurl); |
| 161 | 167 | |
| 162 | 168 | // Is local cookies off? |
| 163 | - if (empty($parsed_url['path']) || !$local) |
|
| 164 | - $parsed_url['path'] = ''; |
|
| 169 | + if (empty($parsed_url['path']) || !$local) { |
|
| 170 | + $parsed_url['path'] = ''; |
|
| 171 | + } |
|
| 165 | 172 | |
| 166 | - if (!empty($modSettings['globalCookiesDomain']) && strpos($boardurl, $modSettings['globalCookiesDomain']) !== false) |
|
| 167 | - $parsed_url['host'] = $modSettings['globalCookiesDomain']; |
|
| 173 | + if (!empty($modSettings['globalCookiesDomain']) && strpos($boardurl, $modSettings['globalCookiesDomain']) !== false) { |
|
| 174 | + $parsed_url['host'] = $modSettings['globalCookiesDomain']; |
|
| 175 | + } |
|
| 168 | 176 | |
| 169 | 177 | // Globalize cookies across domains (filter out IP-addresses)? |
| 170 | - elseif ($global && preg_match('~^\d{1,3}(\.\d{1,3}){3}$~', $parsed_url['host']) == 0 && preg_match('~(?:[^\.]+\.)?([^\.]{2,}\..+)\z~i', $parsed_url['host'], $parts) == 1) |
|
| 171 | - $parsed_url['host'] = '.' . $parts[1]; |
|
| 178 | + elseif ($global && preg_match('~^\d{1,3}(\.\d{1,3}){3}$~', $parsed_url['host']) == 0 && preg_match('~(?:[^\.]+\.)?([^\.]{2,}\..+)\z~i', $parsed_url['host'], $parts) == 1) { |
|
| 179 | + $parsed_url['host'] = '.' . $parts[1]; |
|
| 180 | + } |
|
| 172 | 181 | |
| 173 | 182 | // We shouldn't use a host at all if both options are off. |
| 174 | - elseif (!$local && !$global) |
|
| 175 | - $parsed_url['host'] = ''; |
|
| 183 | + elseif (!$local && !$global) { |
|
| 184 | + $parsed_url['host'] = ''; |
|
| 185 | + } |
|
| 176 | 186 | |
| 177 | 187 | // The host also shouldn't be set if there aren't any dots in it. |
| 178 | - elseif (!isset($parsed_url['host']) || strpos($parsed_url['host'], '.') === false) |
|
| 179 | - $parsed_url['host'] = ''; |
|
| 188 | + elseif (!isset($parsed_url['host']) || strpos($parsed_url['host'], '.') === false) { |
|
| 189 | + $parsed_url['host'] = ''; |
|
| 190 | + } |
|
| 180 | 191 | |
| 181 | 192 | return array($parsed_url['host'], $parsed_url['path'] . '/'); |
| 182 | 193 | } |
@@ -195,8 +206,9 @@ discard block |
||
| 195 | 206 | createToken('login'); |
| 196 | 207 | |
| 197 | 208 | // Never redirect to an attachment |
| 198 | - if (strpos($_SERVER['REQUEST_URL'], 'dlattach') === false) |
|
| 199 | - $_SESSION['login_url'] = $_SERVER['REQUEST_URL']; |
|
| 209 | + if (strpos($_SERVER['REQUEST_URL'], 'dlattach') === false) { |
|
| 210 | + $_SESSION['login_url'] = $_SERVER['REQUEST_URL']; |
|
| 211 | + } |
|
| 200 | 212 | |
| 201 | 213 | $context['sub_template'] = 'kick_guest'; |
| 202 | 214 | $context['page_title'] = $txt['login']; |
@@ -251,10 +263,12 @@ discard block |
||
| 251 | 263 | $txt['security_wrong'] = sprintf($txt['security_wrong'], isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : $txt['unknown'], $_SERVER['HTTP_USER_AGENT'], $user_info['ip']); |
| 252 | 264 | log_error($txt['security_wrong'], 'critical'); |
| 253 | 265 | |
| 254 | - if (isset($_POST[$type . '_hash_pass'])) |
|
| 255 | - unset($_POST[$type . '_hash_pass']); |
|
| 256 | - if (isset($_POST[$type . '_pass'])) |
|
| 257 | - unset($_POST[$type . '_pass']); |
|
| 266 | + if (isset($_POST[$type . '_hash_pass'])) { |
|
| 267 | + unset($_POST[$type . '_hash_pass']); |
|
| 268 | + } |
|
| 269 | + if (isset($_POST[$type . '_pass'])) { |
|
| 270 | + unset($_POST[$type . '_pass']); |
|
| 271 | + } |
|
| 258 | 272 | |
| 259 | 273 | $context['incorrect_password'] = true; |
| 260 | 274 | } |
@@ -267,15 +281,17 @@ discard block |
||
| 267 | 281 | |
| 268 | 282 | // Now go through $_POST. Make sure the session hash is sent. |
| 269 | 283 | $_POST[$context['session_var']] = $context['session_id']; |
| 270 | - foreach ($_POST as $k => $v) |
|
| 271 | - $context['post_data'] .= adminLogin_outputPostVars($k, $v); |
|
| 284 | + foreach ($_POST as $k => $v) { |
|
| 285 | + $context['post_data'] .= adminLogin_outputPostVars($k, $v); |
|
| 286 | + } |
|
| 272 | 287 | |
| 273 | 288 | // Now we'll use the admin_login sub template of the Login template. |
| 274 | 289 | $context['sub_template'] = 'admin_login'; |
| 275 | 290 | |
| 276 | 291 | // And title the page something like "Login". |
| 277 | - if (!isset($context['page_title'])) |
|
| 278 | - $context['page_title'] = $txt['login']; |
|
| 292 | + if (!isset($context['page_title'])) { |
|
| 293 | + $context['page_title'] = $txt['login']; |
|
| 294 | + } |
|
| 279 | 295 | |
| 280 | 296 | // The type of action. |
| 281 | 297 | $context['sessionCheckType'] = $type; |
@@ -298,14 +314,15 @@ discard block |
||
| 298 | 314 | { |
| 299 | 315 | global $smcFunc; |
| 300 | 316 | |
| 301 | - if (!is_array($v)) |
|
| 302 | - return ' |
|
| 317 | + if (!is_array($v)) { |
|
| 318 | + return ' |
|
| 303 | 319 | <input type="hidden" name="' . $smcFunc['htmlspecialchars']($k) . '" value="' . strtr($v, array('"' => '"', '<' => '<', '>' => '>')) . '">'; |
| 304 | - else |
|
| 320 | + } else |
|
| 305 | 321 | { |
| 306 | 322 | $ret = ''; |
| 307 | - foreach ($v as $k2 => $v2) |
|
| 308 | - $ret .= adminLogin_outputPostVars($k . '[' . $k2 . ']', $v2); |
|
| 323 | + foreach ($v as $k2 => $v2) { |
|
| 324 | + $ret .= adminLogin_outputPostVars($k . '[' . $k2 . ']', $v2); |
|
| 325 | + } |
|
| 309 | 326 | |
| 310 | 327 | return $ret; |
| 311 | 328 | } |
@@ -332,18 +349,20 @@ discard block |
||
| 332 | 349 | foreach ($get as $k => $v) |
| 333 | 350 | { |
| 334 | 351 | // Only if it's not already in the $scripturl! |
| 335 | - if (!isset($temp[$k])) |
|
| 336 | - $query_string .= urlencode($k) . '=' . urlencode($v) . ';'; |
|
| 352 | + if (!isset($temp[$k])) { |
|
| 353 | + $query_string .= urlencode($k) . '=' . urlencode($v) . ';'; |
|
| 354 | + } |
|
| 337 | 355 | // If it changed, put it out there, but with an ampersand. |
| 338 | - elseif ($temp[$k] != $get[$k]) |
|
| 339 | - $query_string .= urlencode($k) . '=' . urlencode($v) . '&'; |
|
| 356 | + elseif ($temp[$k] != $get[$k]) { |
|
| 357 | + $query_string .= urlencode($k) . '=' . urlencode($v) . '&'; |
|
| 358 | + } |
|
| 340 | 359 | } |
| 341 | - } |
|
| 342 | - else |
|
| 360 | + } else |
|
| 343 | 361 | { |
| 344 | 362 | // Add up all the data from $_GET into get_data. |
| 345 | - foreach ($get as $k => $v) |
|
| 346 | - $query_string .= urlencode($k) . '=' . urlencode($v) . ';'; |
|
| 363 | + foreach ($get as $k => $v) { |
|
| 364 | + $query_string .= urlencode($k) . '=' . urlencode($v) . ';'; |
|
| 365 | + } |
|
| 347 | 366 | } |
| 348 | 367 | |
| 349 | 368 | $query_string = substr($query_string, 0, -1); |
@@ -366,8 +385,9 @@ discard block |
||
| 366 | 385 | global $scripturl, $user_info, $smcFunc; |
| 367 | 386 | |
| 368 | 387 | // If it's not already an array, make it one. |
| 369 | - if (!is_array($names)) |
|
| 370 | - $names = explode(',', $names); |
|
| 388 | + if (!is_array($names)) { |
|
| 389 | + $names = explode(',', $names); |
|
| 390 | + } |
|
| 371 | 391 | |
| 372 | 392 | $maybe_email = false; |
| 373 | 393 | foreach ($names as $i => $name) |
@@ -378,10 +398,11 @@ discard block |
||
| 378 | 398 | $maybe_email |= strpos($name, '@') !== false; |
| 379 | 399 | |
| 380 | 400 | // Make it so standard wildcards will work. (* and ?) |
| 381 | - if ($use_wildcards) |
|
| 382 | - $names[$i] = strtr($names[$i], array('%' => '\%', '_' => '\_', '*' => '%', '?' => '_', '\'' => ''')); |
|
| 383 | - else |
|
| 384 | - $names[$i] = strtr($names[$i], array('\'' => ''')); |
|
| 401 | + if ($use_wildcards) { |
|
| 402 | + $names[$i] = strtr($names[$i], array('%' => '\%', '_' => '\_', '*' => '%', '?' => '_', '\'' => ''')); |
|
| 403 | + } else { |
|
| 404 | + $names[$i] = strtr($names[$i], array('\'' => ''')); |
|
| 405 | + } |
|
| 385 | 406 | } |
| 386 | 407 | |
| 387 | 408 | // What are we using to compare? |
@@ -391,11 +412,12 @@ discard block |
||
| 391 | 412 | $results = array(); |
| 392 | 413 | |
| 393 | 414 | // This ensures you can't search someones email address if you can't see it. |
| 394 | - if (($use_wildcards || $maybe_email) && allowedTo('moderate_forum')) |
|
| 395 | - $email_condition = ' |
|
| 415 | + if (($use_wildcards || $maybe_email) && allowedTo('moderate_forum')) { |
|
| 416 | + $email_condition = ' |
|
| 396 | 417 | OR (email_address ' . $comparison . ' \'' . implode( '\') OR (email_address ' . $comparison . ' \'', $names) . '\')'; |
| 397 | - else |
|
| 398 | - $email_condition = ''; |
|
| 418 | + } else { |
|
| 419 | + $email_condition = ''; |
|
| 420 | + } |
|
| 399 | 421 | |
| 400 | 422 | // Get the case of the columns right - but only if we need to as things like MySQL will go slow needlessly otherwise. |
| 401 | 423 | $member_name = $smcFunc['db_case_sensitive'] ? 'LOWER(member_name)' : 'member_name'; |
@@ -453,10 +475,11 @@ discard block |
||
| 453 | 475 | $context['template_layers'] = array(); |
| 454 | 476 | $context['sub_template'] = 'find_members'; |
| 455 | 477 | |
| 456 | - if (isset($_REQUEST['search'])) |
|
| 457 | - $context['last_search'] = $smcFunc['htmlspecialchars']($_REQUEST['search'], ENT_QUOTES); |
|
| 458 | - else |
|
| 459 | - $_REQUEST['start'] = 0; |
|
| 478 | + if (isset($_REQUEST['search'])) { |
|
| 479 | + $context['last_search'] = $smcFunc['htmlspecialchars']($_REQUEST['search'], ENT_QUOTES); |
|
| 480 | + } else { |
|
| 481 | + $_REQUEST['start'] = 0; |
|
| 482 | + } |
|
| 460 | 483 | |
| 461 | 484 | // Allow the user to pass the input to be added to to the box. |
| 462 | 485 | $context['input_box_name'] = isset($_REQUEST['input']) && preg_match('~^[\w-]+$~', $_REQUEST['input']) === 1 ? $_REQUEST['input'] : 'to'; |
@@ -497,10 +520,10 @@ discard block |
||
| 497 | 520 | ); |
| 498 | 521 | |
| 499 | 522 | $context['results'] = array_slice($context['results'], $_REQUEST['start'], 7); |
| 523 | + } else { |
|
| 524 | + $context['links']['up'] = $scripturl . '?action=pm;sa=send' . (empty($_REQUEST['u']) ? '' : ';u=' . $_REQUEST['u']); |
|
| 525 | + } |
|
| 500 | 526 | } |
| 501 | - else |
|
| 502 | - $context['links']['up'] = $scripturl . '?action=pm;sa=send' . (empty($_REQUEST['u']) ? '' : ';u=' . $_REQUEST['u']); |
|
| 503 | -} |
|
| 504 | 527 | |
| 505 | 528 | /** |
| 506 | 529 | * Outputs each member name on its own line. |
@@ -516,8 +539,9 @@ discard block |
||
| 516 | 539 | $_REQUEST['search'] = trim($smcFunc['strtolower']($_REQUEST['search'])); |
| 517 | 540 | $_REQUEST['search'] = strtr($_REQUEST['search'], array('%' => '\%', '_' => '\_', '*' => '%', '?' => '_', '&' => '&')); |
| 518 | 541 | |
| 519 | - if (function_exists('iconv')) |
|
| 520 | - header('Content-Type: text/plain; charset=UTF-8'); |
|
| 542 | + if (function_exists('iconv')) { |
|
| 543 | + header('Content-Type: text/plain; charset=UTF-8'); |
|
| 544 | + } |
|
| 521 | 545 | |
| 522 | 546 | $request = $smcFunc['db_query']('', ' |
| 523 | 547 | SELECT real_name |
@@ -537,14 +561,16 @@ discard block |
||
| 537 | 561 | if (function_exists('iconv')) |
| 538 | 562 | { |
| 539 | 563 | $utf8 = iconv($txt['lang_character_set'], 'UTF-8', $row['real_name']); |
| 540 | - if ($utf8) |
|
| 541 | - $row['real_name'] = $utf8; |
|
| 564 | + if ($utf8) { |
|
| 565 | + $row['real_name'] = $utf8; |
|
| 566 | + } |
|
| 542 | 567 | } |
| 543 | 568 | |
| 544 | 569 | $row['real_name'] = strtr($row['real_name'], array('&' => '&', '<' => '<', '>' => '>', '"' => '"')); |
| 545 | 570 | |
| 546 | - if (preg_match('~&#\d+;~', $row['real_name']) != 0) |
|
| 547 | - $row['real_name'] = preg_replace_callback('~&#(\d+);~', 'fixchar__callback', $row['real_name']); |
|
| 571 | + if (preg_match('~&#\d+;~', $row['real_name']) != 0) { |
|
| 572 | + $row['real_name'] = preg_replace_callback('~&#(\d+);~', 'fixchar__callback', $row['real_name']); |
|
| 573 | + } |
|
| 548 | 574 | |
| 549 | 575 | echo $row['real_name'], "\n"; |
| 550 | 576 | } |
@@ -601,9 +627,9 @@ discard block |
||
| 601 | 627 | |
| 602 | 628 | // Update the database... |
| 603 | 629 | updateMemberData($memID, array('member_name' => $user, 'passwd' => $newPassword_sha1)); |
| 630 | + } else { |
|
| 631 | + updateMemberData($memID, array('passwd' => $newPassword_sha1)); |
|
| 604 | 632 | } |
| 605 | - else |
|
| 606 | - updateMemberData($memID, array('passwd' => $newPassword_sha1)); |
|
| 607 | 633 | |
| 608 | 634 | call_integration_hook('integrate_reset_pass', array($old_user, $user, $newPassword)); |
| 609 | 635 | |
@@ -634,31 +660,37 @@ discard block |
||
| 634 | 660 | $errors = array(); |
| 635 | 661 | |
| 636 | 662 | // Don't use too long a name. |
| 637 | - if ($smcFunc['strlen']($username) > 25) |
|
| 638 | - $errors[] = array('lang', 'error_long_name'); |
|
| 663 | + if ($smcFunc['strlen']($username) > 25) { |
|
| 664 | + $errors[] = array('lang', 'error_long_name'); |
|
| 665 | + } |
|
| 639 | 666 | |
| 640 | 667 | // No name?! How can you register with no name? |
| 641 | - if ($username == '') |
|
| 642 | - $errors[] = array('lang', 'need_username'); |
|
| 668 | + if ($username == '') { |
|
| 669 | + $errors[] = array('lang', 'need_username'); |
|
| 670 | + } |
|
| 643 | 671 | |
| 644 | 672 | // Only these characters are permitted. |
| 645 | - if (in_array($username, array('_', '|')) || preg_match('~[<>&"\'=\\\\]~', preg_replace('~&#(?:\\d{1,7}|x[0-9a-fA-F]{1,6});~', '', $username)) != 0 || strpos($username, '[code') !== false || strpos($username, '[/code') !== false) |
|
| 646 | - $errors[] = array('lang', 'error_invalid_characters_username'); |
|
| 673 | + if (in_array($username, array('_', '|')) || preg_match('~[<>&"\'=\\\\]~', preg_replace('~&#(?:\\d{1,7}|x[0-9a-fA-F]{1,6});~', '', $username)) != 0 || strpos($username, '[code') !== false || strpos($username, '[/code') !== false) { |
|
| 674 | + $errors[] = array('lang', 'error_invalid_characters_username'); |
|
| 675 | + } |
|
| 647 | 676 | |
| 648 | - if (stristr($username, $txt['guest_title']) !== false) |
|
| 649 | - $errors[] = array('lang', 'username_reserved', 'general', array($txt['guest_title'])); |
|
| 677 | + if (stristr($username, $txt['guest_title']) !== false) { |
|
| 678 | + $errors[] = array('lang', 'username_reserved', 'general', array($txt['guest_title'])); |
|
| 679 | + } |
|
| 650 | 680 | |
| 651 | 681 | if ($check_reserved_name) |
| 652 | 682 | { |
| 653 | 683 | require_once($sourcedir . '/Subs-Members.php'); |
| 654 | - if (isReservedName($username, $memID, false)) |
|
| 655 | - $errors[] = array('done', '(' . $smcFunc['htmlspecialchars']($username) . ') ' . $txt['name_in_use']); |
|
| 684 | + if (isReservedName($username, $memID, false)) { |
|
| 685 | + $errors[] = array('done', '(' . $smcFunc['htmlspecialchars']($username) . ') ' . $txt['name_in_use']); |
|
| 686 | + } |
|
| 656 | 687 | } |
| 657 | 688 | |
| 658 | - if ($return_error) |
|
| 659 | - return $errors; |
|
| 660 | - elseif (empty($errors)) |
|
| 661 | - return null; |
|
| 689 | + if ($return_error) { |
|
| 690 | + return $errors; |
|
| 691 | + } elseif (empty($errors)) { |
|
| 692 | + return null; |
|
| 693 | + } |
|
| 662 | 694 | |
| 663 | 695 | loadLanguage('Errors'); |
| 664 | 696 | $error = $errors[0]; |
@@ -684,22 +716,26 @@ discard block |
||
| 684 | 716 | global $modSettings, $smcFunc; |
| 685 | 717 | |
| 686 | 718 | // Perform basic requirements first. |
| 687 | - if ($smcFunc['strlen']($password) < (empty($modSettings['password_strength']) ? 4 : 8)) |
|
| 688 | - return 'short'; |
|
| 719 | + if ($smcFunc['strlen']($password) < (empty($modSettings['password_strength']) ? 4 : 8)) { |
|
| 720 | + return 'short'; |
|
| 721 | + } |
|
| 689 | 722 | |
| 690 | 723 | // Is this enough? |
| 691 | - if (empty($modSettings['password_strength'])) |
|
| 692 | - return null; |
|
| 724 | + if (empty($modSettings['password_strength'])) { |
|
| 725 | + return null; |
|
| 726 | + } |
|
| 693 | 727 | |
| 694 | 728 | // Otherwise, perform the medium strength test - checking if password appears in the restricted string. |
| 695 | - if (preg_match('~\b' . preg_quote($password, '~') . '\b~', implode(' ', $restrict_in)) != 0) |
|
| 696 | - return 'restricted_words'; |
|
| 697 | - elseif ($smcFunc['strpos']($password, $username) !== false) |
|
| 698 | - return 'restricted_words'; |
|
| 729 | + if (preg_match('~\b' . preg_quote($password, '~') . '\b~', implode(' ', $restrict_in)) != 0) { |
|
| 730 | + return 'restricted_words'; |
|
| 731 | + } elseif ($smcFunc['strpos']($password, $username) !== false) { |
|
| 732 | + return 'restricted_words'; |
|
| 733 | + } |
|
| 699 | 734 | |
| 700 | 735 | // If just medium, we're done. |
| 701 | - if ($modSettings['password_strength'] == 1) |
|
| 702 | - return null; |
|
| 736 | + if ($modSettings['password_strength'] == 1) { |
|
| 737 | + return null; |
|
| 738 | + } |
|
| 703 | 739 | |
| 704 | 740 | // Otherwise, hard test next, check for numbers and letters, uppercase too. |
| 705 | 741 | $good = preg_match('~(\D\d|\d\D)~', $password) != 0; |
@@ -731,14 +767,16 @@ discard block |
||
| 731 | 767 | ) |
| 732 | 768 | ); |
| 733 | 769 | $groups = array(); |
| 734 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 735 | - $groups[] = $row['id_group']; |
|
| 770 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 771 | + $groups[] = $row['id_group']; |
|
| 772 | + } |
|
| 736 | 773 | $smcFunc['db_free_result']($request); |
| 737 | 774 | |
| 738 | - if (empty($groups)) |
|
| 739 | - $group_query = '0=1'; |
|
| 740 | - else |
|
| 741 | - $group_query = 'id_group IN (' . implode(',', $groups) . ')'; |
|
| 775 | + if (empty($groups)) { |
|
| 776 | + $group_query = '0=1'; |
|
| 777 | + } else { |
|
| 778 | + $group_query = 'id_group IN (' . implode(',', $groups) . ')'; |
|
| 779 | + } |
|
| 742 | 780 | } |
| 743 | 781 | |
| 744 | 782 | // Then, same again, just the boards this time! |
@@ -748,10 +786,11 @@ discard block |
||
| 748 | 786 | { |
| 749 | 787 | $boards = boardsAllowedTo('moderate_board', true); |
| 750 | 788 | |
| 751 | - if (empty($boards)) |
|
| 752 | - $board_query = '0=1'; |
|
| 753 | - else |
|
| 754 | - $board_query = 'id_board IN (' . implode(',', $boards) . ')'; |
|
| 789 | + if (empty($boards)) { |
|
| 790 | + $board_query = '0=1'; |
|
| 791 | + } else { |
|
| 792 | + $board_query = 'id_board IN (' . implode(',', $boards) . ')'; |
|
| 793 | + } |
|
| 755 | 794 | } |
| 756 | 795 | |
| 757 | 796 | // What boards are they the moderator of? |
@@ -766,8 +805,9 @@ discard block |
||
| 766 | 805 | 'current_member' => $user_info['id'], |
| 767 | 806 | ) |
| 768 | 807 | ); |
| 769 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 770 | - $boards_mod[] = $row['id_board']; |
|
| 808 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 809 | + $boards_mod[] = $row['id_board']; |
|
| 810 | + } |
|
| 771 | 811 | $smcFunc['db_free_result']($request); |
| 772 | 812 | |
| 773 | 813 | // Can any of the groups they're in moderate any of the boards? |
@@ -779,8 +819,9 @@ discard block |
||
| 779 | 819 | 'groups' => $user_info['groups'], |
| 780 | 820 | ) |
| 781 | 821 | ); |
| 782 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 783 | - $boards_mod[] = $row['id_board']; |
|
| 822 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 823 | + $boards_mod[] = $row['id_board']; |
|
| 824 | + } |
|
| 784 | 825 | $smcFunc['db_free_result']($request); |
| 785 | 826 | |
| 786 | 827 | // Just in case we've got duplicates here... |
@@ -825,10 +866,12 @@ discard block |
||
| 825 | 866 | global $modSettings; |
| 826 | 867 | |
| 827 | 868 | // In case a customization wants to override the default settings |
| 828 | - if ($httponly === null) |
|
| 829 | - $httponly = !empty($modSettings['httponlyCookies']); |
|
| 830 | - if ($secure === null) |
|
| 831 | - $secure = !empty($modSettings['secureCookies']); |
|
| 869 | + if ($httponly === null) { |
|
| 870 | + $httponly = !empty($modSettings['httponlyCookies']); |
|
| 871 | + } |
|
| 872 | + if ($secure === null) { |
|
| 873 | + $secure = !empty($modSettings['secureCookies']); |
|
| 874 | + } |
|
| 832 | 875 | |
| 833 | 876 | // Intercept cookie? |
| 834 | 877 | call_integration_hook('integrate_cookie', array($name, $value, $expire, $path, $domain, $secure, $httponly)); |
@@ -848,8 +891,9 @@ discard block |
||
| 848 | 891 | function hash_password($username, $password, $cost = null) |
| 849 | 892 | { |
| 850 | 893 | global $sourcedir, $smcFunc, $modSettings; |
| 851 | - if (!function_exists('password_hash')) |
|
| 852 | - require_once($sourcedir . '/Subs-Password.php'); |
|
| 894 | + if (!function_exists('password_hash')) { |
|
| 895 | + require_once($sourcedir . '/Subs-Password.php'); |
|
| 896 | + } |
|
| 853 | 897 | |
| 854 | 898 | $cost = empty($cost) ? (empty($modSettings['bcrypt_hash_cost']) ? 10 : $modSettings['bcrypt_hash_cost']) : $cost; |
| 855 | 899 | |
@@ -881,8 +925,9 @@ discard block |
||
| 881 | 925 | function hash_verify_password($username, $password, $hash) |
| 882 | 926 | { |
| 883 | 927 | global $sourcedir, $smcFunc; |
| 884 | - if (!function_exists('password_verify')) |
|
| 885 | - require_once($sourcedir . '/Subs-Password.php'); |
|
| 928 | + if (!function_exists('password_verify')) { |
|
| 929 | + require_once($sourcedir . '/Subs-Password.php'); |
|
| 930 | + } |
|
| 886 | 931 | |
| 887 | 932 | return password_verify($smcFunc['strtolower']($username) . $password, $hash); |
| 888 | 933 | } |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 3 |
| 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 | * Outputs xml data representing recent information or a profile. |
@@ -37,8 +38,9 @@ discard block |
||
| 37 | 38 | global $query_this_board, $smcFunc, $forum_version; |
| 38 | 39 | |
| 39 | 40 | // If it's not enabled, die. |
| 40 | - if (empty($modSettings['xmlnews_enable'])) |
|
| 41 | - obExit(false); |
|
| 41 | + if (empty($modSettings['xmlnews_enable'])) { |
|
| 42 | + obExit(false); |
|
| 43 | + } |
|
| 42 | 44 | |
| 43 | 45 | loadLanguage('Stats'); |
| 44 | 46 | |
@@ -53,8 +55,9 @@ discard block |
||
| 53 | 55 | if (!empty($_REQUEST['c']) && empty($board)) |
| 54 | 56 | { |
| 55 | 57 | $_REQUEST['c'] = explode(',', $_REQUEST['c']); |
| 56 | - foreach ($_REQUEST['c'] as $i => $c) |
|
| 57 | - $_REQUEST['c'][$i] = (int) $c; |
|
| 58 | + foreach ($_REQUEST['c'] as $i => $c) { |
|
| 59 | + $_REQUEST['c'][$i] = (int) $c; |
|
| 60 | + } |
|
| 58 | 61 | |
| 59 | 62 | if (count($_REQUEST['c']) == 1) |
| 60 | 63 | { |
@@ -90,18 +93,20 @@ discard block |
||
| 90 | 93 | } |
| 91 | 94 | $smcFunc['db_free_result']($request); |
| 92 | 95 | |
| 93 | - if (!empty($boards)) |
|
| 94 | - $query_this_board = 'b.id_board IN (' . implode(', ', $boards) . ')'; |
|
| 96 | + if (!empty($boards)) { |
|
| 97 | + $query_this_board = 'b.id_board IN (' . implode(', ', $boards) . ')'; |
|
| 98 | + } |
|
| 95 | 99 | |
| 96 | 100 | // Try to limit the number of messages we look through. |
| 97 | - if ($total_cat_posts > 100 && $total_cat_posts > $modSettings['totalMessages'] / 15) |
|
| 98 | - $context['optimize_msg']['lowest'] = 'm.id_msg >= ' . max(0, $modSettings['maxMsgID'] - 400 - $_GET['limit'] * 5); |
|
| 99 | - } |
|
| 100 | - elseif (!empty($_REQUEST['boards'])) |
|
| 101 | + if ($total_cat_posts > 100 && $total_cat_posts > $modSettings['totalMessages'] / 15) { |
|
| 102 | + $context['optimize_msg']['lowest'] = 'm.id_msg >= ' . max(0, $modSettings['maxMsgID'] - 400 - $_GET['limit'] * 5); |
|
| 103 | + } |
|
| 104 | + } elseif (!empty($_REQUEST['boards'])) |
|
| 101 | 105 | { |
| 102 | 106 | $_REQUEST['boards'] = explode(',', $_REQUEST['boards']); |
| 103 | - foreach ($_REQUEST['boards'] as $i => $b) |
|
| 104 | - $_REQUEST['boards'][$i] = (int) $b; |
|
| 107 | + foreach ($_REQUEST['boards'] as $i => $b) { |
|
| 108 | + $_REQUEST['boards'][$i] = (int) $b; |
|
| 109 | + } |
|
| 105 | 110 | |
| 106 | 111 | $request = $smcFunc['db_query']('', ' |
| 107 | 112 | SELECT b.id_board, b.num_posts, b.name |
@@ -117,29 +122,32 @@ discard block |
||
| 117 | 122 | |
| 118 | 123 | // Either the board specified doesn't exist or you have no access. |
| 119 | 124 | $num_boards = $smcFunc['db_num_rows']($request); |
| 120 | - if ($num_boards == 0) |
|
| 121 | - fatal_lang_error('no_board'); |
|
| 125 | + if ($num_boards == 0) { |
|
| 126 | + fatal_lang_error('no_board'); |
|
| 127 | + } |
|
| 122 | 128 | |
| 123 | 129 | $total_posts = 0; |
| 124 | 130 | $boards = array(); |
| 125 | 131 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 126 | 132 | { |
| 127 | - if ($num_boards == 1) |
|
| 128 | - $feed_title = ' - ' . strip_tags($row['name']); |
|
| 133 | + if ($num_boards == 1) { |
|
| 134 | + $feed_title = ' - ' . strip_tags($row['name']); |
|
| 135 | + } |
|
| 129 | 136 | |
| 130 | 137 | $boards[] = $row['id_board']; |
| 131 | 138 | $total_posts += $row['num_posts']; |
| 132 | 139 | } |
| 133 | 140 | $smcFunc['db_free_result']($request); |
| 134 | 141 | |
| 135 | - if (!empty($boards)) |
|
| 136 | - $query_this_board = 'b.id_board IN (' . implode(', ', $boards) . ')'; |
|
| 142 | + if (!empty($boards)) { |
|
| 143 | + $query_this_board = 'b.id_board IN (' . implode(', ', $boards) . ')'; |
|
| 144 | + } |
|
| 137 | 145 | |
| 138 | 146 | // The more boards, the more we're going to look through... |
| 139 | - if ($total_posts > 100 && $total_posts > $modSettings['totalMessages'] / 12) |
|
| 140 | - $context['optimize_msg']['lowest'] = 'm.id_msg >= ' . max(0, $modSettings['maxMsgID'] - 500 - $_GET['limit'] * 5); |
|
| 141 | - } |
|
| 142 | - elseif (!empty($board)) |
|
| 147 | + if ($total_posts > 100 && $total_posts > $modSettings['totalMessages'] / 12) { |
|
| 148 | + $context['optimize_msg']['lowest'] = 'm.id_msg >= ' . max(0, $modSettings['maxMsgID'] - 500 - $_GET['limit'] * 5); |
|
| 149 | + } |
|
| 150 | + } elseif (!empty($board)) |
|
| 143 | 151 | { |
| 144 | 152 | $request = $smcFunc['db_query']('', ' |
| 145 | 153 | SELECT num_posts |
@@ -158,10 +166,10 @@ discard block |
||
| 158 | 166 | $query_this_board = 'b.id_board = ' . $board; |
| 159 | 167 | |
| 160 | 168 | // Try to look through just a few messages, if at all possible. |
| 161 | - if ($total_posts > 80 && $total_posts > $modSettings['totalMessages'] / 10) |
|
| 162 | - $context['optimize_msg']['lowest'] = 'm.id_msg >= ' . max(0, $modSettings['maxMsgID'] - 600 - $_GET['limit'] * 5); |
|
| 163 | - } |
|
| 164 | - else |
|
| 169 | + if ($total_posts > 80 && $total_posts > $modSettings['totalMessages'] / 10) { |
|
| 170 | + $context['optimize_msg']['lowest'] = 'm.id_msg >= ' . max(0, $modSettings['maxMsgID'] - 600 - $_GET['limit'] * 5); |
|
| 171 | + } |
|
| 172 | + } else |
|
| 165 | 173 | { |
| 166 | 174 | $query_this_board = '{query_see_board}' . (!empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0 ? ' |
| 167 | 175 | AND b.id_board != ' . $modSettings['recycle_board'] : ''); |
@@ -184,30 +192,35 @@ discard block |
||
| 184 | 192 | // Easy adding of sub actions |
| 185 | 193 | call_integration_hook('integrate_xmlfeeds', array(&$subActions)); |
| 186 | 194 | |
| 187 | - if (empty($_GET['sa']) || !isset($subActions[$_GET['sa']])) |
|
| 188 | - $_GET['sa'] = 'recent'; |
|
| 195 | + if (empty($_GET['sa']) || !isset($subActions[$_GET['sa']])) { |
|
| 196 | + $_GET['sa'] = 'recent'; |
|
| 197 | + } |
|
| 189 | 198 | |
| 190 | 199 | // We only want some information, not all of it. |
| 191 | 200 | $cachekey = array($xml_format, $_GET['action'], $_GET['limit'], $_GET['sa']); |
| 192 | - foreach (array('board', 'boards', 'c') as $var) |
|
| 193 | - if (isset($_REQUEST[$var])) |
|
| 201 | + foreach (array('board', 'boards', 'c') as $var) { |
|
| 202 | + if (isset($_REQUEST[$var])) |
|
| 194 | 203 | $cachekey[] = $_REQUEST[$var]; |
| 204 | + } |
|
| 195 | 205 | $cachekey = md5(json_encode($cachekey) . (!empty($query_this_board) ? $query_this_board : '')); |
| 196 | 206 | $cache_t = microtime(); |
| 197 | 207 | |
| 198 | 208 | // Get the associative array representing the xml. |
| 199 | - if (!empty($modSettings['cache_enable']) && (!$user_info['is_guest'] || $modSettings['cache_enable'] >= 3)) |
|
| 200 | - $xml = cache_get_data('xmlfeed-' . $xml_format . ':' . ($user_info['is_guest'] ? '' : $user_info['id'] . '-') . $cachekey, 240); |
|
| 209 | + if (!empty($modSettings['cache_enable']) && (!$user_info['is_guest'] || $modSettings['cache_enable'] >= 3)) { |
|
| 210 | + $xml = cache_get_data('xmlfeed-' . $xml_format . ':' . ($user_info['is_guest'] ? '' : $user_info['id'] . '-') . $cachekey, 240); |
|
| 211 | + } |
|
| 201 | 212 | if (empty($xml)) |
| 202 | 213 | { |
| 203 | 214 | $call = call_helper($subActions[$_GET['sa']][0], true); |
| 204 | 215 | |
| 205 | - if (!empty($call)) |
|
| 206 | - $xml = call_user_func($call, $xml_format); |
|
| 216 | + if (!empty($call)) { |
|
| 217 | + $xml = call_user_func($call, $xml_format); |
|
| 218 | + } |
|
| 207 | 219 | |
| 208 | 220 | if (!empty($modSettings['cache_enable']) && (($user_info['is_guest'] && $modSettings['cache_enable'] >= 3) |
| 209 | - || (!$user_info['is_guest'] && (array_sum(explode(' ', microtime())) - array_sum(explode(' ', $cache_t)) > 0.2)))) |
|
| 210 | - cache_put_data('xmlfeed-' . $xml_format . ':' . ($user_info['is_guest'] ? '' : $user_info['id'] . '-') . $cachekey, $xml, 240); |
|
| 221 | + || (!$user_info['is_guest'] && (array_sum(explode(' ', microtime())) - array_sum(explode(' ', $cache_t)) > 0.2)))) { |
|
| 222 | + cache_put_data('xmlfeed-' . $xml_format . ':' . ($user_info['is_guest'] ? '' : $user_info['id'] . '-') . $cachekey, $xml, 240); |
|
| 223 | + } |
|
| 211 | 224 | } |
| 212 | 225 | |
| 213 | 226 | $feed_title = $smcFunc['htmlspecialchars'](strip_tags($context['forum_name'])) . (isset($feed_title) ? $feed_title : ''); |
@@ -218,19 +231,21 @@ discard block |
||
| 218 | 231 | |
| 219 | 232 | // This is an xml file.... |
| 220 | 233 | ob_end_clean(); |
| 221 | - if (!empty($modSettings['enableCompressedOutput'])) |
|
| 222 | - @ob_start('ob_gzhandler'); |
|
| 223 | - else |
|
| 224 | - ob_start(); |
|
| 234 | + if (!empty($modSettings['enableCompressedOutput'])) { |
|
| 235 | + @ob_start('ob_gzhandler'); |
|
| 236 | + } else { |
|
| 237 | + ob_start(); |
|
| 238 | + } |
|
| 225 | 239 | |
| 226 | - if ($xml_format == 'smf' || isset($_REQUEST['debug'])) |
|
| 227 | - header('Content-Type: text/xml; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set'])); |
|
| 228 | - elseif ($xml_format == 'rss' || $xml_format == 'rss2') |
|
| 229 | - header('Content-Type: application/rss+xml; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set'])); |
|
| 230 | - elseif ($xml_format == 'atom') |
|
| 231 | - header('Content-Type: application/atom+xml; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set'])); |
|
| 232 | - elseif ($xml_format == 'rdf') |
|
| 233 | - header('Content-Type: ' . (isBrowser('ie') ? 'text/xml' : 'application/rdf+xml') . '; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set'])); |
|
| 240 | + if ($xml_format == 'smf' || isset($_REQUEST['debug'])) { |
|
| 241 | + header('Content-Type: text/xml; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set'])); |
|
| 242 | + } elseif ($xml_format == 'rss' || $xml_format == 'rss2') { |
|
| 243 | + header('Content-Type: application/rss+xml; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set'])); |
|
| 244 | + } elseif ($xml_format == 'atom') { |
|
| 245 | + header('Content-Type: application/atom+xml; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set'])); |
|
| 246 | + } elseif ($xml_format == 'rdf') { |
|
| 247 | + header('Content-Type: ' . (isBrowser('ie') ? 'text/xml' : 'application/rdf+xml') . '; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set'])); |
|
| 248 | + } |
|
| 234 | 249 | |
| 235 | 250 | // First, output the xml header. |
| 236 | 251 | echo '<?xml version="1.0" encoding="', $context['character_set'], '"?' . '>'; |
@@ -247,8 +262,9 @@ discard block |
||
| 247 | 262 | <description>', cdata_parse(strip_tags($txt['xml_rss_desc'])), '</description>'; |
| 248 | 263 | |
| 249 | 264 | // RSS2 calls for this. |
| 250 | - if ($xml_format == 'rss2') |
|
| 251 | - echo '<atom:link rel="self" type="application/rss+xml" href="', $scripturl, '?action=.xml', !empty($_GET['sa']) ? ';sa=' . $_GET['sa'] : '', ';type=rss2" />'; |
|
| 265 | + if ($xml_format == 'rss2') { |
|
| 266 | + echo '<atom:link rel="self" type="application/rss+xml" href="', $scripturl, '?action=.xml', !empty($_GET['sa']) ? ';sa=' . $_GET['sa'] : '', ';type=rss2" />'; |
|
| 267 | + } |
|
| 252 | 268 | |
| 253 | 269 | // Output all of the associative array, start indenting with 2 tabs, and name everything "item". |
| 254 | 270 | dumpTags($xml, 2, 'item', $xml_format); |
@@ -257,12 +273,12 @@ discard block |
||
| 257 | 273 | echo ' |
| 258 | 274 | </channel> |
| 259 | 275 | </rss>'; |
| 260 | - } |
|
| 261 | - elseif ($xml_format == 'atom') |
|
| 276 | + } elseif ($xml_format == 'atom') |
|
| 262 | 277 | { |
| 263 | - foreach ($_REQUEST as $var => $val) |
|
| 264 | - if (in_array($var, array('action', 'sa', 'type', 'board', 'boards', 'c', 'u', 'limit'))) |
|
| 278 | + foreach ($_REQUEST as $var => $val) { |
|
| 279 | + if (in_array($var, array('action', 'sa', 'type', 'board', 'boards', 'c', 'u', 'limit'))) |
|
| 265 | 280 | $url_parts[] = $var . '=' . (is_array($_REQUEST[$var]) ? implode(',', $_REQUEST[$var]) : $_REQUEST[$var]); |
| 281 | + } |
|
| 266 | 282 | |
| 267 | 283 | echo ' |
| 268 | 284 | <feed xmlns="http://www.w3.org/2005/Atom"> |
@@ -283,8 +299,7 @@ discard block |
||
| 283 | 299 | |
| 284 | 300 | echo ' |
| 285 | 301 | </feed>'; |
| 286 | - } |
|
| 287 | - elseif ($xml_format == 'rdf') |
|
| 302 | + } elseif ($xml_format == 'rdf') |
|
| 288 | 303 | { |
| 289 | 304 | echo ' |
| 290 | 305 | <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns="http://purl.org/rss/1.0/"> |
@@ -295,9 +310,10 @@ discard block |
||
| 295 | 310 | <items> |
| 296 | 311 | <rdf:Seq>'; |
| 297 | 312 | |
| 298 | - foreach ($xml as $item) |
|
| 299 | - echo ' |
|
| 313 | + foreach ($xml as $item) { |
|
| 314 | + echo ' |
|
| 300 | 315 | <rdf:li rdf:resource="', $item['link'], '" />'; |
| 316 | + } |
|
| 301 | 317 | |
| 302 | 318 | echo ' |
| 303 | 319 | </rdf:Seq> |
@@ -337,13 +353,15 @@ discard block |
||
| 337 | 353 | { |
| 338 | 354 | global $modSettings, $context, $scripturl; |
| 339 | 355 | |
| 340 | - if (substr($val, 0, strlen($scripturl)) != $scripturl) |
|
| 341 | - return $val; |
|
| 356 | + if (substr($val, 0, strlen($scripturl)) != $scripturl) { |
|
| 357 | + return $val; |
|
| 358 | + } |
|
| 342 | 359 | |
| 343 | 360 | call_integration_hook('integrate_fix_url', array(&$val)); |
| 344 | 361 | |
| 345 | - if (empty($modSettings['queryless_urls']) || ($context['server']['is_cgi'] && ini_get('cgi.fix_pathinfo') == 0 && @get_cfg_var('cgi.fix_pathinfo') == 0) || (!$context['server']['is_apache'] && !$context['server']['is_lighttpd'])) |
|
| 346 | - return $val; |
|
| 362 | + if (empty($modSettings['queryless_urls']) || ($context['server']['is_cgi'] && ini_get('cgi.fix_pathinfo') == 0 && @get_cfg_var('cgi.fix_pathinfo') == 0) || (!$context['server']['is_apache'] && !$context['server']['is_lighttpd'])) { |
|
| 363 | + return $val; |
|
| 364 | + } |
|
| 347 | 365 | |
| 348 | 366 | $val = preg_replace_callback('~^' . preg_quote($scripturl, '/') . '\?((?:board|topic)=[^#"]+)(#[^"]*)?$~', function ($m) use ($scripturl) |
| 349 | 367 | { |
@@ -365,8 +383,9 @@ discard block |
||
| 365 | 383 | global $smcFunc; |
| 366 | 384 | |
| 367 | 385 | // Do we even need to do this? |
| 368 | - if (strpbrk($data, '<>&') == false) |
|
| 369 | - return $data; |
|
| 386 | + if (strpbrk($data, '<>&') == false) { |
|
| 387 | + return $data; |
|
| 388 | + } |
|
| 370 | 389 | |
| 371 | 390 | $cdata = '<, |
| 377 | 396 | $smcFunc['strpos']($data, ']', $pos), |
| 378 | 397 | ); |
| 379 | - if ($ns != '') |
|
| 380 | - $positions[] = $smcFunc['strpos']($data, '<', $pos); |
|
| 398 | + if ($ns != '') { |
|
| 399 | + $positions[] = $smcFunc['strpos']($data, '<', $pos); |
|
| 400 | + } |
|
| 381 | 401 | foreach ($positions as $k => $dummy) |
| 382 | 402 | { |
| 383 | - if ($dummy === false) |
|
| 384 | - unset($positions[$k]); |
|
| 403 | + if ($dummy === false) { |
|
| 404 | + unset($positions[$k]); |
|
| 405 | + } |
|
| 385 | 406 | } |
| 386 | 407 | |
| 387 | 408 | $old = $pos; |
| 388 | 409 | $pos = empty($positions) ? $n : min($positions); |
| 389 | 410 | |
| 390 | - if ($pos - $old > 0) |
|
| 391 | - $cdata .= $smcFunc['substr']($data, $old, $pos - $old); |
|
| 392 | - if ($pos >= $n) |
|
| 393 | - break; |
|
| 411 | + if ($pos - $old > 0) { |
|
| 412 | + $cdata .= $smcFunc['substr']($data, $old, $pos - $old); |
|
| 413 | + } |
|
| 414 | + if ($pos >= $n) { |
|
| 415 | + break; |
|
| 416 | + } |
|
| 394 | 417 | |
| 395 | 418 | if ($smcFunc['substr']($data, $pos, 1) == '<') |
| 396 | 419 | { |
| 397 | 420 | $pos2 = $smcFunc['strpos']($data, '>', $pos); |
| 398 | - if ($pos2 === false) |
|
| 399 | - $pos2 = $n; |
|
| 400 | - if ($smcFunc['substr']($data, $pos + 1, 1) == '/') |
|
| 401 | - $cdata .= ']]></' . $ns . ':' . $smcFunc['substr']($data, $pos + 2, $pos2 - $pos - 1) . '<![CDATA['; |
|
| 402 | - else |
|
| 403 | - $cdata .= ']]><' . $ns . ':' . $smcFunc['substr']($data, $pos + 1, $pos2 - $pos) . '< == '/') { |
|
| 425 | + $cdata .= ']]></' . $ns . ':' . $smcFunc['substr']($data, $pos + 2, $pos2 - $pos - 1) . '<![CDATA['; |
|
| 426 | + } else { |
|
| 427 | + $cdata .= ']]><' . $ns . ':' . $smcFunc['substr']($data, $pos + 1, $pos2 - $pos) . '< == ']') |
|
| 430 | + } elseif ($smcFunc['substr']($data, $pos, 1) == ']') |
|
| 407 | 431 | { |
| 408 | 432 | $cdata .= ']]>]< == '&') |
|
| 434 | + } elseif ($smcFunc['substr']($data, $pos, 1) == '&') |
|
| 412 | 435 | { |
| 413 | 436 | $pos2 = $smcFunc['strpos']($data, ';', $pos); |
| 414 | - if ($pos2 === false) |
|
| 415 | - $pos2 = $n; |
|
| 437 | + if ($pos2 === false) { |
|
| 438 | + $pos2 = $n; |
|
| 439 | + } |
|
| 416 | 440 | $ent = $smcFunc['substr']($data, $pos + 1, $pos2 - $pos - 1); |
| 417 | 441 | |
| 418 | - if ($smcFunc['substr']($data, $pos + 1, 1) == '#') |
|
| 419 | - $cdata .= ']]>' . $smcFunc['substr']($data, $pos, $pos2 - $pos + 1) . '<![CDATA['; |
|
| 420 | - elseif (in_array($ent, array('amp', 'lt', 'gt', 'quot'))) |
|
| 421 | - $cdata .= ']]>' . $smcFunc['substr']($data, $pos, $pos2 - $pos + 1) . '< == '#') { |
|
| 443 | + $cdata .= ']]>' . $smcFunc['substr']($data, $pos, $pos2 - $pos + 1) . '<![CDATA['; |
|
| 444 | + } elseif (in_array($ent, array('amp', 'lt', 'gt', 'quot'))) { |
|
| 445 | + $cdata .= ']]>' . $smcFunc['substr']($data, $pos, $pos2 - $pos + 1) . '<![CDATA['; |
|
| 446 | + } |
|
| 422 | 447 | |
| 423 | 448 | $pos = $pos2 + 1; |
| 424 | 449 | } |
@@ -456,19 +481,22 @@ discard block |
||
| 456 | 481 | 'gender', |
| 457 | 482 | 'blurb', |
| 458 | 483 | ); |
| 459 | - if ($xml_format != 'atom') |
|
| 460 | - $keysToCdata[] = 'category'; |
|
| 484 | + if ($xml_format != 'atom') { |
|
| 485 | + $keysToCdata[] = 'category'; |
|
| 486 | + } |
|
| 461 | 487 | |
| 462 | 488 | // For every array in the data... |
| 463 | 489 | foreach ($data as $key => $val) |
| 464 | 490 | { |
| 465 | 491 | // Skip it, it's been set to null. |
| 466 | - if ($val === null) |
|
| 467 | - continue; |
|
| 492 | + if ($val === null) { |
|
| 493 | + continue; |
|
| 494 | + } |
|
| 468 | 495 | |
| 469 | 496 | // If the value should maybe be CDATA, do that now. |
| 470 | - if (!is_array($val) && in_array($key, $keysToCdata)) |
|
| 471 | - $val = cdata_parse($val); |
|
| 497 | + if (!is_array($val) && in_array($key, $keysToCdata)) { |
|
| 498 | + $val = cdata_parse($val); |
|
| 499 | + } |
|
| 472 | 500 | |
| 473 | 501 | // If a tag was passed, use it instead of the key. |
| 474 | 502 | $key = isset($tag) ? $tag : $key; |
@@ -484,11 +512,11 @@ discard block |
||
| 484 | 512 | } |
| 485 | 513 | |
| 486 | 514 | // If it's empty/0/nothing simply output an empty tag. |
| 487 | - if ($val == '') |
|
| 488 | - echo '<', $key, ' />'; |
|
| 489 | - elseif ($xml_format == 'atom' && $key == 'category') |
|
| 490 | - echo '<', $key, ' term="', $val, '" />'; |
|
| 491 | - else |
|
| 515 | + if ($val == '') { |
|
| 516 | + echo '<', $key, ' />'; |
|
| 517 | + } elseif ($xml_format == 'atom' && $key == 'category') { |
|
| 518 | + echo '<', $key, ' term="', $val, '" />'; |
|
| 519 | + } else |
|
| 492 | 520 | { |
| 493 | 521 | // Beginning tag. |
| 494 | 522 | if ($xml_format == 'rdf' && $key == 'item' && isset($val['link'])) |
@@ -496,11 +524,11 @@ discard block |
||
| 496 | 524 | echo '<', $key, ' rdf:about="', fix_possible_url($val['link']), '">'; |
| 497 | 525 | echo "\n", str_repeat("\t", $i + 1); |
| 498 | 526 | echo '<dc:format>text/html</dc:format>'; |
| 527 | + } elseif ($xml_format == 'atom' && $key == 'summary') { |
|
| 528 | + echo '<', $key, ' type="html">'; |
|
| 529 | + } else { |
|
| 530 | + echo '<', $key, '>'; |
|
| 499 | 531 | } |
| 500 | - elseif ($xml_format == 'atom' && $key == 'summary') |
|
| 501 | - echo '<', $key, ' type="html">'; |
|
| 502 | - else |
|
| 503 | - echo '<', $key, '>'; |
|
| 504 | 532 | |
| 505 | 533 | // The element's value. |
| 506 | 534 | if (is_array($val)) |
@@ -510,11 +538,13 @@ discard block |
||
| 510 | 538 | echo "\n", str_repeat("\t", $i); |
| 511 | 539 | } |
| 512 | 540 | // A string with returns in it.... show this as a multiline element. |
| 513 | - elseif (strpos($val, "\n") !== false || preg_match('~<br ?/?' . '>~', $val) !== false) |
|
| 514 | - echo "\n", fix_possible_url($val), "\n", str_repeat("\t", $i); |
|
| 541 | + elseif (strpos($val, "\n") !== false || preg_match('~<br ?/?' . '>~', $val) !== false) { |
|
| 542 | + echo "\n", fix_possible_url($val), "\n", str_repeat("\t", $i); |
|
| 543 | + } |
|
| 515 | 544 | // A simple string. |
| 516 | - else |
|
| 517 | - echo fix_possible_url($val); |
|
| 545 | + else { |
|
| 546 | + echo fix_possible_url($val); |
|
| 547 | + } |
|
| 518 | 548 | |
| 519 | 549 | // Ending tag. |
| 520 | 550 | echo '</', $key, '>'; |
@@ -534,8 +564,9 @@ discard block |
||
| 534 | 564 | { |
| 535 | 565 | global $scripturl, $smcFunc; |
| 536 | 566 | |
| 537 | - if (!allowedTo('view_mlist')) |
|
| 538 | - return array(); |
|
| 567 | + if (!allowedTo('view_mlist')) { |
|
| 568 | + return array(); |
|
| 569 | + } |
|
| 539 | 570 | |
| 540 | 571 | // Find the most recent members. |
| 541 | 572 | $request = $smcFunc['db_query']('', ' |
@@ -551,35 +582,37 @@ discard block |
||
| 551 | 582 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 552 | 583 | { |
| 553 | 584 | // Make the data look rss-ish. |
| 554 | - if ($xml_format == 'rss' || $xml_format == 'rss2') |
|
| 555 | - $data[] = array( |
|
| 585 | + if ($xml_format == 'rss' || $xml_format == 'rss2') { |
|
| 586 | + $data[] = array( |
|
| 556 | 587 | 'title' => $row['real_name'], |
| 557 | 588 | 'link' => $scripturl . '?action=profile;u=' . $row['id_member'], |
| 558 | 589 | 'comments' => $scripturl . '?action=pm;sa=send;u=' . $row['id_member'], |
| 559 | 590 | 'pubDate' => gmdate('D, d M Y H:i:s \G\M\T', $row['date_registered']), |
| 560 | 591 | 'guid' => $scripturl . '?action=profile;u=' . $row['id_member'], |
| 561 | 592 | ); |
| 562 | - elseif ($xml_format == 'rdf') |
|
| 563 | - $data[] = array( |
|
| 593 | + } elseif ($xml_format == 'rdf') { |
|
| 594 | + $data[] = array( |
|
| 564 | 595 | 'title' => $row['real_name'], |
| 565 | 596 | 'link' => $scripturl . '?action=profile;u=' . $row['id_member'], |
| 566 | 597 | ); |
| 567 | - elseif ($xml_format == 'atom') |
|
| 568 | - $data[] = array( |
|
| 598 | + } elseif ($xml_format == 'atom') { |
|
| 599 | + $data[] = array( |
|
| 569 | 600 | 'title' => $row['real_name'], |
| 570 | 601 | 'link' => $scripturl . '?action=profile;u=' . $row['id_member'], |
| 571 | 602 | 'published' => gmstrftime('%Y-%m-%dT%H:%M:%SZ', $row['date_registered']), |
| 572 | 603 | 'updated' => gmstrftime('%Y-%m-%dT%H:%M:%SZ', $row['last_login']), |
| 573 | 604 | 'id' => $scripturl . '?action=profile;u=' . $row['id_member'], |
| 574 | 605 | ); |
| 606 | + } |
|
| 575 | 607 | // More logical format for the data, but harder to apply. |
| 576 | - else |
|
| 577 | - $data[] = array( |
|
| 608 | + else { |
|
| 609 | + $data[] = array( |
|
| 578 | 610 | 'name' => $row['real_name'], |
| 579 | 611 | 'time' => $smcFunc['htmlspecialchars'](strip_tags(timeformat($row['date_registered']))), |
| 580 | 612 | 'id' => $row['id_member'], |
| 581 | 613 | 'link' => $scripturl . '?action=profile;u=' . $row['id_member'] |
| 582 | 614 | ); |
| 615 | + } |
|
| 583 | 616 | } |
| 584 | 617 | $smcFunc['db_free_result']($request); |
| 585 | 618 | |
@@ -640,22 +673,24 @@ discard block |
||
| 640 | 673 | if ($loops < 2 && $smcFunc['db_num_rows']($request) < $_GET['limit']) |
| 641 | 674 | { |
| 642 | 675 | $smcFunc['db_free_result']($request); |
| 643 | - if (empty($_REQUEST['boards']) && empty($board)) |
|
| 644 | - unset($context['optimize_msg']['lowest']); |
|
| 645 | - else |
|
| 646 | - $context['optimize_msg']['lowest'] = 'm.id_msg >= t.id_first_msg'; |
|
| 676 | + if (empty($_REQUEST['boards']) && empty($board)) { |
|
| 677 | + unset($context['optimize_msg']['lowest']); |
|
| 678 | + } else { |
|
| 679 | + $context['optimize_msg']['lowest'] = 'm.id_msg >= t.id_first_msg'; |
|
| 680 | + } |
|
| 647 | 681 | $context['optimize_msg']['highest'] = 'm.id_msg <= t.id_last_msg'; |
| 648 | 682 | $loops++; |
| 683 | + } else { |
|
| 684 | + $done = true; |
|
| 649 | 685 | } |
| 650 | - else |
|
| 651 | - $done = true; |
|
| 652 | 686 | } |
| 653 | 687 | $data = array(); |
| 654 | 688 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 655 | 689 | { |
| 656 | 690 | // Limit the length of the message, if the option is set. |
| 657 | - if (!empty($modSettings['xmlnews_maxlen']) && $smcFunc['strlen'](str_replace('<br>', "\n", $row['body'])) > $modSettings['xmlnews_maxlen']) |
|
| 658 | - $row['body'] = strtr($smcFunc['substr'](str_replace('<br>', "\n", $row['body']), 0, $modSettings['xmlnews_maxlen'] - 3), array("\n" => '<br>')) . '...'; |
|
| 691 | + if (!empty($modSettings['xmlnews_maxlen']) && $smcFunc['strlen'](str_replace('<br>', "\n", $row['body'])) > $modSettings['xmlnews_maxlen']) { |
|
| 692 | + $row['body'] = strtr($smcFunc['substr'](str_replace('<br>', "\n", $row['body']), 0, $modSettings['xmlnews_maxlen'] - 3), array("\n" => '<br>')) . '...'; |
|
| 693 | + } |
|
| 659 | 694 | |
| 660 | 695 | $row['body'] = parse_bbc($row['body'], $row['smileys_enabled'], $row['id_msg']); |
| 661 | 696 | |
@@ -663,8 +698,8 @@ discard block |
||
| 663 | 698 | censorText($row['subject']); |
| 664 | 699 | |
| 665 | 700 | // Being news, this actually makes sense in rss format. |
| 666 | - if ($xml_format == 'rss' || $xml_format == 'rss2') |
|
| 667 | - $data[] = array( |
|
| 701 | + if ($xml_format == 'rss' || $xml_format == 'rss2') { |
|
| 702 | + $data[] = array( |
|
| 668 | 703 | 'title' => $row['subject'], |
| 669 | 704 | 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.0', |
| 670 | 705 | 'description' => $row['body'], |
@@ -674,14 +709,14 @@ discard block |
||
| 674 | 709 | 'pubDate' => gmdate('D, d M Y H:i:s \G\M\T', $row['poster_time']), |
| 675 | 710 | 'guid' => $scripturl . '?topic=' . $row['id_topic'] . '.0', |
| 676 | 711 | ); |
| 677 | - elseif ($xml_format == 'rdf') |
|
| 678 | - $data[] = array( |
|
| 712 | + } elseif ($xml_format == 'rdf') { |
|
| 713 | + $data[] = array( |
|
| 679 | 714 | 'title' => $row['subject'], |
| 680 | 715 | 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.0', |
| 681 | 716 | 'description' => $row['body'], |
| 682 | 717 | ); |
| 683 | - elseif ($xml_format == 'atom') |
|
| 684 | - $data[] = array( |
|
| 718 | + } elseif ($xml_format == 'atom') { |
|
| 719 | + $data[] = array( |
|
| 685 | 720 | 'title' => $row['subject'], |
| 686 | 721 | 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.0', |
| 687 | 722 | 'summary' => $row['body'], |
@@ -695,9 +730,10 @@ discard block |
||
| 695 | 730 | 'updated' => gmstrftime('%Y-%m-%dT%H:%M:%SZ', empty($row['modified_time']) ? $row['poster_time'] : $row['modified_time']), |
| 696 | 731 | 'id' => $scripturl . '?topic=' . $row['id_topic'] . '.0', |
| 697 | 732 | ); |
| 733 | + } |
|
| 698 | 734 | // The biggest difference here is more information. |
| 699 | - else |
|
| 700 | - $data[] = array( |
|
| 735 | + else { |
|
| 736 | + $data[] = array( |
|
| 701 | 737 | 'time' => $smcFunc['htmlspecialchars'](strip_tags(timeformat($row['poster_time']))), |
| 702 | 738 | 'id' => $row['id_topic'], |
| 703 | 739 | 'subject' => $row['subject'], |
@@ -715,6 +751,7 @@ discard block |
||
| 715 | 751 | ), |
| 716 | 752 | 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.0', |
| 717 | 753 | ); |
| 754 | + } |
|
| 718 | 755 | } |
| 719 | 756 | $smcFunc['db_free_result']($request); |
| 720 | 757 | |
@@ -761,22 +798,25 @@ discard block |
||
| 761 | 798 | if ($loops < 2 && $smcFunc['db_num_rows']($request) < $_GET['limit']) |
| 762 | 799 | { |
| 763 | 800 | $smcFunc['db_free_result']($request); |
| 764 | - if (empty($_REQUEST['boards']) && empty($board)) |
|
| 765 | - unset($context['optimize_msg']['lowest']); |
|
| 766 | - else |
|
| 767 | - $context['optimize_msg']['lowest'] = $loops ? 'm.id_msg >= t.id_first_msg' : 'm.id_msg >= (t.id_last_msg - t.id_first_msg) / 2'; |
|
| 801 | + if (empty($_REQUEST['boards']) && empty($board)) { |
|
| 802 | + unset($context['optimize_msg']['lowest']); |
|
| 803 | + } else { |
|
| 804 | + $context['optimize_msg']['lowest'] = $loops ? 'm.id_msg >= t.id_first_msg' : 'm.id_msg >= (t.id_last_msg - t.id_first_msg) / 2'; |
|
| 805 | + } |
|
| 768 | 806 | $loops++; |
| 807 | + } else { |
|
| 808 | + $done = true; |
|
| 769 | 809 | } |
| 770 | - else |
|
| 771 | - $done = true; |
|
| 772 | 810 | } |
| 773 | 811 | $messages = array(); |
| 774 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 775 | - $messages[] = $row['id_msg']; |
|
| 812 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 813 | + $messages[] = $row['id_msg']; |
|
| 814 | + } |
|
| 776 | 815 | $smcFunc['db_free_result']($request); |
| 777 | 816 | |
| 778 | - if (empty($messages)) |
|
| 779 | - return array(); |
|
| 817 | + if (empty($messages)) { |
|
| 818 | + return array(); |
|
| 819 | + } |
|
| 780 | 820 | |
| 781 | 821 | // Find the most recent posts this user can see. |
| 782 | 822 | $request = $smcFunc['db_query']('', ' |
@@ -806,8 +846,9 @@ discard block |
||
| 806 | 846 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 807 | 847 | { |
| 808 | 848 | // Limit the length of the message, if the option is set. |
| 809 | - if (!empty($modSettings['xmlnews_maxlen']) && $smcFunc['strlen'](str_replace('<br>', "\n", $row['body'])) > $modSettings['xmlnews_maxlen']) |
|
| 810 | - $row['body'] = strtr($smcFunc['substr'](str_replace('<br>', "\n", $row['body']), 0, $modSettings['xmlnews_maxlen'] - 3), array("\n" => '<br>')) . '...'; |
|
| 849 | + if (!empty($modSettings['xmlnews_maxlen']) && $smcFunc['strlen'](str_replace('<br>', "\n", $row['body'])) > $modSettings['xmlnews_maxlen']) { |
|
| 850 | + $row['body'] = strtr($smcFunc['substr'](str_replace('<br>', "\n", $row['body']), 0, $modSettings['xmlnews_maxlen'] - 3), array("\n" => '<br>')) . '...'; |
|
| 851 | + } |
|
| 811 | 852 | |
| 812 | 853 | $row['body'] = parse_bbc($row['body'], $row['smileys_enabled'], $row['id_msg']); |
| 813 | 854 | |
@@ -815,8 +856,8 @@ discard block |
||
| 815 | 856 | censorText($row['subject']); |
| 816 | 857 | |
| 817 | 858 | // Doesn't work as well as news, but it kinda does.. |
| 818 | - if ($xml_format == 'rss' || $xml_format == 'rss2') |
|
| 819 | - $data[] = array( |
|
| 859 | + if ($xml_format == 'rss' || $xml_format == 'rss2') { |
|
| 860 | + $data[] = array( |
|
| 820 | 861 | 'title' => $row['subject'], |
| 821 | 862 | 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['id_msg'] . '#msg' . $row['id_msg'], |
| 822 | 863 | 'description' => $row['body'], |
@@ -826,14 +867,14 @@ discard block |
||
| 826 | 867 | 'pubDate' => gmdate('D, d M Y H:i:s \G\M\T', $row['poster_time']), |
| 827 | 868 | 'guid' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['id_msg'] . '#msg' . $row['id_msg'] |
| 828 | 869 | ); |
| 829 | - elseif ($xml_format == 'rdf') |
|
| 830 | - $data[] = array( |
|
| 870 | + } elseif ($xml_format == 'rdf') { |
|
| 871 | + $data[] = array( |
|
| 831 | 872 | 'title' => $row['subject'], |
| 832 | 873 | 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['id_msg'] . '#msg' . $row['id_msg'], |
| 833 | 874 | 'description' => $row['body'], |
| 834 | 875 | ); |
| 835 | - elseif ($xml_format == 'atom') |
|
| 836 | - $data[] = array( |
|
| 876 | + } elseif ($xml_format == 'atom') { |
|
| 877 | + $data[] = array( |
|
| 837 | 878 | 'title' => $row['subject'], |
| 838 | 879 | 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['id_msg'] . '#msg' . $row['id_msg'], |
| 839 | 880 | 'summary' => $row['body'], |
@@ -847,9 +888,10 @@ discard block |
||
| 847 | 888 | 'updated' => gmstrftime('%Y-%m-%dT%H:%M:%SZ', empty($row['modified_time']) ? $row['poster_time'] : $row['modified_time']), |
| 848 | 889 | 'id' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['id_msg'] . '#msg' . $row['id_msg'], |
| 849 | 890 | ); |
| 891 | + } |
|
| 850 | 892 | // A lot of information here. Should be enough to please the rss-ers. |
| 851 | - else |
|
| 852 | - $data[] = array( |
|
| 893 | + else { |
|
| 894 | + $data[] = array( |
|
| 853 | 895 | 'time' => $smcFunc['htmlspecialchars'](strip_tags(timeformat($row['poster_time']))), |
| 854 | 896 | 'id' => $row['id_msg'], |
| 855 | 897 | 'subject' => $row['subject'], |
@@ -876,6 +918,7 @@ discard block |
||
| 876 | 918 | ), |
| 877 | 919 | 'link' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['id_msg'] . '#msg' . $row['id_msg'] |
| 878 | 920 | ); |
| 921 | + } |
|
| 879 | 922 | } |
| 880 | 923 | $smcFunc['db_free_result']($request); |
| 881 | 924 | |
@@ -895,20 +938,22 @@ discard block |
||
| 895 | 938 | global $scripturl, $memberContext, $user_profile, $user_info; |
| 896 | 939 | |
| 897 | 940 | // You must input a valid user.... |
| 898 | - if (empty($_GET['u']) || !loadMemberData((int) $_GET['u'])) |
|
| 899 | - return array(); |
|
| 941 | + if (empty($_GET['u']) || !loadMemberData((int) $_GET['u'])) { |
|
| 942 | + return array(); |
|
| 943 | + } |
|
| 900 | 944 | |
| 901 | 945 | // Make sure the id is a number and not "I like trying to hack the database". |
| 902 | 946 | $_GET['u'] = (int) $_GET['u']; |
| 903 | 947 | // Load the member's contextual information! |
| 904 | - if (!loadMemberContext($_GET['u']) || !allowedTo('profile_view')) |
|
| 905 | - return array(); |
|
| 948 | + if (!loadMemberContext($_GET['u']) || !allowedTo('profile_view')) { |
|
| 949 | + return array(); |
|
| 950 | + } |
|
| 906 | 951 | |
| 907 | 952 | // Okay, I admit it, I'm lazy. Stupid $_GET['u'] is long and hard to type. |
| 908 | 953 | $profile = &$memberContext[$_GET['u']]; |
| 909 | 954 | |
| 910 | - if ($xml_format == 'rss' || $xml_format == 'rss2') |
|
| 911 | - $data = array(array( |
|
| 955 | + if ($xml_format == 'rss' || $xml_format == 'rss2') { |
|
| 956 | + $data = array(array( |
|
| 912 | 957 | 'title' => $profile['name'], |
| 913 | 958 | 'link' => $scripturl . '?action=profile;u=' . $profile['id'], |
| 914 | 959 | 'description' => isset($profile['group']) ? $profile['group'] : $profile['post_group'], |
@@ -916,14 +961,14 @@ discard block |
||
| 916 | 961 | 'pubDate' => gmdate('D, d M Y H:i:s \G\M\T', $user_profile[$profile['id']]['date_registered']), |
| 917 | 962 | 'guid' => $scripturl . '?action=profile;u=' . $profile['id'], |
| 918 | 963 | )); |
| 919 | - elseif ($xml_format == 'rdf') |
|
| 920 | - $data = array(array( |
|
| 964 | + } elseif ($xml_format == 'rdf') { |
|
| 965 | + $data = array(array( |
|
| 921 | 966 | 'title' => $profile['name'], |
| 922 | 967 | 'link' => $scripturl . '?action=profile;u=' . $profile['id'], |
| 923 | 968 | 'description' => isset($profile['group']) ? $profile['group'] : $profile['post_group'], |
| 924 | 969 | )); |
| 925 | - elseif ($xml_format == 'atom') |
|
| 926 | - $data[] = array( |
|
| 970 | + } elseif ($xml_format == 'atom') { |
|
| 971 | + $data[] = array( |
|
| 927 | 972 | 'title' => $profile['name'], |
| 928 | 973 | 'link' => $scripturl . '?action=profile;u=' . $profile['id'], |
| 929 | 974 | 'summary' => isset($profile['group']) ? $profile['group'] : $profile['post_group'], |
@@ -937,7 +982,7 @@ discard block |
||
| 937 | 982 | 'id' => $scripturl . '?action=profile;u=' . $profile['id'], |
| 938 | 983 | 'logo' => !empty($profile['avatar']) ? $profile['avatar']['url'] : '', |
| 939 | 984 | ); |
| 940 | - else |
|
| 985 | + } else |
|
| 941 | 986 | { |
| 942 | 987 | $data = array( |
| 943 | 988 | 'username' => $user_info['is_admin'] || $user_info['id'] == $profile['id'] ? $profile['username'] : '', |
@@ -951,34 +996,43 @@ discard block |
||
| 951 | 996 | ); |
| 952 | 997 | |
| 953 | 998 | // Everything below here might not be set, and thus maybe shouldn't be displayed. |
| 954 | - if ($profile['gender']['name'] != '') |
|
| 955 | - $data['gender'] = $profile['gender']['name']; |
|
| 999 | + if ($profile['gender']['name'] != '') { |
|
| 1000 | + $data['gender'] = $profile['gender']['name']; |
|
| 1001 | + } |
|
| 956 | 1002 | |
| 957 | - if ($profile['avatar']['name'] != '') |
|
| 958 | - $data['avatar'] = $profile['avatar']['url']; |
|
| 1003 | + if ($profile['avatar']['name'] != '') { |
|
| 1004 | + $data['avatar'] = $profile['avatar']['url']; |
|
| 1005 | + } |
|
| 959 | 1006 | |
| 960 | 1007 | // If they are online, show an empty tag... no reason to put anything inside it. |
| 961 | - if ($profile['online']['is_online']) |
|
| 962 | - $data['online'] = ''; |
|
| 963 | - |
|
| 964 | - if ($profile['signature'] != '') |
|
| 965 | - $data['signature'] = $profile['signature']; |
|
| 966 | - if ($profile['blurb'] != '') |
|
| 967 | - $data['blurb'] = $profile['blurb']; |
|
| 968 | - if ($profile['title'] != '') |
|
| 969 | - $data['title'] = $profile['title']; |
|
| 970 | - |
|
| 971 | - if ($profile['website']['title'] != '') |
|
| 972 | - $data['website'] = array( |
|
| 1008 | + if ($profile['online']['is_online']) { |
|
| 1009 | + $data['online'] = ''; |
|
| 1010 | + } |
|
| 1011 | + |
|
| 1012 | + if ($profile['signature'] != '') { |
|
| 1013 | + $data['signature'] = $profile['signature']; |
|
| 1014 | + } |
|
| 1015 | + if ($profile['blurb'] != '') { |
|
| 1016 | + $data['blurb'] = $profile['blurb']; |
|
| 1017 | + } |
|
| 1018 | + if ($profile['title'] != '') { |
|
| 1019 | + $data['title'] = $profile['title']; |
|
| 1020 | + } |
|
| 1021 | + |
|
| 1022 | + if ($profile['website']['title'] != '') { |
|
| 1023 | + $data['website'] = array( |
|
| 973 | 1024 | 'title' => $profile['website']['title'], |
| 974 | 1025 | 'link' => $profile['website']['url'] |
| 975 | 1026 | ); |
| 1027 | + } |
|
| 976 | 1028 | |
| 977 | - if ($profile['group'] != '') |
|
| 978 | - $data['position'] = $profile['group']; |
|
| 1029 | + if ($profile['group'] != '') { |
|
| 1030 | + $data['position'] = $profile['group']; |
|
| 1031 | + } |
|
| 979 | 1032 | |
| 980 | - if ($profile['show_email']) |
|
| 981 | - $data['email'] = $profile['email']; |
|
| 1033 | + if ($profile['show_email']) { |
|
| 1034 | + $data['email'] = $profile['email']; |
|
| 1035 | + } |
|
| 982 | 1036 | |
| 983 | 1037 | if (!empty($profile['birth_date']) && substr($profile['birth_date'], 0, 4) != '0000') |
| 984 | 1038 | { |