@@ -32,74 +32,74 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | class Socket |
| 34 | 34 | { |
| 35 | - private $handle = null; |
|
| 35 | + private $handle = null; |
|
| 36 | 36 | |
| 37 | - /** |
|
| 38 | - * fsockopen |
|
| 39 | - * |
|
| 40 | - * @see https://php.net/fsockopen |
|
| 41 | - * @param string $hostname |
|
| 42 | - * @param int $port |
|
| 43 | - * @param int $errno |
|
| 44 | - * @param string $errstr |
|
| 45 | - * @param float $timeout |
|
| 46 | - * @return resource |
|
| 47 | - */ |
|
| 48 | - public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) |
|
| 49 | - { |
|
| 50 | - $this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get("default_socket_timeout") : $timeout)); |
|
| 37 | + /** |
|
| 38 | + * fsockopen |
|
| 39 | + * |
|
| 40 | + * @see https://php.net/fsockopen |
|
| 41 | + * @param string $hostname |
|
| 42 | + * @param int $port |
|
| 43 | + * @param int $errno |
|
| 44 | + * @param string $errstr |
|
| 45 | + * @param float $timeout |
|
| 46 | + * @return resource |
|
| 47 | + */ |
|
| 48 | + public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) |
|
| 49 | + { |
|
| 50 | + $this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get("default_socket_timeout") : $timeout)); |
|
| 51 | 51 | |
| 52 | - if ($this->handle != false && $errno === 0 && $errstr === '') { |
|
| 53 | - return $this->handle; |
|
| 54 | - } else { |
|
| 55 | - return false; |
|
| 56 | - } |
|
| 57 | - } |
|
| 52 | + if ($this->handle != false && $errno === 0 && $errstr === '') { |
|
| 53 | + return $this->handle; |
|
| 54 | + } else { |
|
| 55 | + return false; |
|
| 56 | + } |
|
| 57 | + } |
|
| 58 | 58 | |
| 59 | - /** |
|
| 60 | - * fwrite |
|
| 61 | - * |
|
| 62 | - * @see https://php.net/fwrite |
|
| 63 | - * @param string $string |
|
| 64 | - * @param int $length |
|
| 65 | - * @return int | bool |
|
| 66 | - */ |
|
| 67 | - public function fwrite($string, $length = null) |
|
| 68 | - { |
|
| 69 | - return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length)); |
|
| 70 | - } |
|
| 59 | + /** |
|
| 60 | + * fwrite |
|
| 61 | + * |
|
| 62 | + * @see https://php.net/fwrite |
|
| 63 | + * @param string $string |
|
| 64 | + * @param int $length |
|
| 65 | + * @return int | bool |
|
| 66 | + */ |
|
| 67 | + public function fwrite($string, $length = null) |
|
| 68 | + { |
|
| 69 | + return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length)); |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | - /** |
|
| 73 | - * fgets |
|
| 74 | - * |
|
| 75 | - * @see https://php.net/fgets |
|
| 76 | - * @param int $length |
|
| 77 | - * @return string |
|
| 78 | - */ |
|
| 79 | - public function fgets($length = null) |
|
| 80 | - { |
|
| 81 | - return fgets($this->handle, $length); |
|
| 82 | - } |
|
| 72 | + /** |
|
| 73 | + * fgets |
|
| 74 | + * |
|
| 75 | + * @see https://php.net/fgets |
|
| 76 | + * @param int $length |
|
| 77 | + * @return string |
|
| 78 | + */ |
|
| 79 | + public function fgets($length = null) |
|
| 80 | + { |
|
| 81 | + return fgets($this->handle, $length); |
|
| 82 | + } |
|
| 83 | 83 | |
| 84 | - /** |
|
| 85 | - * feof |
|
| 86 | - * |
|
| 87 | - * @see https://php.net/feof |
|
| 88 | - * @return bool |
|
| 89 | - */ |
|
| 90 | - public function feof() |
|
| 91 | - { |
|
| 92 | - return feof($this->handle); |
|
| 93 | - } |
|
| 84 | + /** |
|
| 85 | + * feof |
|
| 86 | + * |
|
| 87 | + * @see https://php.net/feof |
|
| 88 | + * @return bool |
|
| 89 | + */ |
|
| 90 | + public function feof() |
|
| 91 | + { |
|
| 92 | + return feof($this->handle); |
|
| 93 | + } |
|
| 94 | 94 | |
| 95 | - /** |
|
| 96 | - * fclose |
|
| 97 | - * |
|
| 98 | - * @see https://php.net/fclose |
|
| 99 | - * @return bool |
|
| 100 | - */ |
|
| 101 | - public function fclose() |
|
| 102 | - { |
|
| 103 | - return fclose($this->handle); |
|
| 104 | - } |
|
| 95 | + /** |
|
| 96 | + * fclose |
|
| 97 | + * |
|
| 98 | + * @see https://php.net/fclose |
|
| 99 | + * @return bool |
|
| 100 | + */ |
|
| 101 | + public function fclose() |
|
| 102 | + { |
|
| 103 | + return fclose($this->handle); |
|
| 104 | + } |
|
| 105 | 105 | } |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 4 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * Sets and call a function based on the given subaction. Acts as a dispatcher function. |
@@ -54,8 +55,9 @@ discard block |
||
| 54 | 55 | ); |
| 55 | 56 | |
| 56 | 57 | // This comes under the umbrella of moderating posts. |
| 57 | - if ($context['report_type'] == 'members' || $user_info['mod_cache']['bq'] == '0=1') |
|
| 58 | - isAllowedTo('moderate_forum'); |
|
| 58 | + if ($context['report_type'] == 'members' || $user_info['mod_cache']['bq'] == '0=1') { |
|
| 59 | + isAllowedTo('moderate_forum'); |
|
| 60 | + } |
|
| 59 | 61 | |
| 60 | 62 | $subActions = array( |
| 61 | 63 | 'show' => 'ShowReports', |
@@ -70,11 +72,11 @@ discard block |
||
| 70 | 72 | call_integration_hook('integrate_reported_' . $context['report_type'], array(&$subActions)); |
| 71 | 73 | |
| 72 | 74 | // By default we call the open sub-action. |
| 73 | - if (isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']])) |
|
| 74 | - $context['sub_action'] = $smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_REQUEST['sa']), ENT_QUOTES); |
|
| 75 | - |
|
| 76 | - else |
|
| 77 | - $context['sub_action'] = 'show'; |
|
| 75 | + if (isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']])) { |
|
| 76 | + $context['sub_action'] = $smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_REQUEST['sa']), ENT_QUOTES); |
|
| 77 | + } else { |
|
| 78 | + $context['sub_action'] = 'show'; |
|
| 79 | + } |
|
| 78 | 80 | |
| 79 | 81 | // Hi Ho Silver Away! |
| 80 | 82 | call_helper($subActions[$context['sub_action']]); |
@@ -116,11 +118,13 @@ discard block |
||
| 116 | 118 | |
| 117 | 119 | // All the ones to update... |
| 118 | 120 | $toClose = array(); |
| 119 | - foreach ($_POST['close'] as $rid) |
|
| 120 | - $toClose[] = (int) $rid; |
|
| 121 | + foreach ($_POST['close'] as $rid) { |
|
| 122 | + $toClose[] = (int) $rid; |
|
| 123 | + } |
|
| 121 | 124 | |
| 122 | - if (!empty($toClose)) |
|
| 123 | - updateReport('closed', 1, $toClose); |
|
| 125 | + if (!empty($toClose)) { |
|
| 126 | + updateReport('closed', 1, $toClose); |
|
| 127 | + } |
|
| 124 | 128 | |
| 125 | 129 | // Set the confirmation message. |
| 126 | 130 | $_SESSION['rc_confirmation'] = 'close_all'; |
@@ -175,8 +179,9 @@ discard block |
||
| 175 | 179 | global $context, $sourcedir, $scripturl, $txt; |
| 176 | 180 | |
| 177 | 181 | // Have to at least give us something to work with. |
| 178 | - if (empty($_REQUEST['rid'])) |
|
| 179 | - fatal_lang_error('mc_reportedp_none_found'); |
|
| 182 | + if (empty($_REQUEST['rid'])) { |
|
| 183 | + fatal_lang_error('mc_reportedp_none_found'); |
|
| 184 | + } |
|
| 180 | 185 | |
| 181 | 186 | // Integers only please |
| 182 | 187 | $report_id = (int) $_REQUEST['rid']; |
@@ -184,8 +189,9 @@ discard block |
||
| 184 | 189 | // Get the report details. |
| 185 | 190 | $report = getReportDetails($report_id); |
| 186 | 191 | |
| 187 | - if (!$report) |
|
| 188 | - fatal_lang_error('mc_no_modreport_found'); |
|
| 192 | + if (!$report) { |
|
| 193 | + fatal_lang_error('mc_no_modreport_found'); |
|
| 194 | + } |
|
| 189 | 195 | |
| 190 | 196 | // Build the report data - basic details first, then extra stuff based on the type |
| 191 | 197 | $context['report'] = array( |
@@ -211,8 +217,7 @@ discard block |
||
| 211 | 217 | 'href' => $scripturl . '?action=profile;u=' . $report['id_user'], |
| 212 | 218 | ), |
| 213 | 219 | ); |
| 214 | - } |
|
| 215 | - else |
|
| 220 | + } else |
|
| 216 | 221 | { |
| 217 | 222 | $extraDetails = array( |
| 218 | 223 | 'topic_id' => $report['id_topic'], |
@@ -235,8 +240,9 @@ discard block |
||
| 235 | 240 | |
| 236 | 241 | $reportComments = getReportComments($report_id); |
| 237 | 242 | |
| 238 | - if (!empty($reportComments)) |
|
| 239 | - $context['report'] = array_merge($context['report'], $reportComments); |
|
| 243 | + if (!empty($reportComments)) { |
|
| 244 | + $context['report'] = array_merge($context['report'], $reportComments); |
|
| 245 | + } |
|
| 240 | 246 | |
| 241 | 247 | // What have the other moderators done to this message? |
| 242 | 248 | require_once($sourcedir . '/Modlog.php'); |
@@ -257,8 +263,7 @@ discard block |
||
| 257 | 263 | 1, |
| 258 | 264 | true, |
| 259 | 265 | ); |
| 260 | - } |
|
| 261 | - else |
|
| 266 | + } else |
|
| 262 | 267 | { |
| 263 | 268 | $params = array( |
| 264 | 269 | 'lm.id_topic = {int:id_topic} |
@@ -358,16 +363,16 @@ discard block |
||
| 358 | 363 | createList($listOptions); |
| 359 | 364 | |
| 360 | 365 | // Make sure to get the correct tab selected. |
| 361 | - if ($context['report']['closed']) |
|
| 362 | - $context[$context['moderation_menu_name']]['current_subsection'] = 'closed'; |
|
| 366 | + if ($context['report']['closed']) { |
|
| 367 | + $context[$context['moderation_menu_name']]['current_subsection'] = 'closed'; |
|
| 368 | + } |
|
| 363 | 369 | |
| 364 | 370 | // Finally we are done :P |
| 365 | 371 | if ($context['report_type'] == 'members') |
| 366 | 372 | { |
| 367 | 373 | $context['page_title'] = sprintf($txt['mc_viewmemberreport'], $context['report']['user']['name']); |
| 368 | 374 | $context['sub_template'] = 'viewmemberreport'; |
| 369 | - } |
|
| 370 | - else |
|
| 375 | + } else |
|
| 371 | 376 | { |
| 372 | 377 | $context['page_title'] = sprintf($txt['mc_viewmodreport'], $context['report']['subject'], $context['report']['author']['name']); |
| 373 | 378 | $context['sub_template'] = 'viewmodreport'; |
@@ -390,8 +395,9 @@ discard block |
||
| 390 | 395 | global $smcFunc, $scripturl, $user_info, $context; |
| 391 | 396 | |
| 392 | 397 | // The report ID is a must. |
| 393 | - if (empty($_REQUEST['rid'])) |
|
| 394 | - fatal_lang_error('mc_reportedp_none_found'); |
|
| 398 | + if (empty($_REQUEST['rid'])) { |
|
| 399 | + fatal_lang_error('mc_reportedp_none_found'); |
|
| 400 | + } |
|
| 395 | 401 | |
| 396 | 402 | // Integers only please. |
| 397 | 403 | $report_id = (int) $_REQUEST['rid']; |
@@ -416,8 +422,9 @@ discard block |
||
| 416 | 422 | checkSession('get'); |
| 417 | 423 | validateToken('mod-reportC-delete', 'get'); |
| 418 | 424 | |
| 419 | - if (empty($_REQUEST['mid'])) |
|
| 420 | - fatal_lang_error('mc_reportedp_comment_none_found'); |
|
| 425 | + if (empty($_REQUEST['mid'])) { |
|
| 426 | + fatal_lang_error('mc_reportedp_comment_none_found'); |
|
| 427 | + } |
|
| 421 | 428 | |
| 422 | 429 | $comment_id = (int) $_REQUEST['mid']; |
| 423 | 430 | |
@@ -425,15 +432,17 @@ discard block |
||
| 425 | 432 | $comment = getCommentModDetails($comment_id); |
| 426 | 433 | |
| 427 | 434 | // Perhaps somebody else already deleted this fine gem... |
| 428 | - if (empty($comment)) |
|
| 429 | - fatal_lang_error('report_action_message_delete_issue'); |
|
| 435 | + if (empty($comment)) { |
|
| 436 | + fatal_lang_error('report_action_message_delete_issue'); |
|
| 437 | + } |
|
| 430 | 438 | |
| 431 | 439 | // Can you actually do this? |
| 432 | 440 | $comment_owner = $user_info['id'] == $comment['id_member']; |
| 433 | 441 | |
| 434 | 442 | // Nope! sorry. |
| 435 | - if (!allowedTo('admin_forum') && !$comment_owner) |
|
| 436 | - fatal_lang_error('report_action_message_delete_cannot'); |
|
| 443 | + if (!allowedTo('admin_forum') && !$comment_owner) { |
|
| 444 | + fatal_lang_error('report_action_message_delete_cannot'); |
|
| 445 | + } |
|
| 437 | 446 | |
| 438 | 447 | // All good! |
| 439 | 448 | deleteModComment($comment_id); |
@@ -458,11 +467,13 @@ discard block |
||
| 458 | 467 | checkSession(isset($_REQUEST['save']) ? 'post' : 'get'); |
| 459 | 468 | |
| 460 | 469 | // The report ID is a must. |
| 461 | - if (empty($_REQUEST['rid'])) |
|
| 462 | - fatal_lang_error('mc_reportedp_none_found'); |
|
| 470 | + if (empty($_REQUEST['rid'])) { |
|
| 471 | + fatal_lang_error('mc_reportedp_none_found'); |
|
| 472 | + } |
|
| 463 | 473 | |
| 464 | - if (empty($_REQUEST['mid'])) |
|
| 465 | - fatal_lang_error('mc_reportedp_comment_none_found'); |
|
| 474 | + if (empty($_REQUEST['mid'])) { |
|
| 475 | + fatal_lang_error('mc_reportedp_comment_none_found'); |
|
| 476 | + } |
|
| 466 | 477 | |
| 467 | 478 | // Integers only please. |
| 468 | 479 | $context['report_id'] = (int) $_REQUEST['rid']; |
@@ -470,8 +481,9 @@ discard block |
||
| 470 | 481 | |
| 471 | 482 | $context['comment'] = getCommentModDetails($context['comment_id']); |
| 472 | 483 | |
| 473 | - if (empty($context['comment'])) |
|
| 474 | - fatal_lang_error('mc_reportedp_comment_none_found'); |
|
| 484 | + if (empty($context['comment'])) { |
|
| 485 | + fatal_lang_error('mc_reportedp_comment_none_found'); |
|
| 486 | + } |
|
| 475 | 487 | |
| 476 | 488 | // Set up the comforting bits... |
| 477 | 489 | $context['page_title'] = $txt['mc_reported_posts']; |
@@ -482,15 +494,17 @@ discard block |
||
| 482 | 494 | validateToken('mod-reportC-edit'); |
| 483 | 495 | |
| 484 | 496 | // Make sure there is some data to edit on the DB. |
| 485 | - if (empty($context['comment'])) |
|
| 486 | - fatal_lang_error('report_action_message_edit_issue'); |
|
| 497 | + if (empty($context['comment'])) { |
|
| 498 | + fatal_lang_error('report_action_message_edit_issue'); |
|
| 499 | + } |
|
| 487 | 500 | |
| 488 | 501 | // Still there, good, now lets see if you can actually edit it... |
| 489 | 502 | $comment_owner = $user_info['id'] == $context['comment']['id_member']; |
| 490 | 503 | |
| 491 | 504 | // So, you aren't neither an admin or the comment owner huh? that's too bad. |
| 492 | - if (!allowedTo('admin_forum') && !$comment_owner) |
|
| 493 | - fatal_lang_error('report_action_message_edit_cannot'); |
|
| 505 | + if (!allowedTo('admin_forum') && !$comment_owner) { |
|
| 506 | + fatal_lang_error('report_action_message_edit_cannot'); |
|
| 507 | + } |
|
| 494 | 508 | |
| 495 | 509 | // All good! |
| 496 | 510 | $edited_comment = trim($smcFunc['htmlspecialchars']($_POST['mod_comment'])); |
@@ -516,8 +530,9 @@ discard block |
||
| 516 | 530 | checkSession('get'); |
| 517 | 531 | |
| 518 | 532 | // We need to do something! |
| 519 | - if (empty($_GET['rid']) && (!isset($_GET['ignore']) || !isset($_GET['closed']))) |
|
| 520 | - fatal_lang_error('mc_reportedp_none_found'); |
|
| 533 | + if (empty($_GET['rid']) && (!isset($_GET['ignore']) || !isset($_GET['closed']))) { |
|
| 534 | + fatal_lang_error('mc_reportedp_none_found'); |
|
| 535 | + } |
|
| 521 | 536 | |
| 522 | 537 | // What are we gonna do? |
| 523 | 538 | $action = isset($_GET['ignore']) ? 'ignore' : 'closed'; |
@@ -14,8 +14,9 @@ discard block |
||
| 14 | 14 | * @version 2.1 Beta 4 |
| 15 | 15 | */ |
| 16 | 16 | |
| 17 | -if (!defined('SMF')) |
|
| 17 | +if (!defined('SMF')) { |
|
| 18 | 18 | die('No direct access...'); |
| 19 | +} |
|
| 19 | 20 | |
| 20 | 21 | /** |
| 21 | 22 | * Locks a topic... either by way of a moderator or the topic starter. |
@@ -32,8 +33,9 @@ discard block |
||
| 32 | 33 | global $topic, $user_info, $sourcedir, $board, $smcFunc; |
| 33 | 34 | |
| 34 | 35 | // Just quit if there's no topic to lock. |
| 35 | - if (empty($topic)) |
|
| 36 | - fatal_lang_error('not_a_topic', false); |
|
| 36 | + if (empty($topic)) { |
|
| 37 | + fatal_lang_error('not_a_topic', false); |
|
| 38 | + } |
|
| 37 | 39 | |
| 38 | 40 | checkSession('get'); |
| 39 | 41 | |
@@ -55,23 +57,28 @@ discard block |
||
| 55 | 57 | |
| 56 | 58 | // Can you lock topics here, mister? |
| 57 | 59 | $user_lock = !allowedTo('lock_any'); |
| 58 | - if ($user_lock && $starter == $user_info['id']) |
|
| 59 | - isAllowedTo('lock_own'); |
|
| 60 | - else |
|
| 61 | - isAllowedTo('lock_any'); |
|
| 60 | + if ($user_lock && $starter == $user_info['id']) { |
|
| 61 | + isAllowedTo('lock_own'); |
|
| 62 | + } else { |
|
| 63 | + isAllowedTo('lock_any'); |
|
| 64 | + } |
|
| 62 | 65 | |
| 63 | 66 | // Locking with high privileges. |
| 64 | - if ($locked == '0' && !$user_lock) |
|
| 65 | - $locked = '1'; |
|
| 67 | + if ($locked == '0' && !$user_lock) { |
|
| 68 | + $locked = '1'; |
|
| 69 | + } |
|
| 66 | 70 | // Locking with low privileges. |
| 67 | - elseif ($locked == '0') |
|
| 68 | - $locked = '2'; |
|
| 71 | + elseif ($locked == '0') { |
|
| 72 | + $locked = '2'; |
|
| 73 | + } |
|
| 69 | 74 | // Unlocking - make sure you don't unlock what you can't. |
| 70 | - elseif ($locked == '2' || ($locked == '1' && !$user_lock)) |
|
| 71 | - $locked = '0'; |
|
| 75 | + elseif ($locked == '2' || ($locked == '1' && !$user_lock)) { |
|
| 76 | + $locked = '0'; |
|
| 77 | + } |
|
| 72 | 78 | // You cannot unlock this! |
| 73 | - else |
|
| 74 | - fatal_lang_error('locked_by_admin', 'user'); |
|
| 79 | + else { |
|
| 80 | + fatal_lang_error('locked_by_admin', 'user'); |
|
| 81 | + } |
|
| 75 | 82 | |
| 76 | 83 | // Actually lock the topic in the database with the new value. |
| 77 | 84 | $smcFunc['db_query']('', ' |
@@ -85,8 +92,9 @@ discard block |
||
| 85 | 92 | ); |
| 86 | 93 | |
| 87 | 94 | // If they are allowed a "moderator" permission, log it in the moderator log. |
| 88 | - if (!$user_lock) |
|
| 89 | - logAction($locked ? 'lock' : 'unlock', array('topic' => $topic, 'board' => $board)); |
|
| 95 | + if (!$user_lock) { |
|
| 96 | + logAction($locked ? 'lock' : 'unlock', array('topic' => $topic, 'board' => $board)); |
|
| 97 | + } |
|
| 90 | 98 | // Notify people that this topic has been locked? |
| 91 | 99 | sendNotifications($topic, empty($locked) ? 'unlock' : 'lock'); |
| 92 | 100 | |
@@ -112,8 +120,9 @@ discard block |
||
| 112 | 120 | isAllowedTo('make_sticky'); |
| 113 | 121 | |
| 114 | 122 | // You can't sticky a board or something! |
| 115 | - if (empty($topic)) |
|
| 116 | - fatal_lang_error('not_a_topic', false); |
|
| 123 | + if (empty($topic)) { |
|
| 124 | + fatal_lang_error('not_a_topic', false); |
|
| 125 | + } |
|
| 117 | 126 | |
| 118 | 127 | checkSession('get'); |
| 119 | 128 | |
@@ -147,8 +156,9 @@ discard block |
||
| 147 | 156 | // Log this sticky action - always a moderator thing. |
| 148 | 157 | logAction(empty($is_sticky) ? 'sticky' : 'unsticky', array('topic' => $topic, 'board' => $board)); |
| 149 | 158 | // Notify people that this topic has been stickied? |
| 150 | - if (empty($is_sticky)) |
|
| 151 | - sendNotifications($topic, 'sticky'); |
|
| 159 | + if (empty($is_sticky)) { |
|
| 160 | + sendNotifications($topic, 'sticky'); |
|
| 161 | + } |
|
| 152 | 162 | |
| 153 | 163 | // Take them back to the now stickied topic. |
| 154 | 164 | redirectexit('topic=' . $topic . '.' . $_REQUEST['start'] . ';moderate'); |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 4 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * Main entry point for the admin search settings screen. |
@@ -107,11 +108,13 @@ discard block |
||
| 107 | 108 | // Perhaps the search method wants to add some settings? |
| 108 | 109 | require_once($sourcedir . '/Search.php'); |
| 109 | 110 | $searchAPI = findSearchAPI(); |
| 110 | - if (is_callable(array($searchAPI, 'searchSettings'))) |
|
| 111 | - call_user_func_array(array($searchAPI, 'searchSettings'), array(&$config_vars)); |
|
| 111 | + if (is_callable(array($searchAPI, 'searchSettings'))) { |
|
| 112 | + call_user_func_array(array($searchAPI, 'searchSettings'), array(&$config_vars)); |
|
| 113 | + } |
|
| 112 | 114 | |
| 113 | - if ($return_config) |
|
| 114 | - return $config_vars; |
|
| 115 | + if ($return_config) { |
|
| 116 | + return $config_vars; |
|
| 117 | + } |
|
| 115 | 118 | |
| 116 | 119 | $context['page_title'] = $txt['search_settings_title']; |
| 117 | 120 | $context['sub_template'] = 'show_settings'; |
@@ -126,8 +129,9 @@ discard block |
||
| 126 | 129 | |
| 127 | 130 | call_integration_hook('integrate_save_search_settings'); |
| 128 | 131 | |
| 129 | - if (empty($_POST['search_results_per_page'])) |
|
| 130 | - $_POST['search_results_per_page'] = !empty($modSettings['search_results_per_page']) ? $modSettings['search_results_per_page'] : $modSettings['defaultMaxMessages']; |
|
| 132 | + if (empty($_POST['search_results_per_page'])) { |
|
| 133 | + $_POST['search_results_per_page'] = !empty($modSettings['search_results_per_page']) ? $modSettings['search_results_per_page'] : $modSettings['defaultMaxMessages']; |
|
| 134 | + } |
|
| 131 | 135 | saveDBSettings($config_vars); |
| 132 | 136 | $_SESSION['adm-save'] = true; |
| 133 | 137 | redirectexit('action=admin;area=managesearch;sa=settings;' . $context['session_var'] . '=' . $context['session_id']); |
@@ -177,17 +181,20 @@ discard block |
||
| 177 | 181 | call_integration_hook('integrate_save_search_weights'); |
| 178 | 182 | |
| 179 | 183 | $changes = array(); |
| 180 | - foreach ($factors as $factor) |
|
| 181 | - $changes[$factor] = (int) $_POST[$factor]; |
|
| 184 | + foreach ($factors as $factor) { |
|
| 185 | + $changes[$factor] = (int) $_POST[$factor]; |
|
| 186 | + } |
|
| 182 | 187 | updateSettings($changes); |
| 183 | 188 | } |
| 184 | 189 | |
| 185 | 190 | $context['relative_weights'] = array('total' => 0); |
| 186 | - foreach ($factors as $factor) |
|
| 187 | - $context['relative_weights']['total'] += isset($modSettings[$factor]) ? $modSettings[$factor] : 0; |
|
| 191 | + foreach ($factors as $factor) { |
|
| 192 | + $context['relative_weights']['total'] += isset($modSettings[$factor]) ? $modSettings[$factor] : 0; |
|
| 193 | + } |
|
| 188 | 194 | |
| 189 | - foreach ($factors as $factor) |
|
| 190 | - $context['relative_weights'][$factor] = round(100 * (isset($modSettings[$factor]) ? $modSettings[$factor] : 0) / $context['relative_weights']['total'], 1); |
|
| 195 | + foreach ($factors as $factor) { |
|
| 196 | + $context['relative_weights'][$factor] = round(100 * (isset($modSettings[$factor]) ? $modSettings[$factor] : 0) / $context['relative_weights']['total'], 1); |
|
| 197 | + } |
|
| 191 | 198 | |
| 192 | 199 | createToken('admin-msw'); |
| 193 | 200 | } |
@@ -215,8 +222,9 @@ discard block |
||
| 215 | 222 | $context['search_apis'] = loadSearchAPIs(); |
| 216 | 223 | |
| 217 | 224 | // Detect whether a fulltext index is set. |
| 218 | - if ($context['supports_fulltext']) |
|
| 219 | - detectFulltextIndex(); |
|
| 225 | + if ($context['supports_fulltext']) { |
|
| 226 | + detectFulltextIndex(); |
|
| 227 | + } |
|
| 220 | 228 | |
| 221 | 229 | if (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'createfulltext') |
| 222 | 230 | { |
@@ -240,8 +248,7 @@ discard block |
||
| 240 | 248 | 'language' => $language_ftx |
| 241 | 249 | ) |
| 242 | 250 | ); |
| 243 | - } |
|
| 244 | - else |
|
| 251 | + } else |
|
| 245 | 252 | { |
| 246 | 253 | // Make sure it's gone before creating it. |
| 247 | 254 | $smcFunc['db_query']('', ' |
@@ -261,8 +268,7 @@ discard block |
||
| 261 | 268 | } |
| 262 | 269 | |
| 263 | 270 | $context['fulltext_index'] = 'body'; |
| 264 | - } |
|
| 265 | - elseif (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'removefulltext' && !empty($context['fulltext_index'])) |
|
| 271 | + } elseif (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'removefulltext' && !empty($context['fulltext_index'])) |
|
| 266 | 272 | { |
| 267 | 273 | checkSession('get'); |
| 268 | 274 | validateToken('admin-msm', 'get'); |
@@ -279,12 +285,12 @@ discard block |
||
| 279 | 285 | $context['fulltext_index'] = ''; |
| 280 | 286 | |
| 281 | 287 | // Go back to the default search method. |
| 282 | - if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'fulltext') |
|
| 283 | - updateSettings(array( |
|
| 288 | + if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'fulltext') { |
|
| 289 | + updateSettings(array( |
|
| 284 | 290 | 'search_index' => '', |
| 285 | 291 | )); |
| 286 | - } |
|
| 287 | - elseif (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'removecustom') |
|
| 292 | + } |
|
| 293 | + } elseif (!empty($_REQUEST['sa']) && $_REQUEST['sa'] == 'removecustom') |
|
| 288 | 294 | { |
| 289 | 295 | checkSession('get'); |
| 290 | 296 | validateToken('admin-msm', 'get'); |
@@ -306,12 +312,12 @@ discard block |
||
| 306 | 312 | )); |
| 307 | 313 | |
| 308 | 314 | // Go back to the default search method. |
| 309 | - if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'custom') |
|
| 310 | - updateSettings(array( |
|
| 315 | + if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'custom') { |
|
| 316 | + updateSettings(array( |
|
| 311 | 317 | 'search_index' => '', |
| 312 | 318 | )); |
| 313 | - } |
|
| 314 | - elseif (isset($_POST['save'])) |
|
| 319 | + } |
|
| 320 | + } elseif (isset($_POST['save'])) |
|
| 315 | 321 | { |
| 316 | 322 | checkSession(); |
| 317 | 323 | validateToken('admin-msmpost'); |
@@ -333,8 +339,8 @@ discard block |
||
| 333 | 339 | // Get some info about the messages table, to show its size and index size. |
| 334 | 340 | if ($db_type == 'mysql') |
| 335 | 341 | { |
| 336 | - if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0) |
|
| 337 | - $request = $smcFunc['db_query']('', ' |
|
| 342 | + if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0) { |
|
| 343 | + $request = $smcFunc['db_query']('', ' |
|
| 338 | 344 | SHOW TABLE STATUS |
| 339 | 345 | FROM {string:database_name} |
| 340 | 346 | LIKE {string:table_name}', |
@@ -343,14 +349,15 @@ discard block |
||
| 343 | 349 | 'table_name' => str_replace('_', '\_', $match[2]) . 'messages', |
| 344 | 350 | ) |
| 345 | 351 | ); |
| 346 | - else |
|
| 347 | - $request = $smcFunc['db_query']('', ' |
|
| 352 | + } else { |
|
| 353 | + $request = $smcFunc['db_query']('', ' |
|
| 348 | 354 | SHOW TABLE STATUS |
| 349 | 355 | LIKE {string:table_name}', |
| 350 | 356 | array( |
| 351 | 357 | 'table_name' => str_replace('_', '\_', $db_prefix) . 'messages', |
| 352 | 358 | ) |
| 353 | 359 | ); |
| 360 | + } |
|
| 354 | 361 | if ($request !== false && $smcFunc['db_num_rows']($request) == 1) |
| 355 | 362 | { |
| 356 | 363 | // Only do this if the user has permission to execute this query. |
@@ -362,8 +369,8 @@ discard block |
||
| 362 | 369 | } |
| 363 | 370 | |
| 364 | 371 | // Now check the custom index table, if it exists at all. |
| 365 | - if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0) |
|
| 366 | - $request = $smcFunc['db_query']('', ' |
|
| 372 | + if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0) { |
|
| 373 | + $request = $smcFunc['db_query']('', ' |
|
| 367 | 374 | SHOW TABLE STATUS |
| 368 | 375 | FROM {string:database_name} |
| 369 | 376 | LIKE {string:table_name}', |
@@ -372,14 +379,15 @@ discard block |
||
| 372 | 379 | 'table_name' => str_replace('_', '\_', $match[2]) . 'log_search_words', |
| 373 | 380 | ) |
| 374 | 381 | ); |
| 375 | - else |
|
| 376 | - $request = $smcFunc['db_query']('', ' |
|
| 382 | + } else { |
|
| 383 | + $request = $smcFunc['db_query']('', ' |
|
| 377 | 384 | SHOW TABLE STATUS |
| 378 | 385 | LIKE {string:table_name}', |
| 379 | 386 | array( |
| 380 | 387 | 'table_name' => str_replace('_', '\_', $db_prefix) . 'log_search_words', |
| 381 | 388 | ) |
| 382 | 389 | ); |
| 390 | + } |
|
| 383 | 391 | if ($request !== false && $smcFunc['db_num_rows']($request) == 1) |
| 384 | 392 | { |
| 385 | 393 | // Only do this if the user has permission to execute this query. |
@@ -388,8 +396,7 @@ discard block |
||
| 388 | 396 | $context['table_info']['custom_index_length'] = $row['Data_length'] + $row['Index_length']; |
| 389 | 397 | $smcFunc['db_free_result']($request); |
| 390 | 398 | } |
| 391 | - } |
|
| 392 | - elseif ($db_type == 'postgresql') |
|
| 399 | + } elseif ($db_type == 'postgresql') |
|
| 393 | 400 | { |
| 394 | 401 | // In order to report the sizes correctly we need to perform vacuum (optimize) on the tables we will be using. |
| 395 | 402 | //db_extend(); |
@@ -431,38 +438,38 @@ discard block |
||
| 431 | 438 | $context['table_info']['data_length'] = (int) $row['table_size']; |
| 432 | 439 | $context['table_info']['index_length'] = (int) $row['index_size']; |
| 433 | 440 | $context['table_info']['fulltext_length'] = (int) $row['index_size']; |
| 434 | - } |
|
| 435 | - elseif ($row['indexname'] == $db_prefix . 'log_search_words') |
|
| 441 | + } elseif ($row['indexname'] == $db_prefix . 'log_search_words') |
|
| 436 | 442 | { |
| 437 | 443 | $context['table_info']['index_length'] = (int) $row['index_size']; |
| 438 | 444 | $context['table_info']['custom_index_length'] = (int) $row['index_size']; |
| 439 | 445 | } |
| 440 | 446 | } |
| 441 | 447 | $smcFunc['db_free_result']($request); |
| 442 | - } |
|
| 443 | - else |
|
| 444 | - // Didn't work for some reason... |
|
| 448 | + } else { |
|
| 449 | + // Didn't work for some reason... |
|
| 445 | 450 | $context['table_info'] = array( |
| 446 | 451 | 'data_length' => $txt['not_applicable'], |
| 447 | 452 | 'index_length' => $txt['not_applicable'], |
| 448 | 453 | 'fulltext_length' => $txt['not_applicable'], |
| 449 | 454 | 'custom_index_length' => $txt['not_applicable'], |
| 450 | 455 | ); |
| 451 | - } |
|
| 452 | - else |
|
| 453 | - $context['table_info'] = array( |
|
| 456 | + } |
|
| 457 | + } else { |
|
| 458 | + $context['table_info'] = array( |
|
| 454 | 459 | 'data_length' => $txt['not_applicable'], |
| 455 | 460 | 'index_length' => $txt['not_applicable'], |
| 456 | 461 | 'fulltext_length' => $txt['not_applicable'], |
| 457 | 462 | 'custom_index_length' => $txt['not_applicable'], |
| 458 | 463 | ); |
| 464 | + } |
|
| 459 | 465 | |
| 460 | 466 | // Format the data and index length in kilobytes. |
| 461 | 467 | foreach ($context['table_info'] as $type => $size) |
| 462 | 468 | { |
| 463 | 469 | // If it's not numeric then just break. This database engine doesn't support size. |
| 464 | - if (!is_numeric($size)) |
|
| 465 | - break; |
|
| 470 | + if (!is_numeric($size)) { |
|
| 471 | + break; |
|
| 472 | + } |
|
| 466 | 473 | |
| 467 | 474 | $context['table_info'][$type] = comma_format($context['table_info'][$type] / 1024) . ' ' . $txt['search_method_kilobytes']; |
| 468 | 475 | } |
@@ -491,8 +498,9 @@ discard block |
||
| 491 | 498 | |
| 492 | 499 | // Scotty, we need more time... |
| 493 | 500 | @set_time_limit(600); |
| 494 | - if (function_exists('apache_reset_timeout')) |
|
| 495 | - @apache_reset_timeout(); |
|
| 501 | + if (function_exists('apache_reset_timeout')) { |
|
| 502 | + @apache_reset_timeout(); |
|
| 503 | + } |
|
| 496 | 504 | |
| 497 | 505 | $context[$context['admin_menu_name']]['current_subsection'] = 'method'; |
| 498 | 506 | $context['page_title'] = $txt['search_index_custom']; |
@@ -522,8 +530,7 @@ discard block |
||
| 522 | 530 | $context['start'] = (int) $context['index_settings']['resume_at']; |
| 523 | 531 | unset($context['index_settings']['resume_at']); |
| 524 | 532 | $context['step'] = 1; |
| 525 | - } |
|
| 526 | - else |
|
| 533 | + } else |
|
| 527 | 534 | { |
| 528 | 535 | $context['index_settings'] = array( |
| 529 | 536 | 'bytes_per_word' => isset($_REQUEST['bytes_per_word']) && isset($index_properties[$_REQUEST['bytes_per_word']]) ? (int) $_REQUEST['bytes_per_word'] : 2, |
@@ -532,12 +539,14 @@ discard block |
||
| 532 | 539 | $context['step'] = isset($_REQUEST['step']) ? (int) $_REQUEST['step'] : 0; |
| 533 | 540 | |
| 534 | 541 | // admin timeouts are painful when building these long indexes - but only if we actually have such things enabled |
| 535 | - if (empty($modSettings['securityDisable']) && $_SESSION['admin_time'] + 3300 < time() && $context['step'] >= 1) |
|
| 536 | - $_SESSION['admin_time'] = time(); |
|
| 542 | + if (empty($modSettings['securityDisable']) && $_SESSION['admin_time'] + 3300 < time() && $context['step'] >= 1) { |
|
| 543 | + $_SESSION['admin_time'] = time(); |
|
| 544 | + } |
|
| 537 | 545 | } |
| 538 | 546 | |
| 539 | - if ($context['step'] !== 0) |
|
| 540 | - checkSession('request'); |
|
| 547 | + if ($context['step'] !== 0) { |
|
| 548 | + checkSession('request'); |
|
| 549 | + } |
|
| 541 | 550 | |
| 542 | 551 | // Step 0: let the user determine how they like their index. |
| 543 | 552 | if ($context['step'] === 0) |
@@ -566,12 +575,14 @@ discard block |
||
| 566 | 575 | $smcFunc['db_create_word_search']($index_properties[$context['index_settings']['bytes_per_word']]['column_definition']); |
| 567 | 576 | |
| 568 | 577 | // Temporarily switch back to not using a search index. |
| 569 | - if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'custom') |
|
| 570 | - updateSettings(array('search_index' => '')); |
|
| 578 | + if (!empty($modSettings['search_index']) && $modSettings['search_index'] == 'custom') { |
|
| 579 | + updateSettings(array('search_index' => '')); |
|
| 580 | + } |
|
| 571 | 581 | |
| 572 | 582 | // Don't let simultanious processes be updating the search index. |
| 573 | - if (!empty($modSettings['search_custom_index_config'])) |
|
| 574 | - updateSettings(array('search_custom_index_config' => '')); |
|
| 583 | + if (!empty($modSettings['search_custom_index_config'])) { |
|
| 584 | + updateSettings(array('search_custom_index_config' => '')); |
|
| 585 | + } |
|
| 575 | 586 | } |
| 576 | 587 | |
| 577 | 588 | $num_messages = array( |
@@ -587,16 +598,16 @@ discard block |
||
| 587 | 598 | 'starting_id' => $context['start'], |
| 588 | 599 | ) |
| 589 | 600 | ); |
| 590 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 591 | - $num_messages[empty($row['todo']) ? 'done' : 'todo'] = $row['num_messages']; |
|
| 601 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 602 | + $num_messages[empty($row['todo']) ? 'done' : 'todo'] = $row['num_messages']; |
|
| 603 | + } |
|
| 592 | 604 | |
| 593 | 605 | if (empty($num_messages['todo'])) |
| 594 | 606 | { |
| 595 | 607 | $context['step'] = 2; |
| 596 | 608 | $context['percentage'] = 80; |
| 597 | 609 | $context['start'] = 0; |
| 598 | - } |
|
| 599 | - else |
|
| 610 | + } else |
|
| 600 | 611 | { |
| 601 | 612 | // Number of seconds before the next step. |
| 602 | 613 | $stop = time() + 3; |
@@ -637,21 +648,22 @@ discard block |
||
| 637 | 648 | |
| 638 | 649 | $context['start'] += $forced_break ? $number_processed : $messages_per_batch; |
| 639 | 650 | |
| 640 | - if (!empty($inserts)) |
|
| 641 | - $smcFunc['db_insert']('ignore', |
|
| 651 | + if (!empty($inserts)) { |
|
| 652 | + $smcFunc['db_insert']('ignore', |
|
| 642 | 653 | '{db_prefix}log_search_words', |
| 643 | 654 | array('id_word' => 'int', 'id_msg' => 'int'), |
| 644 | 655 | $inserts, |
| 645 | 656 | array('id_word', 'id_msg') |
| 646 | 657 | ); |
| 658 | + } |
|
| 647 | 659 | if ($num_messages['todo'] === 0) |
| 648 | 660 | { |
| 649 | 661 | $context['step'] = 2; |
| 650 | 662 | $context['start'] = 0; |
| 651 | 663 | break; |
| 664 | + } else { |
|
| 665 | + updateSettings(array('search_custom_index_resume' => json_encode(array_merge($context['index_settings'], array('resume_at' => $context['start']))))); |
|
| 652 | 666 | } |
| 653 | - else |
|
| 654 | - updateSettings(array('search_custom_index_resume' => json_encode(array_merge($context['index_settings'], array('resume_at' => $context['start']))))); |
|
| 655 | 667 | } |
| 656 | 668 | |
| 657 | 669 | // Since there are still two steps to go, 80% is the maximum here. |
@@ -662,9 +674,9 @@ discard block |
||
| 662 | 674 | // Step 2: removing the words that occur too often and are of no use. |
| 663 | 675 | elseif ($context['step'] === 2) |
| 664 | 676 | { |
| 665 | - if ($context['index_settings']['bytes_per_word'] < 4) |
|
| 666 | - $context['step'] = 3; |
|
| 667 | - else |
|
| 677 | + if ($context['index_settings']['bytes_per_word'] < 4) { |
|
| 678 | + $context['step'] = 3; |
|
| 679 | + } else |
|
| 668 | 680 | { |
| 669 | 681 | $stop_words = $context['start'] === 0 || empty($modSettings['search_stopwords']) ? array() : explode(',', $modSettings['search_stopwords']); |
| 670 | 682 | $stop = time() + 3; |
@@ -685,20 +697,22 @@ discard block |
||
| 685 | 697 | 'minimum_messages' => $max_messages, |
| 686 | 698 | ) |
| 687 | 699 | ); |
| 688 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 689 | - $stop_words[] = $row['id_word']; |
|
| 700 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 701 | + $stop_words[] = $row['id_word']; |
|
| 702 | + } |
|
| 690 | 703 | $smcFunc['db_free_result']($request); |
| 691 | 704 | |
| 692 | 705 | updateSettings(array('search_stopwords' => implode(',', $stop_words))); |
| 693 | 706 | |
| 694 | - if (!empty($stop_words)) |
|
| 695 | - $smcFunc['db_query']('', ' |
|
| 707 | + if (!empty($stop_words)) { |
|
| 708 | + $smcFunc['db_query']('', ' |
|
| 696 | 709 | DELETE FROM {db_prefix}log_search_words |
| 697 | 710 | WHERE id_word in ({array_int:stop_words})', |
| 698 | 711 | array( |
| 699 | 712 | 'stop_words' => $stop_words, |
| 700 | 713 | ) |
| 701 | 714 | ); |
| 715 | + } |
|
| 702 | 716 | |
| 703 | 717 | $context['start'] += $index_properties[$context['index_settings']['bytes_per_word']]['step_size']; |
| 704 | 718 | if ($context['start'] > $index_properties[$context['index_settings']['bytes_per_word']]['max_size']) |
@@ -759,8 +773,9 @@ discard block |
||
| 759 | 773 | $searchAPI = new $search_class_name(); |
| 760 | 774 | |
| 761 | 775 | // No Support? NEXT! |
| 762 | - if (!$searchAPI->is_supported) |
|
| 763 | - continue; |
|
| 776 | + if (!$searchAPI->is_supported) { |
|
| 777 | + continue; |
|
| 778 | + } |
|
| 764 | 779 | |
| 765 | 780 | $apis[$index_name] = array( |
| 766 | 781 | 'filename' => $file, |
@@ -807,10 +822,10 @@ discard block |
||
| 807 | 822 | 'messages_ftx' => $db_prefix . 'messages_ftx', |
| 808 | 823 | ) |
| 809 | 824 | ); |
| 810 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 811 | - $context['fulltext_index'][] = $row['indexname']; |
|
| 812 | - } |
|
| 813 | - else |
|
| 825 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 826 | + $context['fulltext_index'][] = $row['indexname']; |
|
| 827 | + } |
|
| 828 | + } else |
|
| 814 | 829 | { |
| 815 | 830 | $request = $smcFunc['db_query']('', ' |
| 816 | 831 | SHOW INDEX |
@@ -821,17 +836,19 @@ discard block |
||
| 821 | 836 | $context['fulltext_index'] = ''; |
| 822 | 837 | if ($request !== false || $smcFunc['db_num_rows']($request) != 0) |
| 823 | 838 | { |
| 824 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 825 | - if ($row['Column_name'] == 'body' && (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT' || isset($row['Comment']) && $row['Comment'] == 'FULLTEXT')) |
|
| 839 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 840 | + if ($row['Column_name'] == 'body' && (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT' || isset($row['Comment']) && $row['Comment'] == 'FULLTEXT')) |
|
| 826 | 841 | $context['fulltext_index'][] = $row['Key_name']; |
| 842 | + } |
|
| 827 | 843 | $smcFunc['db_free_result']($request); |
| 828 | 844 | |
| 829 | - if (is_array($context['fulltext_index'])) |
|
| 830 | - $context['fulltext_index'] = array_unique($context['fulltext_index']); |
|
| 845 | + if (is_array($context['fulltext_index'])) { |
|
| 846 | + $context['fulltext_index'] = array_unique($context['fulltext_index']); |
|
| 847 | + } |
|
| 831 | 848 | } |
| 832 | 849 | |
| 833 | - if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0) |
|
| 834 | - $request = $smcFunc['db_query']('', ' |
|
| 850 | + if (preg_match('~^`(.+?)`\.(.+?)$~', $db_prefix, $match) !== 0) { |
|
| 851 | + $request = $smcFunc['db_query']('', ' |
|
| 835 | 852 | SHOW TABLE STATUS |
| 836 | 853 | FROM {string:database_name} |
| 837 | 854 | LIKE {string:table_name}', |
@@ -840,20 +857,22 @@ discard block |
||
| 840 | 857 | 'table_name' => str_replace('_', '\_', $match[2]) . 'messages', |
| 841 | 858 | ) |
| 842 | 859 | ); |
| 843 | - else |
|
| 844 | - $request = $smcFunc['db_query']('', ' |
|
| 860 | + } else { |
|
| 861 | + $request = $smcFunc['db_query']('', ' |
|
| 845 | 862 | SHOW TABLE STATUS |
| 846 | 863 | LIKE {string:table_name}', |
| 847 | 864 | array( |
| 848 | 865 | 'table_name' => str_replace('_', '\_', $db_prefix) . 'messages', |
| 849 | 866 | ) |
| 850 | 867 | ); |
| 868 | + } |
|
| 851 | 869 | |
| 852 | 870 | if ($request !== false) |
| 853 | 871 | { |
| 854 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 855 | - if (isset($row['Engine']) && strtolower($row['Engine']) != 'myisam' && !(strtolower($row['Engine']) == 'innodb' && version_compare($smcFunc['db_get_version'], '5.6.4', '>='))) |
|
| 872 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 873 | + if (isset($row['Engine']) && strtolower($row['Engine']) != 'myisam' && !(strtolower($row['Engine']) == 'innodb' && version_compare($smcFunc['db_get_version'], '5.6.4', '>='))) |
|
| 856 | 874 | $context['cannot_create_fulltext'] = true; |
| 875 | + } |
|
| 857 | 876 | $smcFunc['db_free_result']($request); |
| 858 | 877 | } |
| 859 | 878 | } |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 4 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * The main admin handling function.<br> |
@@ -444,8 +445,9 @@ discard block |
||
| 444 | 445 | foreach ($admin_includes as $include) |
| 445 | 446 | { |
| 446 | 447 | $include = strtr(trim($include), array('$boarddir' => $boarddir, '$sourcedir' => $sourcedir, '$themedir' => $settings['theme_dir'])); |
| 447 | - if (file_exists($include)) |
|
| 448 | - require_once($include); |
|
| 448 | + if (file_exists($include)) { |
|
| 449 | + require_once($include); |
|
| 450 | + } |
|
| 449 | 451 | } |
| 450 | 452 | } |
| 451 | 453 | |
@@ -457,24 +459,27 @@ discard block |
||
| 457 | 459 | unset($admin_areas); |
| 458 | 460 | |
| 459 | 461 | // Nothing valid? |
| 460 | - if ($admin_include_data == false) |
|
| 461 | - fatal_lang_error('no_access', false); |
|
| 462 | + if ($admin_include_data == false) { |
|
| 463 | + fatal_lang_error('no_access', false); |
|
| 464 | + } |
|
| 462 | 465 | |
| 463 | 466 | // Build the link tree. |
| 464 | 467 | $context['linktree'][] = array( |
| 465 | 468 | 'url' => $scripturl . '?action=admin', |
| 466 | 469 | 'name' => $txt['admin_center'], |
| 467 | 470 | ); |
| 468 | - if (isset($admin_include_data['current_area']) && $admin_include_data['current_area'] != 'index') |
|
| 469 | - $context['linktree'][] = array( |
|
| 471 | + if (isset($admin_include_data['current_area']) && $admin_include_data['current_area'] != 'index') { |
|
| 472 | + $context['linktree'][] = array( |
|
| 470 | 473 | 'url' => $scripturl . '?action=admin;area=' . $admin_include_data['current_area'] . ';' . $context['session_var'] . '=' . $context['session_id'], |
| 471 | 474 | 'name' => $admin_include_data['label'], |
| 472 | 475 | ); |
| 473 | - if (!empty($admin_include_data['current_subsection']) && $admin_include_data['subsections'][$admin_include_data['current_subsection']][0] != $admin_include_data['label']) |
|
| 474 | - $context['linktree'][] = array( |
|
| 476 | + } |
|
| 477 | + if (!empty($admin_include_data['current_subsection']) && $admin_include_data['subsections'][$admin_include_data['current_subsection']][0] != $admin_include_data['label']) { |
|
| 478 | + $context['linktree'][] = array( |
|
| 475 | 479 | 'url' => $scripturl . '?action=admin;area=' . $admin_include_data['current_area'] . ';sa=' . $admin_include_data['current_subsection'] . ';' . $context['session_var'] . '=' . $context['session_id'], |
| 476 | 480 | 'name' => $admin_include_data['subsections'][$admin_include_data['current_subsection']][0], |
| 477 | 481 | ); |
| 482 | + } |
|
| 478 | 483 | |
| 479 | 484 | // Make a note of the Unique ID for this menu. |
| 480 | 485 | $context['admin_menu_id'] = $context['max_menu_id']; |
@@ -484,16 +489,18 @@ discard block |
||
| 484 | 489 | $context['admin_area'] = $admin_include_data['current_area']; |
| 485 | 490 | |
| 486 | 491 | // Now - finally - call the right place! |
| 487 | - if (isset($admin_include_data['file'])) |
|
| 488 | - require_once($sourcedir . '/' . $admin_include_data['file']); |
|
| 492 | + if (isset($admin_include_data['file'])) { |
|
| 493 | + require_once($sourcedir . '/' . $admin_include_data['file']); |
|
| 494 | + } |
|
| 489 | 495 | |
| 490 | 496 | // Get the right callable. |
| 491 | 497 | $call = call_helper($admin_include_data['function'], true); |
| 492 | 498 | |
| 493 | 499 | // Is it valid? |
| 494 | - if (!empty($call)) |
|
| 495 | - call_user_func($call); |
|
| 496 | -} |
|
| 500 | + if (!empty($call)) { |
|
| 501 | + call_user_func($call); |
|
| 502 | + } |
|
| 503 | + } |
|
| 497 | 504 | |
| 498 | 505 | /** |
| 499 | 506 | * The main administration section. |
@@ -547,13 +554,14 @@ discard block |
||
| 547 | 554 | |
| 548 | 555 | $context['sub_template'] = $context['admin_area'] == 'credits' ? 'credits' : 'admin'; |
| 549 | 556 | $context['page_title'] = $context['admin_area'] == 'credits' ? $txt['support_credits_title'] : $txt['admin_center']; |
| 550 | - if ($context['admin_area'] != 'credits') |
|
| 551 | - $context[$context['admin_menu_name']]['tab_data'] = array( |
|
| 557 | + if ($context['admin_area'] != 'credits') { |
|
| 558 | + $context[$context['admin_menu_name']]['tab_data'] = array( |
|
| 552 | 559 | 'title' => $txt['admin_center'], |
| 553 | 560 | 'help' => '', |
| 554 | 561 | 'description' => '<strong>' . $txt['hello_guest'] . ' ' . $context['user']['name'] . '!</strong> |
| 555 | 562 | ' . sprintf($txt['admin_main_welcome'], $txt['admin_center'], $txt['help'], $txt['help']), |
| 556 | 563 | ); |
| 564 | + } |
|
| 557 | 565 | |
| 558 | 566 | // Lastly, fill in the blanks in the support resources paragraphs. |
| 559 | 567 | $txt['support_resources_p1'] = sprintf($txt['support_resources_p1'], |
@@ -571,9 +579,10 @@ discard block |
||
| 571 | 579 | 'https://www.simplemachines.org/redirect/customize_support' |
| 572 | 580 | ); |
| 573 | 581 | |
| 574 | - if ($context['admin_area'] == 'admin') |
|
| 575 | - loadJavaScriptFile('admin.js', array('defer' => false), 'smf_admin'); |
|
| 576 | -} |
|
| 582 | + if ($context['admin_area'] == 'admin') { |
|
| 583 | + loadJavaScriptFile('admin.js', array('defer' => false), 'smf_admin'); |
|
| 584 | + } |
|
| 585 | + } |
|
| 577 | 586 | |
| 578 | 587 | /** |
| 579 | 588 | * Get one of the admin information files from Simple Machines. |
@@ -584,8 +593,9 @@ discard block |
||
| 584 | 593 | |
| 585 | 594 | setMemoryLimit('32M'); |
| 586 | 595 | |
| 587 | - if (empty($_REQUEST['filename']) || !is_string($_REQUEST['filename'])) |
|
| 588 | - fatal_lang_error('no_access', false); |
|
| 596 | + if (empty($_REQUEST['filename']) || !is_string($_REQUEST['filename'])) { |
|
| 597 | + fatal_lang_error('no_access', false); |
|
| 598 | + } |
|
| 589 | 599 | |
| 590 | 600 | // Strip off the forum cache part or we won't find it... |
| 591 | 601 | $_REQUEST['filename'] = str_replace($modSettings['browser_cache'], '', $_REQUEST['filename']); |
@@ -600,27 +610,30 @@ discard block |
||
| 600 | 610 | ) |
| 601 | 611 | ); |
| 602 | 612 | |
| 603 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
| 604 | - fatal_lang_error('admin_file_not_found', true, array($_REQUEST['filename']), 404); |
|
| 613 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
| 614 | + fatal_lang_error('admin_file_not_found', true, array($_REQUEST['filename']), 404); |
|
| 615 | + } |
|
| 605 | 616 | |
| 606 | 617 | list ($file_data, $filetype) = $smcFunc['db_fetch_row']($request); |
| 607 | 618 | $smcFunc['db_free_result']($request); |
| 608 | 619 | |
| 609 | 620 | // @todo Temp |
| 610 | 621 | // Figure out if sesc is still being used. |
| 611 | - if (strpos($file_data, ';sesc=') !== false && $filetype == 'text/javascript') |
|
| 612 | - $file_data = ' |
|
| 622 | + if (strpos($file_data, ';sesc=') !== false && $filetype == 'text/javascript') { |
|
| 623 | + $file_data = ' |
|
| 613 | 624 | if (!(\'smfForum_sessionvar\' in window)) |
| 614 | 625 | window.smfForum_sessionvar = \'sesc\'; |
| 615 | 626 | ' . strtr($file_data, array(';sesc=' => ';\' + window.smfForum_sessionvar + \'=')); |
| 627 | + } |
|
| 616 | 628 | |
| 617 | 629 | $context['template_layers'] = array(); |
| 618 | 630 | // Lets make sure we aren't going to output anything nasty. |
| 619 | 631 | @ob_end_clean(); |
| 620 | - if (!empty($modSettings['enableCompressedOutput'])) |
|
| 621 | - @ob_start('ob_gzhandler'); |
|
| 622 | - else |
|
| 623 | - @ob_start(); |
|
| 632 | + if (!empty($modSettings['enableCompressedOutput'])) { |
|
| 633 | + @ob_start('ob_gzhandler'); |
|
| 634 | + } else { |
|
| 635 | + @ob_start(); |
|
| 636 | + } |
|
| 624 | 637 | |
| 625 | 638 | // Make sure they know what type of file we are. |
| 626 | 639 | header('Content-Type: ' . $filetype); |
@@ -660,11 +673,12 @@ discard block |
||
| 660 | 673 | updateAdminPreferences(); |
| 661 | 674 | } |
| 662 | 675 | |
| 663 | - if (trim($context['search_term']) == '') |
|
| 664 | - $context['search_results'] = array(); |
|
| 665 | - else |
|
| 666 | - call_helper($subActions[$context['search_type']]); |
|
| 667 | -} |
|
| 676 | + if (trim($context['search_term']) == '') { |
|
| 677 | + $context['search_results'] = array(); |
|
| 678 | + } else { |
|
| 679 | + call_helper($subActions[$context['search_type']]); |
|
| 680 | + } |
|
| 681 | + } |
|
| 668 | 682 | |
| 669 | 683 | /** |
| 670 | 684 | * A complicated but relatively quick internal search. |
@@ -728,8 +742,9 @@ discard block |
||
| 728 | 742 | |
| 729 | 743 | loadLanguage(implode('+', $language_files)); |
| 730 | 744 | |
| 731 | - foreach ($include_files as $file) |
|
| 732 | - require_once($sourcedir . '/' . $file . '.php'); |
|
| 745 | + foreach ($include_files as $file) { |
|
| 746 | + require_once($sourcedir . '/' . $file . '.php'); |
|
| 747 | + } |
|
| 733 | 748 | |
| 734 | 749 | /* This is the huge array that defines everything... it's a huge array of items formatted as follows: |
| 735 | 750 | 0 = Language index (Can be array of indexes) to search through for this setting. |
@@ -753,11 +768,12 @@ discard block |
||
| 753 | 768 | foreach ($section['areas'] as $menu_key => $menu_item) |
| 754 | 769 | { |
| 755 | 770 | $search_data['sections'][] = array($menu_item['label'], 'area=' . $menu_key); |
| 756 | - if (!empty($menu_item['subsections'])) |
|
| 757 | - foreach ($menu_item['subsections'] as $key => $sublabel) |
|
| 771 | + if (!empty($menu_item['subsections'])) { |
|
| 772 | + foreach ($menu_item['subsections'] as $key => $sublabel) |
|
| 758 | 773 | { |
| 759 | 774 | if (isset($sublabel['label'])) |
| 760 | 775 | $search_data['sections'][] = array($sublabel['label'], 'area=' . $menu_key . ';sa=' . $key); |
| 776 | + } |
|
| 761 | 777 | } |
| 762 | 778 | } |
| 763 | 779 | } |
@@ -767,9 +783,10 @@ discard block |
||
| 767 | 783 | // Get a list of their variables. |
| 768 | 784 | $config_vars = $setting_area[0](true); |
| 769 | 785 | |
| 770 | - foreach ($config_vars as $var) |
|
| 771 | - if (!empty($var[1]) && !in_array($var[0], array('permissions', 'switch', 'desc'))) |
|
| 786 | + foreach ($config_vars as $var) { |
|
| 787 | + if (!empty($var[1]) && !in_array($var[0], array('permissions', 'switch', 'desc'))) |
|
| 772 | 788 | $search_data['settings'][] = array($var[(isset($var[2]) && in_array($var[2], array('file', 'db'))) ? 0 : 1], $setting_area[1]); |
| 789 | + } |
|
| 773 | 790 | } |
| 774 | 791 | |
| 775 | 792 | $context['page_title'] = $txt['admin_search_results']; |
@@ -782,8 +799,9 @@ discard block |
||
| 782 | 799 | foreach ($data as $item) |
| 783 | 800 | { |
| 784 | 801 | $found = false; |
| 785 | - if (!is_array($item[0])) |
|
| 786 | - $item[0] = array($item[0]); |
|
| 802 | + if (!is_array($item[0])) { |
|
| 803 | + $item[0] = array($item[0]); |
|
| 804 | + } |
|
| 787 | 805 | foreach ($item[0] as $term) |
| 788 | 806 | { |
| 789 | 807 | if (stripos($term, $search_term) !== false || (isset($txt[$term]) && stripos($txt[$term], $search_term) !== false) || (isset($txt['setting_' . $term]) && stripos($txt['setting_' . $term], $search_term) !== false)) |
@@ -841,8 +859,9 @@ discard block |
||
| 841 | 859 | $postVars = explode(' ', $context['search_term']); |
| 842 | 860 | |
| 843 | 861 | // Encode the search data. |
| 844 | - foreach ($postVars as $k => $v) |
|
| 845 | - $postVars[$k] = urlencode($v); |
|
| 862 | + foreach ($postVars as $k => $v) { |
|
| 863 | + $postVars[$k] = urlencode($v); |
|
| 864 | + } |
|
| 846 | 865 | |
| 847 | 866 | // This is what we will send. |
| 848 | 867 | $postVars = implode('+', $postVars); |
@@ -854,8 +873,9 @@ discard block |
||
| 854 | 873 | $search_results = fetch_web_data($context['doc_apiurl'] . '?action=query&list=search&srprop=timestamp|snippet&format=xml&srwhat=text&srsearch=' . $postVars); |
| 855 | 874 | |
| 856 | 875 | // If we didn't get any xml back we are in trouble - perhaps the doc site is overloaded? |
| 857 | - if (!$search_results || preg_match('~<' . '\?xml\sversion="\d+\.\d+"\?' . '>\s*(<api>.+?</api>)~is', $search_results, $matches) != true) |
|
| 858 | - fatal_lang_error('cannot_connect_doc_site'); |
|
| 876 | + if (!$search_results || preg_match('~<' . '\?xml\sversion="\d+\.\d+"\?' . '>\s*(<api>.+?</api>)~is', $search_results, $matches) != true) { |
|
| 877 | + fatal_lang_error('cannot_connect_doc_site'); |
|
| 878 | + } |
|
| 859 | 879 | |
| 860 | 880 | $search_results = $matches[1]; |
| 861 | 881 | |
@@ -867,8 +887,9 @@ discard block |
||
| 867 | 887 | $results = new xmlArray($search_results, false); |
| 868 | 888 | |
| 869 | 889 | // Move through the api layer. |
| 870 | - if (!$results->exists('api')) |
|
| 871 | - fatal_lang_error('cannot_connect_doc_site'); |
|
| 890 | + if (!$results->exists('api')) { |
|
| 891 | + fatal_lang_error('cannot_connect_doc_site'); |
|
| 892 | + } |
|
| 872 | 893 | |
| 873 | 894 | // Are there actually some results? |
| 874 | 895 | if ($results->exists('api/query/search/p')) |
@@ -904,8 +925,9 @@ discard block |
||
| 904 | 925 | ); |
| 905 | 926 | |
| 906 | 927 | // If it's not got a sa set it must have come here for first time, pretend error log should be reversed. |
| 907 | - if (!isset($_REQUEST['sa'])) |
|
| 908 | - $_REQUEST['desc'] = true; |
|
| 928 | + if (!isset($_REQUEST['sa'])) { |
|
| 929 | + $_REQUEST['desc'] = true; |
|
| 930 | + } |
|
| 909 | 931 | |
| 910 | 932 | // Setup some tab stuff. |
| 911 | 933 | $context[$context['admin_menu_name']]['tab_data'] = array( |
@@ -955,9 +977,10 @@ discard block |
||
| 955 | 977 | unset($_SESSION['admin_time']); |
| 956 | 978 | |
| 957 | 979 | // Clean any admin tokens as well. |
| 958 | - foreach ($_SESSION['token'] as $key => $token) |
|
| 959 | - if (strpos($key, '-admin') !== false) |
|
| 980 | + foreach ($_SESSION['token'] as $key => $token) { |
|
| 981 | + if (strpos($key, '-admin') !== false) |
|
| 960 | 982 | unset($_SESSION['token'][$key]); |
| 983 | + } |
|
| 961 | 984 | |
| 962 | 985 | redirectexit(); |
| 963 | 986 | } |
@@ -11,8 +11,9 @@ discard block |
||
| 11 | 11 | * @version 2.1 Beta 4 |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -if (!defined('SMF')) |
|
| 14 | +if (!defined('SMF')) { |
|
| 15 | 15 | die('Hacking attempt...'); |
| 16 | +} |
|
| 16 | 17 | |
| 17 | 18 | /** |
| 18 | 19 | * Our Cache API class |
@@ -27,8 +28,9 @@ discard block |
||
| 27 | 28 | { |
| 28 | 29 | $supported = function_exists('apcu_fetch') && function_exists('apcu_store'); |
| 29 | 30 | |
| 30 | - if ($test) |
|
| 31 | - return $supported; |
|
| 31 | + if ($test) { |
|
| 32 | + return $supported; |
|
| 33 | + } |
|
| 32 | 34 | return parent::isSupported() && $supported; |
| 33 | 35 | } |
| 34 | 36 | |
@@ -50,10 +52,11 @@ discard block |
||
| 50 | 52 | $key = $this->prefix . strtr($key, ':/', '-_'); |
| 51 | 53 | |
| 52 | 54 | // An extended key is needed to counteract a bug in APC. |
| 53 | - if ($value === null) |
|
| 54 | - return apcu_delete($key . 'smf'); |
|
| 55 | - else |
|
| 56 | - return apcu_store($key . 'smf', $value, $ttl); |
|
| 55 | + if ($value === null) { |
|
| 56 | + return apcu_delete($key . 'smf'); |
|
| 57 | + } else { |
|
| 58 | + return apcu_store($key . 'smf', $value, $ttl); |
|
| 59 | + } |
|
| 57 | 60 | } |
| 58 | 61 | |
| 59 | 62 | /** |
@@ -11,8 +11,9 @@ |
||
| 11 | 11 | * @version 2.1 Beta 4 |
| 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 | * Standard non full index, non custom index search |
@@ -11,8 +11,9 @@ discard block |
||
| 11 | 11 | * @version 2.1 Beta 4 |
| 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 | * Used for the "custom search index" option |
@@ -54,8 +55,9 @@ discard block |
||
| 54 | 55 | return; |
| 55 | 56 | } |
| 56 | 57 | |
| 57 | - if (empty($modSettings['search_custom_index_config'])) |
|
| 58 | - return; |
|
| 58 | + if (empty($modSettings['search_custom_index_config'])) { |
|
| 59 | + return; |
|
| 60 | + } |
|
| 59 | 61 | |
| 60 | 62 | $this->indexSettings = smf_json_decode($modSettings['search_custom_index_config'], true); |
| 61 | 63 | |
@@ -117,21 +119,23 @@ discard block |
||
| 117 | 119 | |
| 118 | 120 | $subwords = text2words($word, $this->min_word_length, true); |
| 119 | 121 | |
| 120 | - if (empty($modSettings['search_force_index'])) |
|
| 121 | - $wordsSearch['words'][] = $word; |
|
| 122 | + if (empty($modSettings['search_force_index'])) { |
|
| 123 | + $wordsSearch['words'][] = $word; |
|
| 124 | + } |
|
| 122 | 125 | |
| 123 | 126 | // Excluded phrases don't benefit from being split into subwords. |
| 124 | - if (count($subwords) > 1 && $isExcluded) |
|
| 125 | - return; |
|
| 126 | - else |
|
| 127 | + if (count($subwords) > 1 && $isExcluded) { |
|
| 128 | + return; |
|
| 129 | + } else |
|
| 127 | 130 | { |
| 128 | 131 | foreach ($subwords as $subword) |
| 129 | 132 | { |
| 130 | 133 | if ($smcFunc['strlen']($subword) >= $this->min_word_length && !in_array($subword, $this->bannedWords)) |
| 131 | 134 | { |
| 132 | 135 | $wordsSearch['indexed_words'][] = $subword; |
| 133 | - if ($isExcluded) |
|
| 134 | - $wordsExclude[] = $subword; |
|
| 136 | + if ($isExcluded) { |
|
| 137 | + $wordsExclude[] = $subword; |
|
| 138 | + } |
|
| 135 | 139 | } |
| 136 | 140 | } |
| 137 | 141 | } |
@@ -152,8 +156,9 @@ discard block |
||
| 152 | 156 | $query_where = array(); |
| 153 | 157 | $query_params = $search_data['params']; |
| 154 | 158 | |
| 155 | - if ($query_params['id_search']) |
|
| 156 | - $query_select['id_search'] = '{int:id_search}'; |
|
| 159 | + if ($query_params['id_search']) { |
|
| 160 | + $query_select['id_search'] = '{int:id_search}'; |
|
| 161 | + } |
|
| 157 | 162 | |
| 158 | 163 | $count = 0; |
| 159 | 164 | foreach ($words['words'] as $regularWord) |
@@ -162,30 +167,37 @@ discard block |
||
| 162 | 167 | $query_params['complex_body_' . $count++] = empty($modSettings['search_match_words']) || $search_data['no_regexp'] ? '%' . strtr($regularWord, array('_' => '\\_', '%' => '\\%')) . '%' : '[[:<:]]' . addcslashes(preg_replace(array('/([\[\]$.+*?|{}()])/'), array('[$1]'), $regularWord), '\\\'') . '[[:>:]]'; |
| 163 | 168 | } |
| 164 | 169 | |
| 165 | - if ($query_params['user_query']) |
|
| 166 | - $query_where[] = '{raw:user_query}'; |
|
| 167 | - if ($query_params['board_query']) |
|
| 168 | - $query_where[] = 'm.id_board {raw:board_query}'; |
|
| 170 | + if ($query_params['user_query']) { |
|
| 171 | + $query_where[] = '{raw:user_query}'; |
|
| 172 | + } |
|
| 173 | + if ($query_params['board_query']) { |
|
| 174 | + $query_where[] = 'm.id_board {raw:board_query}'; |
|
| 175 | + } |
|
| 169 | 176 | |
| 170 | - if ($query_params['topic']) |
|
| 171 | - $query_where[] = 'm.id_topic = {int:topic}'; |
|
| 172 | - if ($query_params['min_msg_id']) |
|
| 173 | - $query_where[] = 'm.id_msg >= {int:min_msg_id}'; |
|
| 174 | - if ($query_params['max_msg_id']) |
|
| 175 | - $query_where[] = 'm.id_msg <= {int:max_msg_id}'; |
|
| 177 | + if ($query_params['topic']) { |
|
| 178 | + $query_where[] = 'm.id_topic = {int:topic}'; |
|
| 179 | + } |
|
| 180 | + if ($query_params['min_msg_id']) { |
|
| 181 | + $query_where[] = 'm.id_msg >= {int:min_msg_id}'; |
|
| 182 | + } |
|
| 183 | + if ($query_params['max_msg_id']) { |
|
| 184 | + $query_where[] = 'm.id_msg <= {int:max_msg_id}'; |
|
| 185 | + } |
|
| 176 | 186 | |
| 177 | 187 | $count = 0; |
| 178 | - if (!empty($query_params['excluded_phrases']) && empty($modSettings['search_force_index'])) |
|
| 179 | - foreach ($query_params['excluded_phrases'] as $phrase) |
|
| 188 | + if (!empty($query_params['excluded_phrases']) && empty($modSettings['search_force_index'])) { |
|
| 189 | + foreach ($query_params['excluded_phrases'] as $phrase) |
|
| 180 | 190 | { |
| 181 | 191 | $query_where[] = 'subject NOT ' . (empty($modSettings['search_match_words']) || $search_data['no_regexp'] ? ' LIKE ' : ' RLIKE ') . '{string:exclude_subject_phrase_' . $count . '}'; |
| 192 | + } |
|
| 182 | 193 | $query_params['exclude_subject_phrase_' . $count++] = empty($modSettings['search_match_words']) || $search_data['no_regexp'] ? '%' . strtr($phrase, array('_' => '\\_', '%' => '\\%')) . '%' : '[[:<:]]' . addcslashes(preg_replace(array('/([\[\]$.+*?|{}()])/'), array('[$1]'), $phrase), '\\\'') . '[[:>:]]'; |
| 183 | 194 | } |
| 184 | 195 | $count = 0; |
| 185 | - if (!empty($query_params['excluded_subject_words']) && empty($modSettings['search_force_index'])) |
|
| 186 | - foreach ($query_params['excluded_subject_words'] as $excludedWord) |
|
| 196 | + if (!empty($query_params['excluded_subject_words']) && empty($modSettings['search_force_index'])) { |
|
| 197 | + foreach ($query_params['excluded_subject_words'] as $excludedWord) |
|
| 187 | 198 | { |
| 188 | 199 | $query_where[] = 'subject NOT ' . (empty($modSettings['search_match_words']) || $search_data['no_regexp'] ? ' LIKE ' : ' RLIKE ') . '{string:exclude_subject_words_' . $count . '}'; |
| 200 | + } |
|
| 189 | 201 | $query_params['exclude_subject_words_' . $count++] = empty($modSettings['search_match_words']) || $search_data['no_regexp'] ? '%' . strtr($excludedWord, array('_' => '\\_', '%' => '\\%')) . '%' : '[[:<:]]' . addcslashes(preg_replace(array('/([\[\]$.+*?|{}()])/'), array('[$1]'), $excludedWord), '\\\'') . '[[:>:]]'; |
| 190 | 202 | } |
| 191 | 203 | |
@@ -198,8 +210,7 @@ discard block |
||
| 198 | 210 | { |
| 199 | 211 | $query_left_join[] = '{db_prefix}log_search_words AS lsw' . $numTables . ' ON (lsw' . $numTables . '.id_word = ' . $indexedWord . ' AND lsw' . $numTables . '.id_msg = m.id_msg)'; |
| 200 | 212 | $query_where[] = '(lsw' . $numTables . '.id_word IS NULL)'; |
| 201 | - } |
|
| 202 | - else |
|
| 213 | + } else |
|
| 203 | 214 | { |
| 204 | 215 | $query_inner_join[] = '{db_prefix}log_search_words AS lsw' . $numTables . ' ON (lsw' . $numTables . '.id_msg = ' . ($prev_join === 0 ? 'm' : 'lsw' . $prev_join) . '.id_msg)'; |
| 205 | 216 | $query_where[] = 'lsw' . $numTables . '.id_word = ' . $indexedWord; |
@@ -235,16 +246,18 @@ discard block |
||
| 235 | 246 | $customIndexSettings = smf_json_decode($modSettings['search_custom_index_config'], true); |
| 236 | 247 | |
| 237 | 248 | $inserts = array(); |
| 238 | - foreach (text2words($msgOptions['body'], $customIndexSettings['bytes_per_word'], true) as $word) |
|
| 239 | - $inserts[] = array($word, $msgOptions['id']); |
|
| 249 | + foreach (text2words($msgOptions['body'], $customIndexSettings['bytes_per_word'], true) as $word) { |
|
| 250 | + $inserts[] = array($word, $msgOptions['id']); |
|
| 251 | + } |
|
| 240 | 252 | |
| 241 | - if (!empty($inserts)) |
|
| 242 | - $smcFunc['db_insert']('ignore', |
|
| 253 | + if (!empty($inserts)) { |
|
| 254 | + $smcFunc['db_insert']('ignore', |
|
| 243 | 255 | '{db_prefix}log_search_words', |
| 244 | 256 | array('id_word' => 'int', 'id_msg' => 'int'), |
| 245 | 257 | $inserts, |
| 246 | 258 | array('id_word', 'id_msg') |
| 247 | 259 | ); |
| 260 | + } |
|
| 248 | 261 | } |
| 249 | 262 | |
| 250 | 263 | /** |
@@ -287,8 +300,9 @@ discard block |
||
| 287 | 300 | if (!empty($inserted_words)) |
| 288 | 301 | { |
| 289 | 302 | $inserts = array(); |
| 290 | - foreach ($inserted_words as $word) |
|
| 291 | - $inserts[] = array($word, $msgOptions['id']); |
|
| 303 | + foreach ($inserted_words as $word) { |
|
| 304 | + $inserts[] = array($word, $msgOptions['id']); |
|
| 305 | + } |
|
| 292 | 306 | $smcFunc['db_insert']('insert', |
| 293 | 307 | '{db_prefix}log_search_words', |
| 294 | 308 | array('id_word' => 'string', 'id_msg' => 'int'), |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 4 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | |
| 20 | 21 | /** |
@@ -44,8 +45,9 @@ discard block |
||
| 44 | 45 | $_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : (allowedTo('manage_membergroups') ? 'index' : 'settings'); |
| 45 | 46 | |
| 46 | 47 | // Is it elsewhere? |
| 47 | - if (isset($subActions[$_REQUEST['sa']][2])) |
|
| 48 | - require_once($sourcedir . '/' . $subActions[$_REQUEST['sa']][2]); |
|
| 48 | + if (isset($subActions[$_REQUEST['sa']][2])) { |
|
| 49 | + require_once($sourcedir . '/' . $subActions[$_REQUEST['sa']][2]); |
|
| 50 | + } |
|
| 49 | 51 | |
| 50 | 52 | // Do the permission check, you might not be allowed her. |
| 51 | 53 | isAllowedTo($subActions[$_REQUEST['sa']][1]); |
@@ -104,19 +106,20 @@ discard block |
||
| 104 | 106 | 'function' => function($rowData) use ($scripturl) |
| 105 | 107 | { |
| 106 | 108 | // Since the moderator group has no explicit members, no link is needed. |
| 107 | - if ($rowData['id_group'] == 3) |
|
| 108 | - $group_name = $rowData['group_name']; |
|
| 109 | - else |
|
| 109 | + if ($rowData['id_group'] == 3) { |
|
| 110 | + $group_name = $rowData['group_name']; |
|
| 111 | + } else |
|
| 110 | 112 | { |
| 111 | 113 | $color_style = empty($rowData['online_color']) ? '' : sprintf(' style="color: %1$s;"', $rowData['online_color']); |
| 112 | 114 | $group_name = sprintf('<a href="%1$s?action=admin;area=membergroups;sa=members;group=%2$d"%3$s>%4$s</a>', $scripturl, $rowData['id_group'], $color_style, $rowData['group_name']); |
| 113 | 115 | } |
| 114 | 116 | |
| 115 | 117 | // Add a help option for moderator and administrator. |
| 116 | - if ($rowData['id_group'] == 1) |
|
| 117 | - $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_administrator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
| 118 | - elseif ($rowData['id_group'] == 3) |
|
| 119 | - $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_moderator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
| 118 | + if ($rowData['id_group'] == 1) { |
|
| 119 | + $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_administrator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
| 120 | + } elseif ($rowData['id_group'] == 3) { |
|
| 121 | + $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_moderator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
| 122 | + } |
|
| 120 | 123 | |
| 121 | 124 | return $group_name; |
| 122 | 125 | }, |
@@ -329,12 +332,14 @@ discard block |
||
| 329 | 332 | call_integration_hook('integrate_add_membergroup', array($id_group, $postCountBasedGroup)); |
| 330 | 333 | |
| 331 | 334 | // Update the post groups now, if this is a post group! |
| 332 | - if (isset($_POST['min_posts'])) |
|
| 333 | - updateStats('postgroups'); |
|
| 335 | + if (isset($_POST['min_posts'])) { |
|
| 336 | + updateStats('postgroups'); |
|
| 337 | + } |
|
| 334 | 338 | |
| 335 | 339 | // You cannot set permissions for post groups if they are disabled. |
| 336 | - if ($postCountBasedGroup && empty($modSettings['permission_enable_postgroups'])) |
|
| 337 | - $_POST['perm_type'] = ''; |
|
| 340 | + if ($postCountBasedGroup && empty($modSettings['permission_enable_postgroups'])) { |
|
| 341 | + $_POST['perm_type'] = ''; |
|
| 342 | + } |
|
| 338 | 343 | |
| 339 | 344 | if ($_POST['perm_type'] == 'predefined') |
| 340 | 345 | { |
@@ -364,8 +369,9 @@ discard block |
||
| 364 | 369 | $smcFunc['db_free_result']($request); |
| 365 | 370 | |
| 366 | 371 | // Protected groups are... well, protected! |
| 367 | - if ($copy_type == 1) |
|
| 368 | - fatal_lang_error('membergroup_does_not_exist'); |
|
| 372 | + if ($copy_type == 1) { |
|
| 373 | + fatal_lang_error('membergroup_does_not_exist'); |
|
| 374 | + } |
|
| 369 | 375 | } |
| 370 | 376 | |
| 371 | 377 | // Don't allow copying of a real priviledged person! |
@@ -383,18 +389,20 @@ discard block |
||
| 383 | 389 | $inserts = array(); |
| 384 | 390 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 385 | 391 | { |
| 386 | - if (empty($context['illegal_permissions']) || !in_array($row['permission'], $context['illegal_permissions'])) |
|
| 387 | - $inserts[] = array($id_group, $row['permission'], $row['add_deny']); |
|
| 392 | + if (empty($context['illegal_permissions']) || !in_array($row['permission'], $context['illegal_permissions'])) { |
|
| 393 | + $inserts[] = array($id_group, $row['permission'], $row['add_deny']); |
|
| 394 | + } |
|
| 388 | 395 | } |
| 389 | 396 | $smcFunc['db_free_result']($request); |
| 390 | 397 | |
| 391 | - if (!empty($inserts)) |
|
| 392 | - $smcFunc['db_insert']('insert', |
|
| 398 | + if (!empty($inserts)) { |
|
| 399 | + $smcFunc['db_insert']('insert', |
|
| 393 | 400 | '{db_prefix}permissions', |
| 394 | 401 | array('id_group' => 'int', 'permission' => 'string', 'add_deny' => 'int'), |
| 395 | 402 | $inserts, |
| 396 | 403 | array('id_group', 'permission') |
| 397 | 404 | ); |
| 405 | + } |
|
| 398 | 406 | |
| 399 | 407 | $request = $smcFunc['db_query']('', ' |
| 400 | 408 | SELECT id_profile, permission, add_deny |
@@ -405,17 +413,19 @@ discard block |
||
| 405 | 413 | ) |
| 406 | 414 | ); |
| 407 | 415 | $inserts = array(); |
| 408 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 409 | - $inserts[] = array($id_group, $row['id_profile'], $row['permission'], $row['add_deny']); |
|
| 416 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 417 | + $inserts[] = array($id_group, $row['id_profile'], $row['permission'], $row['add_deny']); |
|
| 418 | + } |
|
| 410 | 419 | $smcFunc['db_free_result']($request); |
| 411 | 420 | |
| 412 | - if (!empty($inserts)) |
|
| 413 | - $smcFunc['db_insert']('insert', |
|
| 421 | + if (!empty($inserts)) { |
|
| 422 | + $smcFunc['db_insert']('insert', |
|
| 414 | 423 | '{db_prefix}board_permissions', |
| 415 | 424 | array('id_group' => 'int', 'id_profile' => 'int', 'permission' => 'string', 'add_deny' => 'int'), |
| 416 | 425 | $inserts, |
| 417 | 426 | array('id_group', 'id_profile', 'permission') |
| 418 | 427 | ); |
| 428 | + } |
|
| 419 | 429 | |
| 420 | 430 | // Also get some membergroup information if we're copying and not copying from guests... |
| 421 | 431 | if ($copy_id > 0 && $_POST['perm_type'] == 'copy') |
@@ -468,14 +478,15 @@ discard block |
||
| 468 | 478 | $changed_boards['allow'] = array(); |
| 469 | 479 | $changed_boards['deny'] = array(); |
| 470 | 480 | $changed_boards['ignore'] = array(); |
| 471 | - foreach ($accesses as $group_id => $action) |
|
| 472 | - $changed_boards[$action][] = (int) $group_id; |
|
| 481 | + foreach ($accesses as $group_id => $action) { |
|
| 482 | + $changed_boards[$action][] = (int) $group_id; |
|
| 483 | + } |
|
| 473 | 484 | |
| 474 | 485 | foreach (array('allow', 'deny') as $board_action) |
| 475 | 486 | { |
| 476 | 487 | // Only do this if they have special access requirements. |
| 477 | - if (!empty($changed_boards[$board_action])) |
|
| 478 | - $smcFunc['db_query']('', ' |
|
| 488 | + if (!empty($changed_boards[$board_action])) { |
|
| 489 | + $smcFunc['db_query']('', ' |
|
| 479 | 490 | UPDATE {db_prefix}boards |
| 480 | 491 | SET {raw:column} = CASE WHEN {raw:column} = {string:blank_string} THEN {string:group_id_string} ELSE CONCAT({raw:column}, {string:comma_group}) END |
| 481 | 492 | WHERE id_board IN ({array_int:board_list})', |
@@ -487,11 +498,13 @@ discard block |
||
| 487 | 498 | 'column' => $board_action == 'allow' ? 'member_groups' : 'deny_member_groups', |
| 488 | 499 | ) |
| 489 | 500 | ); |
| 501 | + } |
|
| 490 | 502 | } |
| 491 | 503 | |
| 492 | 504 | // If this is joinable then set it to show group membership in people's profiles. |
| 493 | - if (empty($modSettings['show_group_membership']) && $_POST['group_type'] > 1) |
|
| 494 | - updateSettings(array('show_group_membership' => 1)); |
|
| 505 | + if (empty($modSettings['show_group_membership']) && $_POST['group_type'] > 1) { |
|
| 506 | + updateSettings(array('show_group_membership' => 1)); |
|
| 507 | + } |
|
| 495 | 508 | |
| 496 | 509 | // Rebuild the group cache. |
| 497 | 510 | updateSettings(array( |
@@ -512,8 +525,9 @@ discard block |
||
| 512 | 525 | $context['undefined_group'] = !isset($_REQUEST['postgroup']) && !isset($_REQUEST['generalgroup']); |
| 513 | 526 | $context['allow_protected'] = allowedTo('admin_forum'); |
| 514 | 527 | |
| 515 | - if (!empty($modSettings['deny_boards_access'])) |
|
| 516 | - loadLanguage('ManagePermissions'); |
|
| 528 | + if (!empty($modSettings['deny_boards_access'])) { |
|
| 529 | + loadLanguage('ManagePermissions'); |
|
| 530 | + } |
|
| 517 | 531 | |
| 518 | 532 | $result = $smcFunc['db_query']('', ' |
| 519 | 533 | SELECT id_group, group_name |
@@ -530,11 +544,12 @@ discard block |
||
| 530 | 544 | ) |
| 531 | 545 | ); |
| 532 | 546 | $context['groups'] = array(); |
| 533 | - while ($row = $smcFunc['db_fetch_assoc']($result)) |
|
| 534 | - $context['groups'][] = array( |
|
| 547 | + while ($row = $smcFunc['db_fetch_assoc']($result)) { |
|
| 548 | + $context['groups'][] = array( |
|
| 535 | 549 | 'id' => $row['id_group'], |
| 536 | 550 | 'name' => $row['group_name'] |
| 537 | 551 | ); |
| 552 | + } |
|
| 538 | 553 | $smcFunc['db_free_result']($result); |
| 539 | 554 | |
| 540 | 555 | $request = $smcFunc['db_query']('', ' |
@@ -551,12 +566,13 @@ discard block |
||
| 551 | 566 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 552 | 567 | { |
| 553 | 568 | // This category hasn't been set up yet.. |
| 554 | - if (!isset($context['categories'][$row['id_cat']])) |
|
| 555 | - $context['categories'][$row['id_cat']] = array( |
|
| 569 | + if (!isset($context['categories'][$row['id_cat']])) { |
|
| 570 | + $context['categories'][$row['id_cat']] = array( |
|
| 556 | 571 | 'id' => $row['id_cat'], |
| 557 | 572 | 'name' => $row['cat_name'], |
| 558 | 573 | 'boards' => array() |
| 559 | 574 | ); |
| 575 | + } |
|
| 560 | 576 | |
| 561 | 577 | // Set this board up, and let the template know when it's a child. (indent them..) |
| 562 | 578 | $context['categories'][$row['id_cat']]['boards'][$row['id_board']] = array( |
@@ -604,8 +620,9 @@ discard block |
||
| 604 | 620 | require_once($sourcedir . '/Subs-Membergroups.php'); |
| 605 | 621 | $result = deleteMembergroups((int) $_REQUEST['group']); |
| 606 | 622 | // Need to throw a warning if it went wrong, but this is the only one we have a message for... |
| 607 | - if ($result === 'group_cannot_delete_sub') |
|
| 608 | - fatal_lang_error('membergroups_cannot_delete_paid', false); |
|
| 623 | + if ($result === 'group_cannot_delete_sub') { |
|
| 624 | + fatal_lang_error('membergroups_cannot_delete_paid', false); |
|
| 625 | + } |
|
| 609 | 626 | |
| 610 | 627 | // Go back to the membergroup index. |
| 611 | 628 | redirectexit('action=admin;area=membergroups;'); |
@@ -627,8 +644,9 @@ discard block |
||
| 627 | 644 | |
| 628 | 645 | $_REQUEST['group'] = isset($_REQUEST['group']) && $_REQUEST['group'] > 0 ? (int) $_REQUEST['group'] : 0; |
| 629 | 646 | |
| 630 | - if (!empty($modSettings['deny_boards_access'])) |
|
| 631 | - loadLanguage('ManagePermissions'); |
|
| 647 | + if (!empty($modSettings['deny_boards_access'])) { |
|
| 648 | + loadLanguage('ManagePermissions'); |
|
| 649 | + } |
|
| 632 | 650 | |
| 633 | 651 | // Make sure this group is editable. |
| 634 | 652 | if (!empty($_REQUEST['group'])) |
@@ -650,8 +668,9 @@ discard block |
||
| 650 | 668 | } |
| 651 | 669 | |
| 652 | 670 | // Now, do we have a valid id? |
| 653 | - if (empty($_REQUEST['group'])) |
|
| 654 | - fatal_lang_error('membergroup_does_not_exist', false); |
|
| 671 | + if (empty($_REQUEST['group'])) { |
|
| 672 | + fatal_lang_error('membergroup_does_not_exist', false); |
|
| 673 | + } |
|
| 655 | 674 | |
| 656 | 675 | // People who can manage boards are a bit special. |
| 657 | 676 | require_once($sourcedir . '/Subs-Members.php'); |
@@ -682,8 +701,9 @@ discard block |
||
| 682 | 701 | require_once($sourcedir . '/Subs-Membergroups.php'); |
| 683 | 702 | $result = deleteMembergroups($_REQUEST['group']); |
| 684 | 703 | // Need to throw a warning if it went wrong, but this is the only one we have a message for... |
| 685 | - if ($result === 'group_cannot_delete_sub') |
|
| 686 | - fatal_lang_error('membergroups_cannot_delete_paid', false); |
|
| 704 | + if ($result === 'group_cannot_delete_sub') { |
|
| 705 | + fatal_lang_error('membergroups_cannot_delete_paid', false); |
|
| 706 | + } |
|
| 687 | 707 | |
| 688 | 708 | redirectexit('action=admin;area=membergroups;'); |
| 689 | 709 | } |
@@ -760,16 +780,18 @@ discard block |
||
| 760 | 780 | $request = $smcFunc['db_query']('', ' |
| 761 | 781 | SELECT id_board |
| 762 | 782 | FROM {db_prefix}boards'); |
| 763 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 764 | - $accesses[(int) $row['id_board']] = 'allow'; |
|
| 783 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 784 | + $accesses[(int) $row['id_board']] = 'allow'; |
|
| 785 | + } |
|
| 765 | 786 | $smcFunc['db_free_result']($request); |
| 766 | 787 | } |
| 767 | 788 | |
| 768 | 789 | $changed_boards['allow'] = array(); |
| 769 | 790 | $changed_boards['deny'] = array(); |
| 770 | 791 | $changed_boards['ignore'] = array(); |
| 771 | - foreach ($accesses as $group_id => $action) |
|
| 772 | - $changed_boards[$action][] = (int) $group_id; |
|
| 792 | + foreach ($accesses as $group_id => $action) { |
|
| 793 | + $changed_boards[$action][] = (int) $group_id; |
|
| 794 | + } |
|
| 773 | 795 | |
| 774 | 796 | foreach (array('allow', 'deny') as $board_action) |
| 775 | 797 | { |
@@ -785,8 +807,8 @@ discard block |
||
| 785 | 807 | 'column' => $board_action == 'allow' ? 'member_groups' : 'deny_member_groups', |
| 786 | 808 | ) |
| 787 | 809 | ); |
| 788 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 789 | - $smcFunc['db_query']('', ' |
|
| 810 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 811 | + $smcFunc['db_query']('', ' |
|
| 790 | 812 | UPDATE {db_prefix}boards |
| 791 | 813 | SET {raw:column} = {string:member_group_access} |
| 792 | 814 | WHERE id_board = {int:current_board}', |
@@ -796,11 +818,12 @@ discard block |
||
| 796 | 818 | 'column' => $board_action == 'allow' ? 'member_groups' : 'deny_member_groups', |
| 797 | 819 | ) |
| 798 | 820 | ); |
| 821 | + } |
|
| 799 | 822 | $smcFunc['db_free_result']($request); |
| 800 | 823 | |
| 801 | 824 | // Add the membergroup to all boards that hadn't been set yet. |
| 802 | - if (!empty($changed_boards[$board_action])) |
|
| 803 | - $smcFunc['db_query']('', ' |
|
| 825 | + if (!empty($changed_boards[$board_action])) { |
|
| 826 | + $smcFunc['db_query']('', ' |
|
| 804 | 827 | UPDATE {db_prefix}boards |
| 805 | 828 | SET {raw:column} = CASE WHEN {raw:column} = {string:blank_string} THEN {string:group_id_string} ELSE CONCAT({raw:column}, {string:comma_group}) END |
| 806 | 829 | WHERE id_board IN ({array_int:board_list}) |
@@ -814,6 +837,7 @@ discard block |
||
| 814 | 837 | 'column' => $board_action == 'allow' ? 'member_groups' : 'deny_member_groups', |
| 815 | 838 | ) |
| 816 | 839 | ); |
| 840 | + } |
|
| 817 | 841 | } |
| 818 | 842 | } |
| 819 | 843 | |
@@ -839,12 +863,14 @@ discard block |
||
| 839 | 863 | ) |
| 840 | 864 | ); |
| 841 | 865 | $updates = array(); |
| 842 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 843 | - $updates[$row['additional_groups']][] = $row['id_member']; |
|
| 866 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 867 | + $updates[$row['additional_groups']][] = $row['id_member']; |
|
| 868 | + } |
|
| 844 | 869 | $smcFunc['db_free_result']($request); |
| 845 | 870 | |
| 846 | - foreach ($updates as $additional_groups => $memberArray) |
|
| 847 | - updateMemberData($memberArray, array('additional_groups' => implode(',', array_diff(explode(',', $additional_groups), array((int) $_REQUEST['group']))))); |
|
| 871 | + foreach ($updates as $additional_groups => $memberArray) { |
|
| 872 | + updateMemberData($memberArray, array('additional_groups' => implode(',', array_diff(explode(',', $additional_groups), array((int) $_REQUEST['group']))))); |
|
| 873 | + } |
|
| 848 | 874 | |
| 849 | 875 | // Sorry, but post groups can't moderate boards |
| 850 | 876 | $smcFunc['db_query']('', ' |
@@ -854,8 +880,7 @@ discard block |
||
| 854 | 880 | 'current_group' => (int) $_REQUEST['group'], |
| 855 | 881 | ) |
| 856 | 882 | ); |
| 857 | - } |
|
| 858 | - elseif ($_REQUEST['group'] != 3) |
|
| 883 | + } elseif ($_REQUEST['group'] != 3) |
|
| 859 | 884 | { |
| 860 | 885 | // Making it a hidden group? If so remove everyone with it as primary group (Actually, just make them additional). |
| 861 | 886 | if ($_POST['group_hidden'] == 2) |
@@ -870,8 +895,9 @@ discard block |
||
| 870 | 895 | ) |
| 871 | 896 | ); |
| 872 | 897 | $updates = array(); |
| 873 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 874 | - $updates[$row['additional_groups']][] = $row['id_member']; |
|
| 898 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 899 | + $updates[$row['additional_groups']][] = $row['id_member']; |
|
| 900 | + } |
|
| 875 | 901 | $smcFunc['db_free_result']($request); |
| 876 | 902 | |
| 877 | 903 | foreach ($updates as $additional_groups => $memberArray) |
@@ -913,8 +939,9 @@ discard block |
||
| 913 | 939 | $smcFunc['db_free_result']($request); |
| 914 | 940 | |
| 915 | 941 | // Do we need to update the setting? |
| 916 | - if ((empty($modSettings['show_group_membership']) && $have_joinable) || (!empty($modSettings['show_group_membership']) && !$have_joinable)) |
|
| 917 | - updateSettings(array('show_group_membership' => $have_joinable ? 1 : 0)); |
|
| 942 | + if ((empty($modSettings['show_group_membership']) && $have_joinable) || (!empty($modSettings['show_group_membership']) && !$have_joinable)) { |
|
| 943 | + updateSettings(array('show_group_membership' => $have_joinable ? 1 : 0)); |
|
| 944 | + } |
|
| 918 | 945 | } |
| 919 | 946 | |
| 920 | 947 | // Do we need to set inherited permissions? |
@@ -947,8 +974,9 @@ discard block |
||
| 947 | 974 | { |
| 948 | 975 | $moderators[$k] = trim($moderators[$k]); |
| 949 | 976 | |
| 950 | - if (strlen($moderators[$k]) == 0) |
|
| 951 | - unset($moderators[$k]); |
|
| 977 | + if (strlen($moderators[$k]) == 0) { |
|
| 978 | + unset($moderators[$k]); |
|
| 979 | + } |
|
| 952 | 980 | } |
| 953 | 981 | |
| 954 | 982 | // Find all the id_member's for the member_name's in the list. |
@@ -964,8 +992,9 @@ discard block |
||
| 964 | 992 | 'count' => count($moderators), |
| 965 | 993 | ) |
| 966 | 994 | ); |
| 967 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 968 | - $group_moderators[] = $row['id_member']; |
|
| 995 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 996 | + $group_moderators[] = $row['id_member']; |
|
| 997 | + } |
|
| 969 | 998 | $smcFunc['db_free_result']($request); |
| 970 | 999 | } |
| 971 | 1000 | } |
@@ -973,8 +1002,9 @@ discard block |
||
| 973 | 1002 | if (!empty($_POST['moderator_list'])) |
| 974 | 1003 | { |
| 975 | 1004 | $moderators = array(); |
| 976 | - foreach ($_POST['moderator_list'] as $moderator) |
|
| 977 | - $moderators[] = (int) $moderator; |
|
| 1005 | + foreach ($_POST['moderator_list'] as $moderator) { |
|
| 1006 | + $moderators[] = (int) $moderator; |
|
| 1007 | + } |
|
| 978 | 1008 | |
| 979 | 1009 | if (!empty($moderators)) |
| 980 | 1010 | { |
@@ -988,8 +1018,9 @@ discard block |
||
| 988 | 1018 | 'num_moderators' => count($moderators), |
| 989 | 1019 | ) |
| 990 | 1020 | ); |
| 991 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 992 | - $group_moderators[] = $row['id_member']; |
|
| 1021 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1022 | + $group_moderators[] = $row['id_member']; |
|
| 1023 | + } |
|
| 993 | 1024 | $smcFunc['db_free_result']($request); |
| 994 | 1025 | } |
| 995 | 1026 | } |
@@ -1001,8 +1032,9 @@ discard block |
||
| 1001 | 1032 | if (!empty($group_moderators)) |
| 1002 | 1033 | { |
| 1003 | 1034 | $mod_insert = array(); |
| 1004 | - foreach ($group_moderators as $moderator) |
|
| 1005 | - $mod_insert[] = array($_REQUEST['group'], $moderator); |
|
| 1035 | + foreach ($group_moderators as $moderator) { |
|
| 1036 | + $mod_insert[] = array($_REQUEST['group'], $moderator); |
|
| 1037 | + } |
|
| 1006 | 1038 | |
| 1007 | 1039 | $smcFunc['db_insert']('insert', |
| 1008 | 1040 | '{db_prefix}group_moderators', |
@@ -1036,8 +1068,9 @@ discard block |
||
| 1036 | 1068 | 'current_group' => (int) $_REQUEST['group'], |
| 1037 | 1069 | ) |
| 1038 | 1070 | ); |
| 1039 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
| 1040 | - fatal_lang_error('membergroup_does_not_exist', false); |
|
| 1071 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
| 1072 | + fatal_lang_error('membergroup_does_not_exist', false); |
|
| 1073 | + } |
|
| 1041 | 1074 | $row = $smcFunc['db_fetch_assoc']($request); |
| 1042 | 1075 | $smcFunc['db_free_result']($request); |
| 1043 | 1076 | |
@@ -1074,14 +1107,16 @@ discard block |
||
| 1074 | 1107 | ) |
| 1075 | 1108 | ); |
| 1076 | 1109 | $context['group']['moderators'] = array(); |
| 1077 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1078 | - $context['group']['moderators'][$row['id_member']] = $row['real_name']; |
|
| 1110 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1111 | + $context['group']['moderators'][$row['id_member']] = $row['real_name']; |
|
| 1112 | + } |
|
| 1079 | 1113 | $smcFunc['db_free_result']($request); |
| 1080 | 1114 | |
| 1081 | 1115 | $context['group']['moderator_list'] = empty($context['group']['moderators']) ? '' : '"' . implode('", "', $context['group']['moderators']) . '"'; |
| 1082 | 1116 | |
| 1083 | - if (!empty($context['group']['moderators'])) |
|
| 1084 | - list ($context['group']['last_moderator_id']) = array_slice(array_keys($context['group']['moderators']), -1); |
|
| 1117 | + if (!empty($context['group']['moderators'])) { |
|
| 1118 | + list ($context['group']['last_moderator_id']) = array_slice(array_keys($context['group']['moderators']), -1); |
|
| 1119 | + } |
|
| 1085 | 1120 | |
| 1086 | 1121 | // Get a list of boards this membergroup is allowed to see. |
| 1087 | 1122 | $context['boards'] = array(); |
@@ -1101,12 +1136,13 @@ discard block |
||
| 1101 | 1136 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 1102 | 1137 | { |
| 1103 | 1138 | // This category hasn't been set up yet.. |
| 1104 | - if (!isset($context['categories'][$row['id_cat']])) |
|
| 1105 | - $context['categories'][$row['id_cat']] = array( |
|
| 1139 | + if (!isset($context['categories'][$row['id_cat']])) { |
|
| 1140 | + $context['categories'][$row['id_cat']] = array( |
|
| 1106 | 1141 | 'id' => $row['id_cat'], |
| 1107 | 1142 | 'name' => $row['cat_name'], |
| 1108 | 1143 | 'boards' => array() |
| 1109 | 1144 | ); |
| 1145 | + } |
|
| 1110 | 1146 | |
| 1111 | 1147 | // Set this board up, and let the template know when it's a child. (indent them..) |
| 1112 | 1148 | $context['categories'][$row['id_cat']]['boards'][$row['id_board']] = array( |
@@ -1154,19 +1190,22 @@ discard block |
||
| 1154 | 1190 | $image_info = getimagesize($settings['default_theme_dir'] . '/images/membericons/' . $value); |
| 1155 | 1191 | |
| 1156 | 1192 | // If this is bigger than 128 in width or 32 in height, skip this one. |
| 1157 | - if ($image_info == false || $image_info[0] > 128 || $image_info[1] > 32) |
|
| 1158 | - continue; |
|
| 1193 | + if ($image_info == false || $image_info[0] > 128 || $image_info[1] > 32) { |
|
| 1194 | + continue; |
|
| 1195 | + } |
|
| 1159 | 1196 | |
| 1160 | 1197 | // Else it's valid. Add it in. |
| 1161 | - else |
|
| 1162 | - $context['possible_icons'][] = $value; |
|
| 1198 | + else { |
|
| 1199 | + $context['possible_icons'][] = $value; |
|
| 1200 | + } |
|
| 1163 | 1201 | } |
| 1164 | 1202 | } |
| 1165 | 1203 | } |
| 1166 | 1204 | |
| 1167 | 1205 | // Insert our JS, if we have possible icons. |
| 1168 | - if (!empty($context['possible_icons'])) |
|
| 1169 | - loadJavaScriptFile('icondropdown.js', array('validate' => true), 'smf_icondropdown'); |
|
| 1206 | + if (!empty($context['possible_icons'])) { |
|
| 1207 | + loadJavaScriptFile('icondropdown.js', array('validate' => true), 'smf_icondropdown'); |
|
| 1208 | + } |
|
| 1170 | 1209 | |
| 1171 | 1210 | loadJavaScriptFile('suggest.js', array('defer' => false), 'smf_suggest'); |
| 1172 | 1211 | |
@@ -1188,8 +1227,9 @@ discard block |
||
| 1188 | 1227 | ) |
| 1189 | 1228 | ); |
| 1190 | 1229 | $context['inheritable_groups'] = array(); |
| 1191 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1192 | - $context['inheritable_groups'][$row['id_group']] = $row['group_name']; |
|
| 1230 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1231 | + $context['inheritable_groups'][$row['id_group']] = $row['group_name']; |
|
| 1232 | + } |
|
| 1193 | 1233 | $smcFunc['db_free_result']($request); |
| 1194 | 1234 | |
| 1195 | 1235 | call_integration_hook('integrate_view_membergroup'); |