@@ -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 | * Format a topic to be printer friendly. |
@@ -32,8 +33,9 @@ discard block |
||
| 32 | 33 | global $board_info, $smcFunc, $modSettings; |
| 33 | 34 | |
| 34 | 35 | // Redirect to the boardindex if no valid topic id is provided. |
| 35 | - if (empty($topic)) |
|
| 36 | - redirectexit(); |
|
| 36 | + if (empty($topic)) { |
|
| 37 | + redirectexit(); |
|
| 38 | + } |
|
| 37 | 39 | |
| 38 | 40 | if (!empty($modSettings['disable_print_topic'])) |
| 39 | 41 | { |
@@ -59,8 +61,9 @@ discard block |
||
| 59 | 61 | ) |
| 60 | 62 | ); |
| 61 | 63 | // Redirect to the boardindex if no valid topic id is provided. |
| 62 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
| 63 | - redirectexit(); |
|
| 64 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
| 65 | + redirectexit(); |
|
| 66 | + } |
|
| 64 | 67 | $row = $smcFunc['db_fetch_assoc']($request); |
| 65 | 68 | $smcFunc['db_free_result']($request); |
| 66 | 69 | |
@@ -134,20 +137,21 @@ discard block |
||
| 134 | 137 | foreach ($guestinfo as $i => $guestvoted) |
| 135 | 138 | { |
| 136 | 139 | $guestvoted = explode(',', $guestvoted); |
| 137 | - if ($guestvoted[0] == $row['id_poll']) |
|
| 138 | - break; |
|
| 140 | + if ($guestvoted[0] == $row['id_poll']) { |
|
| 141 | + break; |
|
| 142 | + } |
|
| 139 | 143 | } |
| 140 | 144 | // Has the poll been reset since guest voted? |
| 141 | 145 | if ($pollinfo['reset_poll'] > $guestvoted[1]) |
| 142 | 146 | { |
| 143 | 147 | // Remove the poll info from the cookie to allow guest to vote again |
| 144 | 148 | unset($guestinfo[$i]); |
| 145 | - if (!empty($guestinfo)) |
|
| 146 | - $_COOKIE['guest_poll_vote'] = ';' . implode(';', $guestinfo); |
|
| 147 | - else |
|
| 148 | - unset($_COOKIE['guest_poll_vote']); |
|
| 149 | - } |
|
| 150 | - else |
|
| 149 | + if (!empty($guestinfo)) { |
|
| 150 | + $_COOKIE['guest_poll_vote'] = ';' . implode(';', $guestinfo); |
|
| 151 | + } else { |
|
| 152 | + unset($_COOKIE['guest_poll_vote']); |
|
| 153 | + } |
|
| 154 | + } else |
|
| 151 | 155 | { |
| 152 | 156 | // What did they vote for? |
| 153 | 157 | unset($guestvoted[0], $guestvoted[1]); |
@@ -233,8 +237,9 @@ discard block |
||
| 233 | 237 | $context['poster_name'] = $row['poster_name']; |
| 234 | 238 | $context['post_time'] = timeformat($row['poster_time'], false); |
| 235 | 239 | $context['parent_boards'] = array(); |
| 236 | - foreach ($board_info['parent_boards'] as $parent) |
|
| 237 | - $context['parent_boards'][] = $parent['name']; |
|
| 240 | + foreach ($board_info['parent_boards'] as $parent) { |
|
| 241 | + $context['parent_boards'][] = $parent['name']; |
|
| 242 | + } |
|
| 238 | 243 | |
| 239 | 244 | // Split the topics up so we can print them. |
| 240 | 245 | $request = $smcFunc['db_query']('', ' |
@@ -266,8 +271,9 @@ discard block |
||
| 266 | 271 | 'id_msg' => $row['id_msg'], |
| 267 | 272 | ); |
| 268 | 273 | |
| 269 | - if (!isset($context['topic_subject'])) |
|
| 270 | - $context['topic_subject'] = $row['subject']; |
|
| 274 | + if (!isset($context['topic_subject'])) { |
|
| 275 | + $context['topic_subject'] = $row['subject']; |
|
| 276 | + } |
|
| 271 | 277 | } |
| 272 | 278 | $smcFunc['db_free_result']($request); |
| 273 | 279 | |
@@ -275,8 +281,9 @@ discard block |
||
| 275 | 281 | if (isset($_REQUEST['images']) && !empty($modSettings['attachmentEnable']) && allowedTo('view_attachments')) |
| 276 | 282 | { |
| 277 | 283 | $messages = array(); |
| 278 | - foreach ($context['posts'] as $temp) |
|
| 279 | - $messages[] = $temp['id_msg']; |
|
| 284 | + foreach ($context['posts'] as $temp) { |
|
| 285 | + $messages[] = $temp['id_msg']; |
|
| 286 | + } |
|
| 280 | 287 | |
| 281 | 288 | // build the request |
| 282 | 289 | $request = $smcFunc['db_query']('', ' |
@@ -295,8 +302,9 @@ discard block |
||
| 295 | 302 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 296 | 303 | { |
| 297 | 304 | $temp[$row['id_attach']] = $row; |
| 298 | - if (!isset($context['printattach'][$row['id_msg']])) |
|
| 299 | - $context['printattach'][$row['id_msg']] = array(); |
|
| 305 | + if (!isset($context['printattach'][$row['id_msg']])) { |
|
| 306 | + $context['printattach'][$row['id_msg']] = array(); |
|
| 307 | + } |
|
| 300 | 308 | } |
| 301 | 309 | $smcFunc['db_free_result']($request); |
| 302 | 310 | ksort($temp); |
@@ -313,8 +321,7 @@ discard block |
||
| 313 | 321 | $row['height'] = floor($row['height'] * ($modSettings['max_image_width'] / $row['width'])); |
| 314 | 322 | $row['width'] = $modSettings['max_image_width']; |
| 315 | 323 | } |
| 316 | - } |
|
| 317 | - elseif (!empty($modSettings['max_image_width'])) |
|
| 324 | + } elseif (!empty($modSettings['max_image_width'])) |
|
| 318 | 325 | { |
| 319 | 326 | if ($row['height'] > $modSettings['max_image_height']) |
| 320 | 327 | { |
@@ -14,8 +14,9 @@ discard block |
||
| 14 | 14 | * @version 2.1 Beta 4 |
| 15 | 15 | */ |
| 16 | 16 | |
| 17 | -if (!defined('SMF')) |
|
| 17 | +if (!defined('SMF')) { |
|
| 18 | 18 | die('No direct access...'); |
| 19 | +} |
|
| 19 | 20 | |
| 20 | 21 | /** |
| 21 | 22 | * This function allows to move a topic, making sure to ask the moderator |
@@ -32,8 +33,9 @@ discard block |
||
| 32 | 33 | { |
| 33 | 34 | global $txt, $board, $topic, $user_info, $context, $language, $scripturl, $smcFunc, $modSettings, $sourcedir; |
| 34 | 35 | |
| 35 | - if (empty($topic)) |
|
| 36 | - fatal_lang_error('no_access', false); |
|
| 36 | + if (empty($topic)) { |
|
| 37 | + fatal_lang_error('no_access', false); |
|
| 38 | + } |
|
| 37 | 39 | |
| 38 | 40 | $request = $smcFunc['db_query']('', ' |
| 39 | 41 | SELECT t.id_member_started, ms.subject, t.approved |
@@ -49,8 +51,9 @@ discard block |
||
| 49 | 51 | $smcFunc['db_free_result']($request); |
| 50 | 52 | |
| 51 | 53 | // Can they see it - if not approved? |
| 52 | - if ($modSettings['postmod_active'] && !$context['is_approved']) |
|
| 53 | - isAllowedTo('approve_posts'); |
|
| 54 | + if ($modSettings['postmod_active'] && !$context['is_approved']) { |
|
| 55 | + isAllowedTo('approve_posts'); |
|
| 56 | + } |
|
| 54 | 57 | |
| 55 | 58 | // Permission check! |
| 56 | 59 | // @todo |
@@ -59,9 +62,9 @@ discard block |
||
| 59 | 62 | if ($id_member_started == $user_info['id']) |
| 60 | 63 | { |
| 61 | 64 | isAllowedTo('move_own'); |
| 65 | + } else { |
|
| 66 | + isAllowedTo('move_any'); |
|
| 62 | 67 | } |
| 63 | - else |
|
| 64 | - isAllowedTo('move_any'); |
|
| 65 | 68 | } |
| 66 | 69 | |
| 67 | 70 | $context['move_any'] = $user_info['is_admin'] || $modSettings['topic_move_any']; |
@@ -83,11 +86,13 @@ discard block |
||
| 83 | 86 | 'not_redirection' => true, |
| 84 | 87 | ); |
| 85 | 88 | |
| 86 | - if (!empty($_SESSION['move_to_topic']) && $_SESSION['move_to_topic'] != $board) |
|
| 87 | - $options['selected_board'] = $_SESSION['move_to_topic']; |
|
| 89 | + if (!empty($_SESSION['move_to_topic']) && $_SESSION['move_to_topic'] != $board) { |
|
| 90 | + $options['selected_board'] = $_SESSION['move_to_topic']; |
|
| 91 | + } |
|
| 88 | 92 | |
| 89 | - if (!$context['move_any']) |
|
| 90 | - $options['included_boards'] = $boards; |
|
| 93 | + if (!$context['move_any']) { |
|
| 94 | + $options['included_boards'] = $boards; |
|
| 95 | + } |
|
| 91 | 96 | |
| 92 | 97 | require_once($sourcedir . '/Subs-MessageIndex.php'); |
| 93 | 98 | $context['categories'] = getBoardList($options); |
@@ -138,12 +143,14 @@ discard block |
||
| 138 | 143 | global $txt, $topic, $scripturl, $sourcedir, $context; |
| 139 | 144 | global $board, $language, $user_info, $smcFunc; |
| 140 | 145 | |
| 141 | - if (empty($topic)) |
|
| 142 | - fatal_lang_error('no_access', false); |
|
| 146 | + if (empty($topic)) { |
|
| 147 | + fatal_lang_error('no_access', false); |
|
| 148 | + } |
|
| 143 | 149 | |
| 144 | 150 | // You can't choose to have a redirection topic and use an empty reason. |
| 145 | - if (isset($_POST['postRedirect']) && (!isset($_POST['reason']) || trim($_POST['reason']) == '')) |
|
| 146 | - fatal_lang_error('movetopic_no_reason', false); |
|
| 151 | + if (isset($_POST['postRedirect']) && (!isset($_POST['reason']) || trim($_POST['reason']) == '')) { |
|
| 152 | + fatal_lang_error('movetopic_no_reason', false); |
|
| 153 | + } |
|
| 147 | 154 | |
| 148 | 155 | moveTopicConcurrence(); |
| 149 | 156 | |
@@ -163,16 +170,18 @@ discard block |
||
| 163 | 170 | $smcFunc['db_free_result']($request); |
| 164 | 171 | |
| 165 | 172 | // Can they see it? |
| 166 | - if (!$context['is_approved']) |
|
| 167 | - isAllowedTo('approve_posts'); |
|
| 173 | + if (!$context['is_approved']) { |
|
| 174 | + isAllowedTo('approve_posts'); |
|
| 175 | + } |
|
| 168 | 176 | |
| 169 | 177 | // Can they move topics on this board? |
| 170 | 178 | if (!allowedTo('move_any')) |
| 171 | 179 | { |
| 172 | - if ($id_member_started == $user_info['id']) |
|
| 173 | - isAllowedTo('move_own'); |
|
| 174 | - else |
|
| 175 | - isAllowedTo('move_any'); |
|
| 180 | + if ($id_member_started == $user_info['id']) { |
|
| 181 | + isAllowedTo('move_own'); |
|
| 182 | + } else { |
|
| 183 | + isAllowedTo('move_any'); |
|
| 184 | + } |
|
| 176 | 185 | } |
| 177 | 186 | |
| 178 | 187 | checkSession(); |
@@ -197,8 +206,9 @@ discard block |
||
| 197 | 206 | 'blank_redirect' => '', |
| 198 | 207 | ) |
| 199 | 208 | ); |
| 200 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
| 201 | - fatal_lang_error('no_board'); |
|
| 209 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
| 210 | + fatal_lang_error('no_board'); |
|
| 211 | + } |
|
| 202 | 212 | list ($pcounter, $board_name, $subject) = $smcFunc['db_fetch_row']($request); |
| 203 | 213 | $smcFunc['db_free_result']($request); |
| 204 | 214 | |
@@ -210,8 +220,9 @@ discard block |
||
| 210 | 220 | { |
| 211 | 221 | $_POST['custom_subject'] = strtr($smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_POST['custom_subject'])), array("\r" => '', "\n" => '', "\t" => '')); |
| 212 | 222 | // Keep checking the length. |
| 213 | - if ($smcFunc['strlen']($_POST['custom_subject']) > 100) |
|
| 214 | - $_POST['custom_subject'] = $smcFunc['substr']($_POST['custom_subject'], 0, 100); |
|
| 223 | + if ($smcFunc['strlen']($_POST['custom_subject']) > 100) { |
|
| 224 | + $_POST['custom_subject'] = $smcFunc['substr']($_POST['custom_subject'], 0, 100); |
|
| 225 | + } |
|
| 215 | 226 | |
| 216 | 227 | // If it's still valid move onwards and upwards. |
| 217 | 228 | if ($_POST['custom_subject'] != '') |
@@ -221,9 +232,9 @@ discard block |
||
| 221 | 232 | // Get a response prefix, but in the forum's default language. |
| 222 | 233 | if (!isset($context['response_prefix']) && !($context['response_prefix'] = cache_get_data('response_prefix'))) |
| 223 | 234 | { |
| 224 | - if ($language === $user_info['language']) |
|
| 225 | - $context['response_prefix'] = $txt['response_prefix']; |
|
| 226 | - else |
|
| 235 | + if ($language === $user_info['language']) { |
|
| 236 | + $context['response_prefix'] = $txt['response_prefix']; |
|
| 237 | + } else |
|
| 227 | 238 | { |
| 228 | 239 | loadLanguage('index', $language, false); |
| 229 | 240 | $context['response_prefix'] = $txt['response_prefix']; |
@@ -263,8 +274,9 @@ discard block |
||
| 263 | 274 | if (isset($_POST['postRedirect'])) |
| 264 | 275 | { |
| 265 | 276 | // Should be in the boardwide language. |
| 266 | - if ($user_info['language'] != $language) |
|
| 267 | - loadLanguage('index', $language); |
|
| 277 | + if ($user_info['language'] != $language) { |
|
| 278 | + loadLanguage('index', $language); |
|
| 279 | + } |
|
| 268 | 280 | |
| 269 | 281 | $_POST['reason'] = $smcFunc['htmlspecialchars']($_POST['reason'], ENT_QUOTES); |
| 270 | 282 | preparsecode($_POST['reason']); |
@@ -328,8 +340,9 @@ discard block |
||
| 328 | 340 | $posters = array(); |
| 329 | 341 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 330 | 342 | { |
| 331 | - if (!isset($posters[$row['id_member']])) |
|
| 332 | - $posters[$row['id_member']] = 0; |
|
| 343 | + if (!isset($posters[$row['id_member']])) { |
|
| 344 | + $posters[$row['id_member']] = 0; |
|
| 345 | + } |
|
| 333 | 346 | |
| 334 | 347 | $posters[$row['id_member']]++; |
| 335 | 348 | } |
@@ -338,11 +351,13 @@ discard block |
||
| 338 | 351 | foreach ($posters as $id_member => $posts) |
| 339 | 352 | { |
| 340 | 353 | // The board we're moving from counted posts, but not to. |
| 341 | - if (empty($pcounter_from)) |
|
| 342 | - updateMemberData($id_member, array('posts' => 'posts - ' . $posts)); |
|
| 354 | + if (empty($pcounter_from)) { |
|
| 355 | + updateMemberData($id_member, array('posts' => 'posts - ' . $posts)); |
|
| 356 | + } |
|
| 343 | 357 | // The reverse: from didn't, to did. |
| 344 | - else |
|
| 345 | - updateMemberData($id_member, array('posts' => 'posts + ' . $posts)); |
|
| 358 | + else { |
|
| 359 | + updateMemberData($id_member, array('posts' => 'posts + ' . $posts)); |
|
| 360 | + } |
|
| 346 | 361 | } |
| 347 | 362 | } |
| 348 | 363 | |
@@ -350,17 +365,19 @@ discard block |
||
| 350 | 365 | moveTopics($topic, $_POST['toboard']); |
| 351 | 366 | |
| 352 | 367 | // Log that they moved this topic. |
| 353 | - if (!allowedTo('move_own') || $id_member_started != $user_info['id']) |
|
| 354 | - logAction('move', array('topic' => $topic, 'board_from' => $board, 'board_to' => $_POST['toboard'])); |
|
| 368 | + if (!allowedTo('move_own') || $id_member_started != $user_info['id']) { |
|
| 369 | + logAction('move', array('topic' => $topic, 'board_from' => $board, 'board_to' => $_POST['toboard'])); |
|
| 370 | + } |
|
| 355 | 371 | // Notify people that this topic has been moved? |
| 356 | 372 | sendNotifications($topic, 'move'); |
| 357 | 373 | |
| 358 | 374 | // Why not go back to the original board in case they want to keep moving? |
| 359 | - if (!isset($_REQUEST['goback'])) |
|
| 360 | - redirectexit('board=' . $board . '.0'); |
|
| 361 | - else |
|
| 362 | - redirectexit('topic=' . $topic . '.0'); |
|
| 363 | -} |
|
| 375 | + if (!isset($_REQUEST['goback'])) { |
|
| 376 | + redirectexit('board=' . $board . '.0'); |
|
| 377 | + } else { |
|
| 378 | + redirectexit('topic=' . $topic . '.0'); |
|
| 379 | + } |
|
| 380 | + } |
|
| 364 | 381 | |
| 365 | 382 | /** |
| 366 | 383 | * Moves one or more topics to a specific board. (doesn't check permissions.) |
@@ -376,18 +393,21 @@ discard block |
||
| 376 | 393 | global $sourcedir, $user_info, $modSettings, $smcFunc; |
| 377 | 394 | |
| 378 | 395 | // Empty array? |
| 379 | - if (empty($topics)) |
|
| 380 | - return; |
|
| 396 | + if (empty($topics)) { |
|
| 397 | + return; |
|
| 398 | + } |
|
| 381 | 399 | |
| 382 | 400 | // Only a single topic. |
| 383 | - if (is_numeric($topics)) |
|
| 384 | - $topics = array($topics); |
|
| 401 | + if (is_numeric($topics)) { |
|
| 402 | + $topics = array($topics); |
|
| 403 | + } |
|
| 385 | 404 | |
| 386 | 405 | $fromBoards = array(); |
| 387 | 406 | |
| 388 | 407 | // Destination board empty or equal to 0? |
| 389 | - if (empty($toBoard)) |
|
| 390 | - return; |
|
| 408 | + if (empty($toBoard)) { |
|
| 409 | + return; |
|
| 410 | + } |
|
| 391 | 411 | |
| 392 | 412 | // Are we moving to the recycle board? |
| 393 | 413 | $isRecycleDest = !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] == $toBoard; |
@@ -395,8 +415,9 @@ discard block |
||
| 395 | 415 | // Callback for search APIs to do their thing |
| 396 | 416 | require_once($sourcedir . '/Search.php'); |
| 397 | 417 | $searchAPI = findSearchAPI(); |
| 398 | - if ($searchAPI->supportsMethod('topicsMoved')) |
|
| 399 | - $searchAPI->topicsMoved($topics, $toBoard); |
|
| 418 | + if ($searchAPI->supportsMethod('topicsMoved')) { |
|
| 419 | + $searchAPI->topicsMoved($topics, $toBoard); |
|
| 420 | + } |
|
| 400 | 421 | |
| 401 | 422 | // Determine the source boards... |
| 402 | 423 | $request = $smcFunc['db_query']('', ' |
@@ -410,8 +431,9 @@ discard block |
||
| 410 | 431 | ) |
| 411 | 432 | ); |
| 412 | 433 | // Num of rows = 0 -> no topics found. Num of rows > 1 -> topics are on multiple boards. |
| 413 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
| 414 | - return; |
|
| 434 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
| 435 | + return; |
|
| 436 | + } |
|
| 415 | 437 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 416 | 438 | { |
| 417 | 439 | if (!isset($fromBoards[$row['id_board']]['num_posts'])) |
@@ -429,10 +451,11 @@ discard block |
||
| 429 | 451 | $fromBoards[$row['id_board']]['unapproved_posts'] += $row['unapproved_posts']; |
| 430 | 452 | |
| 431 | 453 | // Add the topics to the right type. |
| 432 | - if ($row['approved']) |
|
| 433 | - $fromBoards[$row['id_board']]['num_topics'] += $row['num_topics']; |
|
| 434 | - else |
|
| 435 | - $fromBoards[$row['id_board']]['unapproved_topics'] += $row['num_topics']; |
|
| 454 | + if ($row['approved']) { |
|
| 455 | + $fromBoards[$row['id_board']]['num_topics'] += $row['num_topics']; |
|
| 456 | + } else { |
|
| 457 | + $fromBoards[$row['id_board']]['unapproved_topics'] += $row['num_topics']; |
|
| 458 | + } |
|
| 436 | 459 | } |
| 437 | 460 | $smcFunc['db_free_result']($request); |
| 438 | 461 | |
@@ -558,13 +581,14 @@ discard block |
||
| 558 | 581 | ) |
| 559 | 582 | ); |
| 560 | 583 | $approval_msgs = array(); |
| 561 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 562 | - $approval_msgs[] = $row['id_msg']; |
|
| 584 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 585 | + $approval_msgs[] = $row['id_msg']; |
|
| 586 | + } |
|
| 563 | 587 | $smcFunc['db_free_result']($request); |
| 564 | 588 | |
| 565 | 589 | // Empty the approval queue for these, as we're going to approve them next. |
| 566 | - if (!empty($approval_msgs)) |
|
| 567 | - $smcFunc['db_query']('', ' |
|
| 590 | + if (!empty($approval_msgs)) { |
|
| 591 | + $smcFunc['db_query']('', ' |
|
| 568 | 592 | DELETE FROM {db_prefix}approval_queue |
| 569 | 593 | WHERE id_msg IN ({array_int:message_list}) |
| 570 | 594 | AND id_attach = {int:id_attach}', |
@@ -573,6 +597,7 @@ discard block |
||
| 573 | 597 | 'id_attach' => 0, |
| 574 | 598 | ) |
| 575 | 599 | ); |
| 600 | + } |
|
| 576 | 601 | |
| 577 | 602 | // Get all the current max and mins. |
| 578 | 603 | $request = $smcFunc['db_query']('', ' |
@@ -606,8 +631,8 @@ discard block |
||
| 606 | 631 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 607 | 632 | { |
| 608 | 633 | // If not, update. |
| 609 | - if ($row['first_msg'] != $topicMaxMin[$row['id_topic']]['min'] || $row['last_msg'] != $topicMaxMin[$row['id_topic']]['max']) |
|
| 610 | - $smcFunc['db_query']('', ' |
|
| 634 | + if ($row['first_msg'] != $topicMaxMin[$row['id_topic']]['min'] || $row['last_msg'] != $topicMaxMin[$row['id_topic']]['max']) { |
|
| 635 | + $smcFunc['db_query']('', ' |
|
| 611 | 636 | UPDATE {db_prefix}topics |
| 612 | 637 | SET id_first_msg = {int:first_msg}, id_last_msg = {int:last_msg} |
| 613 | 638 | WHERE id_topic = {int:selected_topic}', |
@@ -617,6 +642,7 @@ discard block |
||
| 617 | 642 | 'selected_topic' => $row['id_topic'], |
| 618 | 643 | ) |
| 619 | 644 | ); |
| 645 | + } |
|
| 620 | 646 | } |
| 621 | 647 | $smcFunc['db_free_result']($request); |
| 622 | 648 | } |
@@ -675,9 +701,10 @@ discard block |
||
| 675 | 701 | } |
| 676 | 702 | |
| 677 | 703 | // Update the cache? |
| 678 | - if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 3) |
|
| 679 | - foreach ($topics as $topic_id) |
|
| 704 | + if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 3) { |
|
| 705 | + foreach ($topics as $topic_id) |
|
| 680 | 706 | cache_put_data('topic_board-' . $topic_id, null, 120); |
| 707 | + } |
|
| 681 | 708 | |
| 682 | 709 | require_once($sourcedir . '/Subs-Post.php'); |
| 683 | 710 | |
@@ -701,15 +728,17 @@ discard block |
||
| 701 | 728 | { |
| 702 | 729 | global $board, $topic, $smcFunc, $scripturl; |
| 703 | 730 | |
| 704 | - if (isset($_GET['current_board'])) |
|
| 705 | - $move_from = (int) $_GET['current_board']; |
|
| 731 | + if (isset($_GET['current_board'])) { |
|
| 732 | + $move_from = (int) $_GET['current_board']; |
|
| 733 | + } |
|
| 706 | 734 | |
| 707 | - if (empty($move_from) || empty($board) || empty($topic)) |
|
| 708 | - return true; |
|
| 735 | + if (empty($move_from) || empty($board) || empty($topic)) { |
|
| 736 | + return true; |
|
| 737 | + } |
|
| 709 | 738 | |
| 710 | - if ($move_from == $board) |
|
| 711 | - return true; |
|
| 712 | - else |
|
| 739 | + if ($move_from == $board) { |
|
| 740 | + return true; |
|
| 741 | + } else |
|
| 713 | 742 | { |
| 714 | 743 | $request = $smcFunc['db_query']('', ' |
| 715 | 744 | SELECT m.subject, b.name |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | 'value' => $txt['date'], |
| 137 | 137 | ), |
| 138 | 138 | 'data' => array( |
| 139 | - 'function' => function ($rowData) use ($txt) |
|
| 139 | + 'function' => function($rowData) use ($txt) |
|
| 140 | 140 | { |
| 141 | 141 | // Recurring every year or just a single year? |
| 142 | 142 | $year = $rowData['year'] == '1004' ? sprintf('(%1$s)', $txt['every_year']) : $rowData['year']; |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | checkSession(); |
| 219 | 219 | |
| 220 | 220 | // Not too long good sir? |
| 221 | - $_REQUEST['title'] = $smcFunc['substr']($_REQUEST['title'], 0, 60); |
|
| 221 | + $_REQUEST['title'] = $smcFunc['substr']($_REQUEST['title'], 0, 60); |
|
| 222 | 222 | $_REQUEST['holiday'] = isset($_REQUEST['holiday']) ? (int) $_REQUEST['holiday'] : 0; |
| 223 | 223 | |
| 224 | 224 | if (isset($_REQUEST['delete'])) |
@@ -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 controlling function doesn't have much to do... yet. |
@@ -43,8 +44,7 @@ discard block |
||
| 43 | 44 | 'settings' => 'ModifyCalendarSettings' |
| 44 | 45 | ); |
| 45 | 46 | $default = 'holidays'; |
| 46 | - } |
|
| 47 | - else |
|
| 47 | + } else |
|
| 48 | 48 | { |
| 49 | 49 | $subActions = array( |
| 50 | 50 | 'settings' => 'ModifyCalendarSettings' |
@@ -60,8 +60,8 @@ discard block |
||
| 60 | 60 | 'help' => 'calendar', |
| 61 | 61 | 'description' => $txt['calendar_settings_desc'], |
| 62 | 62 | ); |
| 63 | - if (!empty($modSettings['cal_enabled'])) |
|
| 64 | - $context[$context['admin_menu_name']]['tab_data']['tabs'] = array( |
|
| 63 | + if (!empty($modSettings['cal_enabled'])) { |
|
| 64 | + $context[$context['admin_menu_name']]['tab_data']['tabs'] = array( |
|
| 65 | 65 | 'holidays' => array( |
| 66 | 66 | 'description' => $txt['manage_holidays_desc'], |
| 67 | 67 | ), |
@@ -69,6 +69,7 @@ discard block |
||
| 69 | 69 | 'description' => $txt['calendar_settings_desc'], |
| 70 | 70 | ), |
| 71 | 71 | ); |
| 72 | + } |
|
| 72 | 73 | |
| 73 | 74 | call_integration_hook('integrate_manage_calendar', array(&$subActions)); |
| 74 | 75 | |
@@ -88,8 +89,9 @@ discard block |
||
| 88 | 89 | checkSession(); |
| 89 | 90 | validateToken('admin-mc'); |
| 90 | 91 | |
| 91 | - foreach ($_REQUEST['holiday'] as $id => $value) |
|
| 92 | - $_REQUEST['holiday'][$id] = (int) $id; |
|
| 92 | + foreach ($_REQUEST['holiday'] as $id => $value) { |
|
| 93 | + $_REQUEST['holiday'][$id] = (int) $id; |
|
| 94 | + } |
|
| 93 | 95 | |
| 94 | 96 | // Now the IDs are "safe" do the delete... |
| 95 | 97 | require_once($sourcedir . '/Subs-Calendar.php'); |
@@ -209,8 +211,9 @@ discard block |
||
| 209 | 211 | $context['sub_template'] = 'edit_holiday'; |
| 210 | 212 | |
| 211 | 213 | // Cast this for safety... |
| 212 | - if (isset($_REQUEST['holiday'])) |
|
| 213 | - $_REQUEST['holiday'] = (int) $_REQUEST['holiday']; |
|
| 214 | + if (isset($_REQUEST['holiday'])) { |
|
| 215 | + $_REQUEST['holiday'] = (int) $_REQUEST['holiday']; |
|
| 216 | + } |
|
| 214 | 217 | |
| 215 | 218 | // Submitting? |
| 216 | 219 | if (isset($_POST[$context['session_var']]) && (isset($_REQUEST['delete']) || $_REQUEST['title'] != '')) |
@@ -221,19 +224,19 @@ discard block |
||
| 221 | 224 | $_REQUEST['title'] = $smcFunc['substr']($_REQUEST['title'], 0, 60); |
| 222 | 225 | $_REQUEST['holiday'] = isset($_REQUEST['holiday']) ? (int) $_REQUEST['holiday'] : 0; |
| 223 | 226 | |
| 224 | - if (isset($_REQUEST['delete'])) |
|
| 225 | - $smcFunc['db_query']('', ' |
|
| 227 | + if (isset($_REQUEST['delete'])) { |
|
| 228 | + $smcFunc['db_query']('', ' |
|
| 226 | 229 | DELETE FROM {db_prefix}calendar_holidays |
| 227 | 230 | WHERE id_holiday = {int:selected_holiday}', |
| 228 | 231 | array( |
| 229 | 232 | 'selected_holiday' => $_REQUEST['holiday'], |
| 230 | 233 | ) |
| 231 | 234 | ); |
| 232 | - else |
|
| 235 | + } else |
|
| 233 | 236 | { |
| 234 | 237 | $date = strftime($_REQUEST['year'] <= 1004 ? '1004-%m-%d' : '%Y-%m-%d', mktime(0, 0, 0, $_REQUEST['month'], $_REQUEST['day'], $_REQUEST['year'])); |
| 235 | - if (isset($_REQUEST['edit'])) |
|
| 236 | - $smcFunc['db_query']('', ' |
|
| 238 | + if (isset($_REQUEST['edit'])) { |
|
| 239 | + $smcFunc['db_query']('', ' |
|
| 237 | 240 | UPDATE {db_prefix}calendar_holidays |
| 238 | 241 | SET event_date = {date:holiday_date}, title = {string:holiday_title} |
| 239 | 242 | WHERE id_holiday = {int:selected_holiday}', |
@@ -243,8 +246,8 @@ discard block |
||
| 243 | 246 | 'holiday_title' => $_REQUEST['title'], |
| 244 | 247 | ) |
| 245 | 248 | ); |
| 246 | - else |
|
| 247 | - $smcFunc['db_insert']('', |
|
| 249 | + } else { |
|
| 250 | + $smcFunc['db_insert']('', |
|
| 248 | 251 | '{db_prefix}calendar_holidays', |
| 249 | 252 | array( |
| 250 | 253 | 'event_date' => 'date', 'title' => 'string-60', |
@@ -254,6 +257,7 @@ discard block |
||
| 254 | 257 | ), |
| 255 | 258 | array('id_holiday') |
| 256 | 259 | ); |
| 260 | + } |
|
| 257 | 261 | } |
| 258 | 262 | |
| 259 | 263 | updateSettings(array( |
@@ -265,14 +269,15 @@ discard block |
||
| 265 | 269 | } |
| 266 | 270 | |
| 267 | 271 | // Default states... |
| 268 | - if ($context['is_new']) |
|
| 269 | - $context['holiday'] = array( |
|
| 272 | + if ($context['is_new']) { |
|
| 273 | + $context['holiday'] = array( |
|
| 270 | 274 | 'id' => 0, |
| 271 | 275 | 'day' => date('d'), |
| 272 | 276 | 'month' => date('m'), |
| 273 | 277 | 'year' => '0000', |
| 274 | 278 | 'title' => '' |
| 275 | 279 | ); |
| 280 | + } |
|
| 276 | 281 | // If it's not new load the data. |
| 277 | 282 | else |
| 278 | 283 | { |
@@ -285,14 +290,15 @@ discard block |
||
| 285 | 290 | 'selected_holiday' => $_REQUEST['holiday'], |
| 286 | 291 | ) |
| 287 | 292 | ); |
| 288 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 289 | - $context['holiday'] = array( |
|
| 293 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 294 | + $context['holiday'] = array( |
|
| 290 | 295 | 'id' => $row['id_holiday'], |
| 291 | 296 | 'day' => $row['day'], |
| 292 | 297 | 'month' => $row['month'], |
| 293 | 298 | 'year' => $row['year'] <= 4 ? 0 : $row['year'], |
| 294 | 299 | 'title' => $row['title'] |
| 295 | 300 | ); |
| 301 | + } |
|
| 296 | 302 | $smcFunc['db_free_result']($request); |
| 297 | 303 | } |
| 298 | 304 | |
@@ -319,16 +325,17 @@ discard block |
||
| 319 | 325 | array( |
| 320 | 326 | ) |
| 321 | 327 | ); |
| 322 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 323 | - $boards[$row['id_board']] = $row['cat_name'] . ' - ' . $row['board_name']; |
|
| 328 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 329 | + $boards[$row['id_board']] = $row['cat_name'] . ' - ' . $row['board_name']; |
|
| 330 | + } |
|
| 324 | 331 | $smcFunc['db_free_result']($request); |
| 325 | 332 | |
| 326 | 333 | require_once($sourcedir . '/Subs-Boards.php'); |
| 327 | 334 | sortBoards($boards); |
| 328 | 335 | |
| 329 | 336 | // Look, all the calendar settings - of which there are many! |
| 330 | - if (!empty($modSettings['cal_enabled'])) |
|
| 331 | - $config_vars = array( |
|
| 337 | + if (!empty($modSettings['cal_enabled'])) { |
|
| 338 | + $config_vars = array( |
|
| 332 | 339 | array('check', 'cal_enabled'), |
| 333 | 340 | '', |
| 334 | 341 | // All the permissions: |
@@ -371,14 +378,16 @@ discard block |
||
| 371 | 378 | array('check', 'cal_short_days'), |
| 372 | 379 | array('check', 'cal_short_months'), |
| 373 | 380 | ); |
| 374 | - else |
|
| 375 | - $config_vars = array( |
|
| 381 | + } else { |
|
| 382 | + $config_vars = array( |
|
| 376 | 383 | array('check', 'cal_enabled'), |
| 377 | 384 | ); |
| 385 | + } |
|
| 378 | 386 | |
| 379 | 387 | call_integration_hook('integrate_modify_calendar_settings', array(&$config_vars)); |
| 380 | - if ($return_config) |
|
| 381 | - return $config_vars; |
|
| 388 | + if ($return_config) { |
|
| 389 | + return $config_vars; |
|
| 390 | + } |
|
| 382 | 391 | |
| 383 | 392 | // Get the settings template fired up. |
| 384 | 393 | require_once($sourcedir . '/ManageServer.php'); |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | /** |
| 82 | 82 | * Make files writable. First try to use regular chmod, but if that fails, try to use FTP. |
| 83 | 83 | * |
| 84 | - * @param $files |
|
| 84 | + * @param string[] $files |
|
| 85 | 85 | * @return bool |
| 86 | 86 | */ |
| 87 | 87 | function makeFilesWritable(&$files) |
@@ -322,7 +322,7 @@ discard block |
||
| 322 | 322 | /** |
| 323 | 323 | * Prints an error to stderr. |
| 324 | 324 | * |
| 325 | - * @param $message |
|
| 325 | + * @param string $message |
|
| 326 | 326 | * @param bool $fatal |
| 327 | 327 | */ |
| 328 | 328 | function print_error($message, $fatal = false) |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * This file contains helper functions for upgrade.php |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF_VERSION')) |
|
| 16 | +if (!defined('SMF_VERSION')) { |
|
| 17 | 17 | die('No direct access!'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * Clean the cache using the SMF 2.1 CacheAPI. |
@@ -45,8 +46,9 @@ discard block |
||
| 45 | 46 | global $smcFunc; |
| 46 | 47 | static $member_groups = array(); |
| 47 | 48 | |
| 48 | - if (!empty($member_groups)) |
|
| 49 | - return $member_groups; |
|
| 49 | + if (!empty($member_groups)) { |
|
| 50 | + return $member_groups; |
|
| 51 | + } |
|
| 50 | 52 | |
| 51 | 53 | $request = $smcFunc['db_query']('', ' |
| 52 | 54 | SELECT group_name, id_group |
@@ -71,8 +73,9 @@ discard block |
||
| 71 | 73 | ) |
| 72 | 74 | ); |
| 73 | 75 | } |
| 74 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
| 75 | - $member_groups[trim($row[0])] = $row[1]; |
|
| 76 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
| 77 | + $member_groups[trim($row[0])] = $row[1]; |
|
| 78 | + } |
|
| 76 | 79 | $smcFunc['db_free_result']($request); |
| 77 | 80 | |
| 78 | 81 | return $member_groups; |
@@ -88,8 +91,9 @@ discard block |
||
| 88 | 91 | { |
| 89 | 92 | global $upcontext, $boarddir, $sourcedir; |
| 90 | 93 | |
| 91 | - if (empty($files)) |
|
| 92 | - return true; |
|
| 94 | + if (empty($files)) { |
|
| 95 | + return true; |
|
| 96 | + } |
|
| 93 | 97 | |
| 94 | 98 | $failure = false; |
| 95 | 99 | // On linux, it's easy - just use is_writable! |
@@ -100,22 +104,25 @@ discard block |
||
| 100 | 104 | foreach ($files as $k => $file) |
| 101 | 105 | { |
| 102 | 106 | // Some files won't exist, try to address up front |
| 103 | - if (!file_exists($file)) |
|
| 104 | - @touch($file); |
|
| 107 | + if (!file_exists($file)) { |
|
| 108 | + @touch($file); |
|
| 109 | + } |
|
| 105 | 110 | // NOW do the writable check... |
| 106 | 111 | if (!is_writable($file)) |
| 107 | 112 | { |
| 108 | 113 | @chmod($file, 0755); |
| 109 | 114 | |
| 110 | 115 | // Well, 755 hopefully worked... if not, try 777. |
| 111 | - if (!is_writable($file) && !@chmod($file, 0777)) |
|
| 112 | - $failure = true; |
|
| 116 | + if (!is_writable($file) && !@chmod($file, 0777)) { |
|
| 117 | + $failure = true; |
|
| 118 | + } |
|
| 113 | 119 | // Otherwise remove it as it's good! |
| 114 | - else |
|
| 115 | - unset($files[$k]); |
|
| 120 | + else { |
|
| 121 | + unset($files[$k]); |
|
| 122 | + } |
|
| 123 | + } else { |
|
| 124 | + unset($files[$k]); |
|
| 116 | 125 | } |
| 117 | - else |
|
| 118 | - unset($files[$k]); |
|
| 119 | 126 | } |
| 120 | 127 | } |
| 121 | 128 | // Windows is trickier. Let's try opening for r+... |
@@ -126,30 +133,35 @@ discard block |
||
| 126 | 133 | foreach ($files as $k => $file) |
| 127 | 134 | { |
| 128 | 135 | // Folders can't be opened for write... but the index.php in them can ;). |
| 129 | - if (is_dir($file)) |
|
| 130 | - $file .= '/index.php'; |
|
| 136 | + if (is_dir($file)) { |
|
| 137 | + $file .= '/index.php'; |
|
| 138 | + } |
|
| 131 | 139 | |
| 132 | 140 | // Funny enough, chmod actually does do something on windows - it removes the read only attribute. |
| 133 | 141 | @chmod($file, 0777); |
| 134 | 142 | $fp = @fopen($file, 'r+'); |
| 135 | 143 | |
| 136 | 144 | // Hmm, okay, try just for write in that case... |
| 137 | - if (!$fp) |
|
| 138 | - $fp = @fopen($file, 'w'); |
|
| 145 | + if (!$fp) { |
|
| 146 | + $fp = @fopen($file, 'w'); |
|
| 147 | + } |
|
| 139 | 148 | |
| 140 | - if (!$fp) |
|
| 141 | - $failure = true; |
|
| 142 | - else |
|
| 143 | - unset($files[$k]); |
|
| 149 | + if (!$fp) { |
|
| 150 | + $failure = true; |
|
| 151 | + } else { |
|
| 152 | + unset($files[$k]); |
|
| 153 | + } |
|
| 144 | 154 | @fclose($fp); |
| 145 | 155 | } |
| 146 | 156 | } |
| 147 | 157 | |
| 148 | - if (empty($files)) |
|
| 149 | - return true; |
|
| 158 | + if (empty($files)) { |
|
| 159 | + return true; |
|
| 160 | + } |
|
| 150 | 161 | |
| 151 | - if (!isset($_SERVER)) |
|
| 152 | - return !$failure; |
|
| 162 | + if (!isset($_SERVER)) { |
|
| 163 | + return !$failure; |
|
| 164 | + } |
|
| 153 | 165 | |
| 154 | 166 | // What still needs to be done? |
| 155 | 167 | $upcontext['chmod']['files'] = $files; |
@@ -201,36 +213,40 @@ discard block |
||
| 201 | 213 | |
| 202 | 214 | if (!isset($ftp) || $ftp->error !== false) |
| 203 | 215 | { |
| 204 | - if (!isset($ftp)) |
|
| 205 | - $ftp = new ftp_connection(null); |
|
| 216 | + if (!isset($ftp)) { |
|
| 217 | + $ftp = new ftp_connection(null); |
|
| 218 | + } |
|
| 206 | 219 | // Save the error so we can mess with listing... |
| 207 | - elseif ($ftp->error !== false && !isset($upcontext['chmod']['ftp_error'])) |
|
| 208 | - $upcontext['chmod']['ftp_error'] = $ftp->last_message === null ? '' : $ftp->last_message; |
|
| 220 | + elseif ($ftp->error !== false && !isset($upcontext['chmod']['ftp_error'])) { |
|
| 221 | + $upcontext['chmod']['ftp_error'] = $ftp->last_message === null ? '' : $ftp->last_message; |
|
| 222 | + } |
|
| 209 | 223 | |
| 210 | 224 | list ($username, $detect_path, $found_path) = $ftp->detect_path(dirname(__FILE__)); |
| 211 | 225 | |
| 212 | - if ($found_path || !isset($upcontext['chmod']['path'])) |
|
| 213 | - $upcontext['chmod']['path'] = $detect_path; |
|
| 226 | + if ($found_path || !isset($upcontext['chmod']['path'])) { |
|
| 227 | + $upcontext['chmod']['path'] = $detect_path; |
|
| 228 | + } |
|
| 214 | 229 | |
| 215 | - if (!isset($upcontext['chmod']['username'])) |
|
| 216 | - $upcontext['chmod']['username'] = $username; |
|
| 230 | + if (!isset($upcontext['chmod']['username'])) { |
|
| 231 | + $upcontext['chmod']['username'] = $username; |
|
| 232 | + } |
|
| 217 | 233 | |
| 218 | 234 | // Don't forget the login token. |
| 219 | 235 | $upcontext += createToken('login'); |
| 220 | 236 | |
| 221 | 237 | return false; |
| 222 | - } |
|
| 223 | - else |
|
| 238 | + } else |
|
| 224 | 239 | { |
| 225 | 240 | // We want to do a relative path for FTP. |
| 226 | 241 | if (!in_array($upcontext['chmod']['path'], array('', '/'))) |
| 227 | 242 | { |
| 228 | 243 | $ftp_root = strtr($boarddir, array($upcontext['chmod']['path'] => '')); |
| 229 | - if (substr($ftp_root, -1) == '/' && ($upcontext['chmod']['path'] == '' || $upcontext['chmod']['path'][0] === '/')) |
|
| 230 | - $ftp_root = substr($ftp_root, 0, -1); |
|
| 244 | + if (substr($ftp_root, -1) == '/' && ($upcontext['chmod']['path'] == '' || $upcontext['chmod']['path'][0] === '/')) { |
|
| 245 | + $ftp_root = substr($ftp_root, 0, -1); |
|
| 246 | + } |
|
| 247 | + } else { |
|
| 248 | + $ftp_root = $boarddir; |
|
| 231 | 249 | } |
| 232 | - else |
|
| 233 | - $ftp_root = $boarddir; |
|
| 234 | 250 | |
| 235 | 251 | // Save the info for next time! |
| 236 | 252 | $_SESSION['installer_temp_ftp'] = array( |
@@ -244,10 +260,12 @@ discard block |
||
| 244 | 260 | |
| 245 | 261 | foreach ($files as $k => $file) |
| 246 | 262 | { |
| 247 | - if (!is_writable($file)) |
|
| 248 | - $ftp->chmod($file, 0755); |
|
| 249 | - if (!is_writable($file)) |
|
| 250 | - $ftp->chmod($file, 0777); |
|
| 263 | + if (!is_writable($file)) { |
|
| 264 | + $ftp->chmod($file, 0755); |
|
| 265 | + } |
|
| 266 | + if (!is_writable($file)) { |
|
| 267 | + $ftp->chmod($file, 0777); |
|
| 268 | + } |
|
| 251 | 269 | |
| 252 | 270 | // Assuming that didn't work calculate the path without the boarddir. |
| 253 | 271 | if (!is_writable($file)) |
@@ -256,19 +274,23 @@ discard block |
||
| 256 | 274 | { |
| 257 | 275 | $ftp_file = strtr($file, array($_SESSION['installer_temp_ftp']['root'] => '')); |
| 258 | 276 | $ftp->chmod($ftp_file, 0755); |
| 259 | - if (!is_writable($file)) |
|
| 260 | - $ftp->chmod($ftp_file, 0777); |
|
| 277 | + if (!is_writable($file)) { |
|
| 278 | + $ftp->chmod($ftp_file, 0777); |
|
| 279 | + } |
|
| 261 | 280 | // Sometimes an extra slash can help... |
| 262 | 281 | $ftp_file = '/' . $ftp_file; |
| 263 | - if (!is_writable($file)) |
|
| 264 | - $ftp->chmod($ftp_file, 0755); |
|
| 265 | - if (!is_writable($file)) |
|
| 266 | - $ftp->chmod($ftp_file, 0777); |
|
| 282 | + if (!is_writable($file)) { |
|
| 283 | + $ftp->chmod($ftp_file, 0755); |
|
| 284 | + } |
|
| 285 | + if (!is_writable($file)) { |
|
| 286 | + $ftp->chmod($ftp_file, 0777); |
|
| 287 | + } |
|
| 267 | 288 | } |
| 268 | 289 | } |
| 269 | 290 | |
| 270 | - if (is_writable($file)) |
|
| 271 | - unset($files[$k]); |
|
| 291 | + if (is_writable($file)) { |
|
| 292 | + unset($files[$k]); |
|
| 293 | + } |
|
| 272 | 294 | } |
| 273 | 295 | |
| 274 | 296 | $ftp->close(); |
@@ -278,8 +300,9 @@ discard block |
||
| 278 | 300 | // What remains? |
| 279 | 301 | $upcontext['chmod']['files'] = $files; |
| 280 | 302 | |
| 281 | - if (empty($files)) |
|
| 282 | - return true; |
|
| 303 | + if (empty($files)) { |
|
| 304 | + return true; |
|
| 305 | + } |
|
| 283 | 306 | |
| 284 | 307 | return false; |
| 285 | 308 | } |
@@ -293,12 +316,14 @@ discard block |
||
| 293 | 316 | function quickFileWritable($file) |
| 294 | 317 | { |
| 295 | 318 | // Some files won't exist, try to address up front |
| 296 | - if (!file_exists($file)) |
|
| 297 | - @touch($file); |
|
| 319 | + if (!file_exists($file)) { |
|
| 320 | + @touch($file); |
|
| 321 | + } |
|
| 298 | 322 | |
| 299 | 323 | // NOW do the writable check... |
| 300 | - if (is_writable($file)) |
|
| 301 | - return true; |
|
| 324 | + if (is_writable($file)) { |
|
| 325 | + return true; |
|
| 326 | + } |
|
| 302 | 327 | |
| 303 | 328 | @chmod($file, 0755); |
| 304 | 329 | |
@@ -308,10 +333,11 @@ discard block |
||
| 308 | 333 | foreach ($chmod_values as $val) |
| 309 | 334 | { |
| 310 | 335 | // If it's writable, break out of the loop |
| 311 | - if (is_writable($file)) |
|
| 312 | - break; |
|
| 313 | - else |
|
| 314 | - @chmod($file, $val); |
|
| 336 | + if (is_writable($file)) { |
|
| 337 | + break; |
|
| 338 | + } else { |
|
| 339 | + @chmod($file, $val); |
|
| 340 | + } |
|
| 315 | 341 | } |
| 316 | 342 | |
| 317 | 343 | return is_writable($file); |
@@ -338,14 +364,16 @@ discard block |
||
| 338 | 364 | { |
| 339 | 365 | static $fp = null; |
| 340 | 366 | |
| 341 | - if ($fp === null) |
|
| 342 | - $fp = fopen('php://stderr', 'wb'); |
|
| 367 | + if ($fp === null) { |
|
| 368 | + $fp = fopen('php://stderr', 'wb'); |
|
| 369 | + } |
|
| 343 | 370 | |
| 344 | 371 | fwrite($fp, $message . "\n"); |
| 345 | 372 | |
| 346 | - if ($fatal) |
|
| 347 | - exit; |
|
| 348 | -} |
|
| 373 | + if ($fatal) { |
|
| 374 | + exit; |
|
| 375 | + } |
|
| 376 | + } |
|
| 349 | 377 | |
| 350 | 378 | /** |
| 351 | 379 | * Throws a graphical error message. |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 4 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * Entry point for this section. |
@@ -38,8 +39,7 @@ discard block |
||
| 38 | 39 | 'stats' => 'SpiderStats', |
| 39 | 40 | ); |
| 40 | 41 | $default = 'stats'; |
| 41 | - } |
|
| 42 | - else |
|
| 42 | + } else |
|
| 43 | 43 | { |
| 44 | 44 | $subActions = array( |
| 45 | 45 | 'settings' => 'ManageSearchEngineSettings', |
@@ -90,11 +90,12 @@ discard block |
||
| 90 | 90 | { |
| 91 | 91 | disabledState = document.getElementById(\'spider_mode\').value == 0;'; |
| 92 | 92 | |
| 93 | - foreach ($config_vars as $variable) |
|
| 94 | - if ($variable[1] != 'spider_mode') |
|
| 93 | + foreach ($config_vars as $variable) { |
|
| 94 | + if ($variable[1] != 'spider_mode') |
|
| 95 | 95 | $javascript_function .= ' |
| 96 | 96 | if (document.getElementById(\'' . $variable[1] . '\')) |
| 97 | 97 | document.getElementById(\'' . $variable[1] . '\').disabled = disabledState;'; |
| 98 | + } |
|
| 98 | 99 | |
| 99 | 100 | $javascript_function .= ' |
| 100 | 101 | } |
@@ -102,8 +103,9 @@ discard block |
||
| 102 | 103 | |
| 103 | 104 | call_integration_hook('integrate_modify_search_engine_settings', array(&$config_vars)); |
| 104 | 105 | |
| 105 | - if ($return_config) |
|
| 106 | - return $config_vars; |
|
| 106 | + if ($return_config) { |
|
| 107 | + return $config_vars; |
|
| 108 | + } |
|
| 107 | 109 | |
| 108 | 110 | // We need to load the groups for the spider group thingy. |
| 109 | 111 | $request = $smcFunc['db_query']('', ' |
@@ -116,13 +118,15 @@ discard block |
||
| 116 | 118 | 'moderator_group' => 3, |
| 117 | 119 | ) |
| 118 | 120 | ); |
| 119 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 120 | - $config_vars['spider_group'][2][$row['id_group']] = $row['group_name']; |
|
| 121 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 122 | + $config_vars['spider_group'][2][$row['id_group']] = $row['group_name']; |
|
| 123 | + } |
|
| 121 | 124 | $smcFunc['db_free_result']($request); |
| 122 | 125 | |
| 123 | 126 | // Make sure it's valid - note that regular members are given id_group = 1 which is reversed in Load.php - no admins here! |
| 124 | - if (isset($_POST['spider_group']) && !isset($config_vars['spider_group'][2][$_POST['spider_group']])) |
|
| 125 | - $_POST['spider_group'] = 0; |
|
| 127 | + if (isset($_POST['spider_group']) && !isset($config_vars['spider_group'][2][$_POST['spider_group']])) { |
|
| 128 | + $_POST['spider_group'] = 0; |
|
| 129 | + } |
|
| 126 | 130 | |
| 127 | 131 | // We'll want this for our easy save. |
| 128 | 132 | require_once($sourcedir . '/ManageServer.php'); |
@@ -166,8 +170,9 @@ discard block |
||
| 166 | 170 | } |
| 167 | 171 | |
| 168 | 172 | // Are we adding a new one? |
| 169 | - if (!empty($_POST['addSpider'])) |
|
| 170 | - return EditSpider(); |
|
| 173 | + if (!empty($_POST['addSpider'])) { |
|
| 174 | + return EditSpider(); |
|
| 175 | + } |
|
| 171 | 176 | // User pressed the 'remove selection button'. |
| 172 | 177 | elseif (!empty($_POST['removeSpiders']) && !empty($_POST['remove']) && is_array($_POST['remove'])) |
| 173 | 178 | { |
@@ -175,8 +180,9 @@ discard block |
||
| 175 | 180 | validateToken('admin-ser'); |
| 176 | 181 | |
| 177 | 182 | // Make sure every entry is a proper integer. |
| 178 | - foreach ($_POST['remove'] as $index => $spider_id) |
|
| 179 | - $_POST['remove'][(int) $index] = (int) $spider_id; |
|
| 183 | + foreach ($_POST['remove'] as $index => $spider_id) { |
|
| 184 | + $_POST['remove'][(int) $index] = (int) $spider_id; |
|
| 185 | + } |
|
| 180 | 186 | |
| 181 | 187 | // Delete them all! |
| 182 | 188 | $smcFunc['db_query']('', ' |
@@ -215,8 +221,9 @@ discard block |
||
| 215 | 221 | ); |
| 216 | 222 | |
| 217 | 223 | $context['spider_last_seen'] = array(); |
| 218 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 219 | - $context['spider_last_seen'][$row['id_spider']] = $row['last_seen_time']; |
|
| 224 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 225 | + $context['spider_last_seen'][$row['id_spider']] = $row['last_seen_time']; |
|
| 226 | + } |
|
| 220 | 227 | $smcFunc['db_free_result']($request); |
| 221 | 228 | |
| 222 | 229 | createToken('admin-ser'); |
@@ -346,8 +353,9 @@ discard block |
||
| 346 | 353 | ) |
| 347 | 354 | ); |
| 348 | 355 | $spiders = array(); |
| 349 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 350 | - $spiders[$row['id_spider']] = $row; |
|
| 356 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 357 | + $spiders[$row['id_spider']] = $row; |
|
| 358 | + } |
|
| 351 | 359 | $smcFunc['db_free_result']($request); |
| 352 | 360 | |
| 353 | 361 | return $spiders; |
@@ -397,14 +405,15 @@ discard block |
||
| 397 | 405 | foreach ($ip_sets as $set) |
| 398 | 406 | { |
| 399 | 407 | $test = ip2range(trim($set)); |
| 400 | - if (!empty($test)) |
|
| 401 | - $ips[] = $set; |
|
| 408 | + if (!empty($test)) { |
|
| 409 | + $ips[] = $set; |
|
| 410 | + } |
|
| 402 | 411 | } |
| 403 | 412 | $ips = implode(',', $ips); |
| 404 | 413 | |
| 405 | 414 | // Goes in as it is... |
| 406 | - if ($context['id_spider']) |
|
| 407 | - $smcFunc['db_query']('', ' |
|
| 415 | + if ($context['id_spider']) { |
|
| 416 | + $smcFunc['db_query']('', ' |
|
| 408 | 417 | UPDATE {db_prefix}spiders |
| 409 | 418 | SET spider_name = {string:spider_name}, user_agent = {string:spider_agent}, |
| 410 | 419 | ip_info = {string:ip_info} |
@@ -416,8 +425,8 @@ discard block |
||
| 416 | 425 | 'ip_info' => $ips, |
| 417 | 426 | ) |
| 418 | 427 | ); |
| 419 | - else |
|
| 420 | - $smcFunc['db_insert']('insert', |
|
| 428 | + } else { |
|
| 429 | + $smcFunc['db_insert']('insert', |
|
| 421 | 430 | '{db_prefix}spiders', |
| 422 | 431 | array( |
| 423 | 432 | 'spider_name' => 'string', 'user_agent' => 'string', 'ip_info' => 'string', |
@@ -427,6 +436,7 @@ discard block |
||
| 427 | 436 | ), |
| 428 | 437 | array('id_spider') |
| 429 | 438 | ); |
| 439 | + } |
|
| 430 | 440 | |
| 431 | 441 | |
| 432 | 442 | cache_put_data('spider_search', null); |
@@ -454,13 +464,14 @@ discard block |
||
| 454 | 464 | 'current_spider' => $context['id_spider'], |
| 455 | 465 | ) |
| 456 | 466 | ); |
| 457 | - if ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 458 | - $context['spider'] = array( |
|
| 467 | + if ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 468 | + $context['spider'] = array( |
|
| 459 | 469 | 'id' => $row['id_spider'], |
| 460 | 470 | 'name' => $row['spider_name'], |
| 461 | 471 | 'agent' => $row['user_agent'], |
| 462 | 472 | 'ip_info' => $row['ip_info'], |
| 463 | 473 | ); |
| 474 | + } |
|
| 464 | 475 | $smcFunc['db_free_result']($request); |
| 465 | 476 | } |
| 466 | 477 | |
@@ -477,8 +488,9 @@ discard block |
||
| 477 | 488 | { |
| 478 | 489 | global $modSettings, $smcFunc; |
| 479 | 490 | |
| 480 | - if (isset($_SESSION['id_robot'])) |
|
| 481 | - unset($_SESSION['id_robot']); |
|
| 491 | + if (isset($_SESSION['id_robot'])) { |
|
| 492 | + unset($_SESSION['id_robot']); |
|
| 493 | + } |
|
| 482 | 494 | $_SESSION['robot_check'] = time(); |
| 483 | 495 | |
| 484 | 496 | // We cache the spider data for ten minutes if we can. |
@@ -492,15 +504,17 @@ discard block |
||
| 492 | 504 | ) |
| 493 | 505 | ); |
| 494 | 506 | $spider_data = array(); |
| 495 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 496 | - $spider_data[] = $row; |
|
| 507 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 508 | + $spider_data[] = $row; |
|
| 509 | + } |
|
| 497 | 510 | $smcFunc['db_free_result']($request); |
| 498 | 511 | |
| 499 | 512 | cache_put_data('spider_search', $spider_data, 600); |
| 500 | 513 | } |
| 501 | 514 | |
| 502 | - if (empty($spider_data)) |
|
| 503 | - return false; |
|
| 515 | + if (empty($spider_data)) { |
|
| 516 | + return false; |
|
| 517 | + } |
|
| 504 | 518 | |
| 505 | 519 | // Only do these bits once. |
| 506 | 520 | $ci_user_agent = strtolower($_SERVER['HTTP_USER_AGENT']); |
@@ -508,33 +522,38 @@ discard block |
||
| 508 | 522 | foreach ($spider_data as $spider) |
| 509 | 523 | { |
| 510 | 524 | // User agent is easy. |
| 511 | - if (!empty($spider['user_agent']) && strpos($ci_user_agent, strtolower($spider['user_agent'])) !== false) |
|
| 512 | - $_SESSION['id_robot'] = $spider['id_spider']; |
|
| 525 | + if (!empty($spider['user_agent']) && strpos($ci_user_agent, strtolower($spider['user_agent'])) !== false) { |
|
| 526 | + $_SESSION['id_robot'] = $spider['id_spider']; |
|
| 527 | + } |
|
| 513 | 528 | // IP stuff is harder. |
| 514 | 529 | elseif ($_SERVER['REMOTE_ADDR']) |
| 515 | 530 | { |
| 516 | 531 | $ips = explode(',', $spider['ip_info']); |
| 517 | 532 | foreach ($ips as $ip) |
| 518 | 533 | { |
| 519 | - if ($ip === '') |
|
| 520 | - continue; |
|
| 534 | + if ($ip === '') { |
|
| 535 | + continue; |
|
| 536 | + } |
|
| 521 | 537 | |
| 522 | 538 | $ip = ip2range($ip); |
| 523 | 539 | if (!empty($ip)) |
| 524 | 540 | { |
| 525 | - if (inet_ptod($ip['low']) <= inet_ptod($_SERVER['REMOTE_ADDR']) && inet_ptod($ip['high']) >= inet_ptod($_SERVER['REMOTE_ADDR'])) |
|
| 526 | - $_SESSION['id_robot'] = $spider['id_spider']; |
|
| 541 | + if (inet_ptod($ip['low']) <= inet_ptod($_SERVER['REMOTE_ADDR']) && inet_ptod($ip['high']) >= inet_ptod($_SERVER['REMOTE_ADDR'])) { |
|
| 542 | + $_SESSION['id_robot'] = $spider['id_spider']; |
|
| 543 | + } |
|
| 527 | 544 | } |
| 528 | 545 | } |
| 529 | 546 | } |
| 530 | 547 | |
| 531 | - if (isset($_SESSION['id_robot'])) |
|
| 532 | - break; |
|
| 548 | + if (isset($_SESSION['id_robot'])) { |
|
| 549 | + break; |
|
| 550 | + } |
|
| 533 | 551 | } |
| 534 | 552 | |
| 535 | 553 | // If this is low server tracking then log the spider here as opposed to the main logging function. |
| 536 | - if (!empty($modSettings['spider_mode']) && $modSettings['spider_mode'] == 1 && !empty($_SESSION['id_robot'])) |
|
| 537 | - logSpider(); |
|
| 554 | + if (!empty($modSettings['spider_mode']) && $modSettings['spider_mode'] == 1 && !empty($_SESSION['id_robot'])) { |
|
| 555 | + logSpider(); |
|
| 556 | + } |
|
| 538 | 557 | |
| 539 | 558 | return !empty($_SESSION['id_robot']) ? $_SESSION['id_robot'] : 0; |
| 540 | 559 | } |
@@ -548,8 +567,9 @@ discard block |
||
| 548 | 567 | { |
| 549 | 568 | global $smcFunc, $modSettings, $context; |
| 550 | 569 | |
| 551 | - if (empty($modSettings['spider_mode']) || empty($_SESSION['id_robot'])) |
|
| 552 | - return; |
|
| 570 | + if (empty($modSettings['spider_mode']) || empty($_SESSION['id_robot'])) { |
|
| 571 | + return; |
|
| 572 | + } |
|
| 553 | 573 | |
| 554 | 574 | // Attempt to update today's entry. |
| 555 | 575 | if ($modSettings['spider_mode'] == 1) |
@@ -590,9 +610,9 @@ discard block |
||
| 590 | 610 | $url = $_GET + array('USER_AGENT' => $_SERVER['HTTP_USER_AGENT']); |
| 591 | 611 | unset($url['sesc'], $url[$context['session_var']]); |
| 592 | 612 | $url = $smcFunc['json_encode']($url); |
| 613 | + } else { |
|
| 614 | + $url = ''; |
|
| 593 | 615 | } |
| 594 | - else |
|
| 595 | - $url = ''; |
|
| 596 | 616 | |
| 597 | 617 | $smcFunc['db_insert']('insert', |
| 598 | 618 | '{db_prefix}log_spider_hits', |
@@ -620,12 +640,14 @@ discard block |
||
| 620 | 640 | ) |
| 621 | 641 | ); |
| 622 | 642 | $spider_hits = array(); |
| 623 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 624 | - $spider_hits[] = $row; |
|
| 643 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 644 | + $spider_hits[] = $row; |
|
| 645 | + } |
|
| 625 | 646 | $smcFunc['db_free_result']($request); |
| 626 | 647 | |
| 627 | - if (empty($spider_hits)) |
|
| 628 | - return; |
|
| 648 | + if (empty($spider_hits)) { |
|
| 649 | + return; |
|
| 650 | + } |
|
| 629 | 651 | |
| 630 | 652 | // Attempt to update the master data. |
| 631 | 653 | $stat_inserts = array(); |
@@ -646,18 +668,20 @@ discard block |
||
| 646 | 668 | 'hits' => $stat['num_hits'], |
| 647 | 669 | ) |
| 648 | 670 | ); |
| 649 | - if ($smcFunc['db_affected_rows']() == 0) |
|
| 650 | - $stat_inserts[] = array($date, $stat['id_spider'], $stat['num_hits'], $stat['last_seen']); |
|
| 671 | + if ($smcFunc['db_affected_rows']() == 0) { |
|
| 672 | + $stat_inserts[] = array($date, $stat['id_spider'], $stat['num_hits'], $stat['last_seen']); |
|
| 673 | + } |
|
| 651 | 674 | } |
| 652 | 675 | |
| 653 | 676 | // New stats? |
| 654 | - if (!empty($stat_inserts)) |
|
| 655 | - $smcFunc['db_insert']('ignore', |
|
| 677 | + if (!empty($stat_inserts)) { |
|
| 678 | + $smcFunc['db_insert']('ignore', |
|
| 656 | 679 | '{db_prefix}log_spider_stats', |
| 657 | 680 | array('stat_date' => 'date', 'id_spider' => 'int', 'page_hits' => 'int', 'last_seen' => 'int'), |
| 658 | 681 | $stat_inserts, |
| 659 | 682 | array('stat_date', 'id_spider') |
| 660 | 683 | ); |
| 684 | + } |
|
| 661 | 685 | |
| 662 | 686 | // All processed. |
| 663 | 687 | $smcFunc['db_query']('', ' |
@@ -700,8 +724,7 @@ discard block |
||
| 700 | 724 | 'delete_period' => $deleteTime, |
| 701 | 725 | ) |
| 702 | 726 | ); |
| 703 | - } |
|
| 704 | - else |
|
| 727 | + } else |
|
| 705 | 728 | { |
| 706 | 729 | // Deleting all of them |
| 707 | 730 | $smcFunc['db_query']('', ' |
@@ -791,10 +814,11 @@ discard block |
||
| 791 | 814 | foreach ($context['spider_logs']['rows'] as $k => $row) |
| 792 | 815 | { |
| 793 | 816 | // Feature disabled? |
| 794 | - if (empty($row['data']['viewing']['value']) && isset($modSettings['spider_mode']) && $modSettings['spider_mode'] < 3) |
|
| 795 | - $context['spider_logs']['rows'][$k]['viewing']['value'] = '<em>' . $txt['spider_disabled'] . '</em>'; |
|
| 796 | - else |
|
| 797 | - $urls[$k] = array($row['data']['viewing']['value'], -1); |
|
| 817 | + if (empty($row['data']['viewing']['value']) && isset($modSettings['spider_mode']) && $modSettings['spider_mode'] < 3) { |
|
| 818 | + $context['spider_logs']['rows'][$k]['viewing']['value'] = '<em>' . $txt['spider_disabled'] . '</em>'; |
|
| 819 | + } else { |
|
| 820 | + $urls[$k] = array($row['data']['viewing']['value'], -1); |
|
| 821 | + } |
|
| 798 | 822 | } |
| 799 | 823 | |
| 800 | 824 | // Now stick in the new URLs. |
@@ -836,8 +860,9 @@ discard block |
||
| 836 | 860 | ) |
| 837 | 861 | ); |
| 838 | 862 | $spider_logs = array(); |
| 839 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 840 | - $spider_logs[] = $row; |
|
| 863 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 864 | + $spider_logs[] = $row; |
|
| 865 | + } |
|
| 841 | 866 | $smcFunc['db_free_result']($request); |
| 842 | 867 | |
| 843 | 868 | return $spider_logs; |
@@ -913,14 +938,18 @@ discard block |
||
| 913 | 938 | |
| 914 | 939 | // Prepare the dates for the drop down. |
| 915 | 940 | $date_choices = array(); |
| 916 | - for ($y = $min_year; $y <= $max_year; $y++) |
|
| 917 | - for ($m = 1; $m <= 12; $m++) |
|
| 941 | + for ($y = $min_year; $y <= $max_year; $y++) { |
|
| 942 | + for ($m = 1; |
|
| 943 | + } |
|
| 944 | + $m <= 12; $m++) |
|
| 918 | 945 | { |
| 919 | 946 | // This doesn't count? |
| 920 | - if ($y == $min_year && $m < $min_month) |
|
| 921 | - continue; |
|
| 922 | - if ($y == $max_year && $m > $max_month) |
|
| 923 | - break; |
|
| 947 | + if ($y == $min_year && $m < $min_month) { |
|
| 948 | + continue; |
|
| 949 | + } |
|
| 950 | + if ($y == $max_year && $m > $max_month) { |
|
| 951 | + break; |
|
| 952 | + } |
|
| 924 | 953 | |
| 925 | 954 | $date_choices[$y . $m] = $txt['months_short'][$m] . ' ' . $y; |
| 926 | 955 | } |
@@ -933,13 +962,14 @@ discard block |
||
| 933 | 962 | ' . $txt['spider_stats_select_month'] . ': |
| 934 | 963 | <select name="new_date" onchange="document.spider_stat_list.submit();">'; |
| 935 | 964 | |
| 936 | - if (empty($date_choices)) |
|
| 937 | - $date_select .= ' |
|
| 965 | + if (empty($date_choices)) { |
|
| 966 | + $date_select .= ' |
|
| 938 | 967 | <option></option>'; |
| 939 | - else |
|
| 940 | - foreach ($date_choices as $id => $text) |
|
| 968 | + } else { |
|
| 969 | + foreach ($date_choices as $id => $text) |
|
| 941 | 970 | $date_select .= ' |
| 942 | 971 | <option value="' . $id . '"' . ($current_date == $id ? ' selected' : '') . '>' . $text . '</option>'; |
| 972 | + } |
|
| 943 | 973 | |
| 944 | 974 | $date_select .= ' |
| 945 | 975 | </select> |
@@ -1063,8 +1093,9 @@ discard block |
||
| 1063 | 1093 | ) |
| 1064 | 1094 | ); |
| 1065 | 1095 | $spider_stats = array(); |
| 1066 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1067 | - $spider_stats[] = $row; |
|
| 1096 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1097 | + $spider_stats[] = $row; |
|
| 1098 | + } |
|
| 1068 | 1099 | $smcFunc['db_free_result']($request); |
| 1069 | 1100 | |
| 1070 | 1101 | return $spider_stats; |
@@ -1105,8 +1136,9 @@ discard block |
||
| 1105 | 1136 | array() |
| 1106 | 1137 | ); |
| 1107 | 1138 | $spiders = array(); |
| 1108 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1109 | - $spiders[$row['id_spider']] = $row['spider_name']; |
|
| 1139 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1140 | + $spiders[$row['id_spider']] = $row['spider_name']; |
|
| 1141 | + } |
|
| 1110 | 1142 | $smcFunc['db_free_result']($request); |
| 1111 | 1143 | |
| 1112 | 1144 | updateSettings(array('spider_name_cache' => $smcFunc['json_encode']($spiders))); |
@@ -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 | * Who's online, and what are they doing? |
@@ -35,8 +36,9 @@ discard block |
||
| 35 | 36 | isAllowedTo('who_view'); |
| 36 | 37 | |
| 37 | 38 | // You can't do anything if this is off. |
| 38 | - if (empty($modSettings['who_enabled'])) |
|
| 39 | - fatal_lang_error('who_off', false); |
|
| 39 | + if (empty($modSettings['who_enabled'])) { |
|
| 40 | + fatal_lang_error('who_off', false); |
|
| 41 | + } |
|
| 40 | 42 | |
| 41 | 43 | // Load the 'Who' template. |
| 42 | 44 | loadTemplate('Who'); |
@@ -71,9 +73,9 @@ discard block |
||
| 71 | 73 | $show_methods['spiders'] = '(lo.id_member = 0 AND lo.id_spider > 0)'; |
| 72 | 74 | $show_methods['guests'] = '(lo.id_member = 0 AND lo.id_spider = 0)'; |
| 73 | 75 | $context['show_methods']['spiders'] = $txt['who_show_spiders_only']; |
| 76 | + } elseif (empty($modSettings['show_spider_online']) && isset($_SESSION['who_online_filter']) && $_SESSION['who_online_filter'] == 'spiders') { |
|
| 77 | + unset($_SESSION['who_online_filter']); |
|
| 74 | 78 | } |
| 75 | - elseif (empty($modSettings['show_spider_online']) && isset($_SESSION['who_online_filter']) && $_SESSION['who_online_filter'] == 'spiders') |
|
| 76 | - unset($_SESSION['who_online_filter']); |
|
| 77 | 79 | |
| 78 | 80 | // Does the user prefer a different sort direction? |
| 79 | 81 | if (isset($_REQUEST['sort']) && isset($sort_methods[$_REQUEST['sort']])) |
@@ -97,20 +99,24 @@ discard block |
||
| 97 | 99 | $context['sort_direction'] = isset($_REQUEST['asc']) || (isset($_REQUEST['sort_dir']) && $_REQUEST['sort_dir'] == 'asc') ? 'up' : 'down'; |
| 98 | 100 | |
| 99 | 101 | $conditions = array(); |
| 100 | - if (!allowedTo('moderate_forum')) |
|
| 101 | - $conditions[] = '(COALESCE(mem.show_online, 1) = 1)'; |
|
| 102 | + if (!allowedTo('moderate_forum')) { |
|
| 103 | + $conditions[] = '(COALESCE(mem.show_online, 1) = 1)'; |
|
| 104 | + } |
|
| 102 | 105 | |
| 103 | 106 | // Fallback to top filter? |
| 104 | - if (isset($_REQUEST['submit_top']) && isset($_REQUEST['show_top'])) |
|
| 105 | - $_REQUEST['show'] = $_REQUEST['show_top']; |
|
| 107 | + if (isset($_REQUEST['submit_top']) && isset($_REQUEST['show_top'])) { |
|
| 108 | + $_REQUEST['show'] = $_REQUEST['show_top']; |
|
| 109 | + } |
|
| 106 | 110 | // Does the user wish to apply a filter? |
| 107 | - if (isset($_REQUEST['show']) && isset($show_methods[$_REQUEST['show']])) |
|
| 108 | - $context['show_by'] = $_SESSION['who_online_filter'] = $_REQUEST['show']; |
|
| 111 | + if (isset($_REQUEST['show']) && isset($show_methods[$_REQUEST['show']])) { |
|
| 112 | + $context['show_by'] = $_SESSION['who_online_filter'] = $_REQUEST['show']; |
|
| 113 | + } |
|
| 109 | 114 | // Perhaps we saved a filter earlier in the session? |
| 110 | - elseif (isset($_SESSION['who_online_filter'])) |
|
| 111 | - $context['show_by'] = $_SESSION['who_online_filter']; |
|
| 112 | - else |
|
| 113 | - $context['show_by'] = 'members'; |
|
| 115 | + elseif (isset($_SESSION['who_online_filter'])) { |
|
| 116 | + $context['show_by'] = $_SESSION['who_online_filter']; |
|
| 117 | + } else { |
|
| 118 | + $context['show_by'] = 'members'; |
|
| 119 | + } |
|
| 114 | 120 | |
| 115 | 121 | $conditions[] = $show_methods[$context['show_by']]; |
| 116 | 122 | |
@@ -156,8 +162,9 @@ discard block |
||
| 156 | 162 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 157 | 163 | { |
| 158 | 164 | $actions = $smcFunc['json_decode']($row['url'], true); |
| 159 | - if ($actions === false) |
|
| 160 | - continue; |
|
| 165 | + if ($actions === false) { |
|
| 166 | + continue; |
|
| 167 | + } |
|
| 161 | 168 | |
| 162 | 169 | // Send the information to the template. |
| 163 | 170 | $context['members'][$row['session']] = array( |
@@ -195,8 +202,8 @@ discard block |
||
| 195 | 202 | $spiderContext = array(); |
| 196 | 203 | if (!empty($modSettings['show_spider_online']) && ($modSettings['show_spider_online'] == 2 || allowedTo('admin_forum')) && !empty($modSettings['spider_name_cache'])) |
| 197 | 204 | { |
| 198 | - foreach ($smcFunc['json_decode']($modSettings['spider_name_cache'], true) as $id => $name) |
|
| 199 | - $spiderContext[$id] = array( |
|
| 205 | + foreach ($smcFunc['json_decode']($modSettings['spider_name_cache'], true) as $id => $name) { |
|
| 206 | + $spiderContext[$id] = array( |
|
| 200 | 207 | 'id' => 0, |
| 201 | 208 | 'name' => $name, |
| 202 | 209 | 'group' => $txt['spiders'], |
@@ -205,6 +212,7 @@ discard block |
||
| 205 | 212 | 'email' => $name, |
| 206 | 213 | 'is_guest' => true |
| 207 | 214 | ); |
| 215 | + } |
|
| 208 | 216 | } |
| 209 | 217 | |
| 210 | 218 | $url_data = determineActions($url_data); |
@@ -219,16 +227,18 @@ discard block |
||
| 219 | 227 | // Put it in the context variables. |
| 220 | 228 | foreach ($context['members'] as $i => $member) |
| 221 | 229 | { |
| 222 | - if ($member['id'] != 0) |
|
| 223 | - $member['id'] = loadMemberContext($member['id']) ? $member['id'] : 0; |
|
| 230 | + if ($member['id'] != 0) { |
|
| 231 | + $member['id'] = loadMemberContext($member['id']) ? $member['id'] : 0; |
|
| 232 | + } |
|
| 224 | 233 | |
| 225 | 234 | // Keep the IP that came from the database. |
| 226 | 235 | $memberContext[$member['id']]['ip'] = $member['ip']; |
| 227 | 236 | $context['members'][$i]['action'] = isset($url_data[$i]) ? $url_data[$i] : $txt['who_hidden']; |
| 228 | - if ($member['id'] == 0 && isset($spiderContext[$member['id_spider']])) |
|
| 229 | - $context['members'][$i] += $spiderContext[$member['id_spider']]; |
|
| 230 | - else |
|
| 231 | - $context['members'][$i] += $memberContext[$member['id']]; |
|
| 237 | + if ($member['id'] == 0 && isset($spiderContext[$member['id_spider']])) { |
|
| 238 | + $context['members'][$i] += $spiderContext[$member['id_spider']]; |
|
| 239 | + } else { |
|
| 240 | + $context['members'][$i] += $memberContext[$member['id']]; |
|
| 241 | + } |
|
| 232 | 242 | } |
| 233 | 243 | |
| 234 | 244 | // Some people can't send personal messages... |
@@ -263,8 +273,9 @@ discard block |
||
| 263 | 273 | { |
| 264 | 274 | global $txt, $user_info, $modSettings, $smcFunc; |
| 265 | 275 | |
| 266 | - if (!allowedTo('who_view')) |
|
| 267 | - return array(); |
|
| 276 | + if (!allowedTo('who_view')) { |
|
| 277 | + return array(); |
|
| 278 | + } |
|
| 268 | 279 | loadLanguage('Who'); |
| 269 | 280 | |
| 270 | 281 | // Actions that require a specific permission level. |
@@ -292,10 +303,11 @@ discard block |
||
| 292 | 303 | ); |
| 293 | 304 | call_integration_hook('who_allowed', array(&$allowedActions)); |
| 294 | 305 | |
| 295 | - if (!is_array($urls)) |
|
| 296 | - $url_list = array(array($urls, $user_info['id'])); |
|
| 297 | - else |
|
| 298 | - $url_list = $urls; |
|
| 306 | + if (!is_array($urls)) { |
|
| 307 | + $url_list = array(array($urls, $user_info['id'])); |
|
| 308 | + } else { |
|
| 309 | + $url_list = $urls; |
|
| 310 | + } |
|
| 299 | 311 | |
| 300 | 312 | // These are done to later query these in large chunks. (instead of one by one.) |
| 301 | 313 | $topic_ids = array(); |
@@ -307,12 +319,14 @@ discard block |
||
| 307 | 319 | { |
| 308 | 320 | // Get the request parameters.. |
| 309 | 321 | $actions = $smcFunc['json_decode']($url[0], true); |
| 310 | - if ($actions === false) |
|
| 311 | - continue; |
|
| 322 | + if ($actions === false) { |
|
| 323 | + continue; |
|
| 324 | + } |
|
| 312 | 325 | |
| 313 | 326 | // If it's the admin or moderation center, and there is an area set, use that instead. |
| 314 | - if (isset($actions['action']) && ($actions['action'] == 'admin' || $actions['action'] == 'moderate') && isset($actions['area'])) |
|
| 315 | - $actions['action'] = $actions['area']; |
|
| 327 | + if (isset($actions['action']) && ($actions['action'] == 'admin' || $actions['action'] == 'moderate') && isset($actions['area'])) { |
|
| 328 | + $actions['action'] = $actions['area']; |
|
| 329 | + } |
|
| 316 | 330 | |
| 317 | 331 | // Check if there was no action or the action is display. |
| 318 | 332 | if (!isset($actions['action']) || $actions['action'] == 'display') |
@@ -332,12 +346,14 @@ discard block |
||
| 332 | 346 | $board_ids[$actions['board']][$k] = $txt['who_board']; |
| 333 | 347 | } |
| 334 | 348 | // It's the board index!! It must be! |
| 335 | - else |
|
| 336 | - $data[$k] = $txt['who_index']; |
|
| 349 | + else { |
|
| 350 | + $data[$k] = $txt['who_index']; |
|
| 351 | + } |
|
| 337 | 352 | } |
| 338 | 353 | // Probably an error or some goon? |
| 339 | - elseif ($actions['action'] == '') |
|
| 340 | - $data[$k] = $txt['who_index']; |
|
| 354 | + elseif ($actions['action'] == '') { |
|
| 355 | + $data[$k] = $txt['who_index']; |
|
| 356 | + } |
|
| 341 | 357 | // Some other normal action...? |
| 342 | 358 | else |
| 343 | 359 | { |
@@ -345,23 +361,25 @@ discard block |
||
| 345 | 361 | if ($actions['action'] == 'profile') |
| 346 | 362 | { |
| 347 | 363 | // Whose? Their own? |
| 348 | - if (empty($actions['u'])) |
|
| 349 | - $actions['u'] = $url[1]; |
|
| 364 | + if (empty($actions['u'])) { |
|
| 365 | + $actions['u'] = $url[1]; |
|
| 366 | + } |
|
| 350 | 367 | |
| 351 | 368 | $data[$k] = $txt['who_hidden']; |
| 352 | 369 | $profile_ids[(int) $actions['u']][$k] = $actions['u'] == $url[1] ? $txt['who_viewownprofile'] : $txt['who_viewprofile']; |
| 353 | - } |
|
| 354 | - elseif (($actions['action'] == 'post' || $actions['action'] == 'post2') && empty($actions['topic']) && isset($actions['board'])) |
|
| 370 | + } elseif (($actions['action'] == 'post' || $actions['action'] == 'post2') && empty($actions['topic']) && isset($actions['board'])) |
|
| 355 | 371 | { |
| 356 | 372 | $data[$k] = $txt['who_hidden']; |
| 357 | 373 | $board_ids[(int) $actions['board']][$k] = isset($actions['poll']) ? $txt['who_poll'] : $txt['who_post']; |
| 358 | 374 | } |
| 359 | 375 | // A subaction anyone can view... if the language string is there, show it. |
| 360 | - elseif (isset($actions['sa']) && isset($txt['whoall_' . $actions['action'] . '_' . $actions['sa']])) |
|
| 361 | - $data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']]) ? $txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']] : $txt['whoall_' . $actions['action'] . '_' . $actions['sa']]; |
|
| 376 | + elseif (isset($actions['sa']) && isset($txt['whoall_' . $actions['action'] . '_' . $actions['sa']])) { |
|
| 377 | + $data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']]) ? $txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']] : $txt['whoall_' . $actions['action'] . '_' . $actions['sa']]; |
|
| 378 | + } |
|
| 362 | 379 | // An action any old fellow can look at. (if ['whoall_' . $action] exists, we know everyone can see it.) |
| 363 | - elseif (isset($txt['whoall_' . $actions['action']])) |
|
| 364 | - $data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action']]) ? $txt[$preferred_prefix . $actions['action']] : $txt['whoall_' . $actions['action']]; |
|
| 380 | + elseif (isset($txt['whoall_' . $actions['action']])) { |
|
| 381 | + $data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action']]) ? $txt[$preferred_prefix . $actions['action']] : $txt['whoall_' . $actions['action']]; |
|
| 382 | + } |
|
| 365 | 383 | // Viewable if and only if they can see the board... |
| 366 | 384 | elseif (isset($txt['whotopic_' . $actions['action']])) |
| 367 | 385 | { |
@@ -370,8 +388,7 @@ discard block |
||
| 370 | 388 | |
| 371 | 389 | $data[$k] = $txt['who_hidden']; |
| 372 | 390 | $topic_ids[$topic][$k] = $txt['whotopic_' . $actions['action']]; |
| 373 | - } |
|
| 374 | - elseif (isset($txt['whopost_' . $actions['action']])) |
|
| 391 | + } elseif (isset($txt['whopost_' . $actions['action']])) |
|
| 375 | 392 | { |
| 376 | 393 | // Find out what message they are accessing. |
| 377 | 394 | $msgid = (int) (isset($actions['msg']) ? $actions['msg'] : (isset($actions['quote']) ? $actions['quote'] : 0)); |
@@ -394,41 +411,46 @@ discard block |
||
| 394 | 411 | $data[$k] = sprintf($txt['whopost_' . $actions['action']], $id_topic, $subject); |
| 395 | 412 | $smcFunc['db_free_result']($result); |
| 396 | 413 | |
| 397 | - if (empty($id_topic)) |
|
| 398 | - $data[$k] = $txt['who_hidden']; |
|
| 414 | + if (empty($id_topic)) { |
|
| 415 | + $data[$k] = $txt['who_hidden']; |
|
| 416 | + } |
|
| 399 | 417 | } |
| 400 | 418 | // Viewable only by administrators.. (if it starts with whoadmin, it's admin only!) |
| 401 | - elseif (allowedTo('moderate_forum') && isset($txt['whoadmin_' . $actions['action']])) |
|
| 402 | - $data[$k] = $txt['whoadmin_' . $actions['action']]; |
|
| 419 | + elseif (allowedTo('moderate_forum') && isset($txt['whoadmin_' . $actions['action']])) { |
|
| 420 | + $data[$k] = $txt['whoadmin_' . $actions['action']]; |
|
| 421 | + } |
|
| 403 | 422 | // Viewable by permission level. |
| 404 | 423 | elseif (isset($allowedActions[$actions['action']])) |
| 405 | 424 | { |
| 406 | - if (allowedTo($allowedActions[$actions['action']])) |
|
| 407 | - $data[$k] = $txt['whoallow_' . $actions['action']]; |
|
| 408 | - elseif (in_array('moderate_forum', $allowedActions[$actions['action']])) |
|
| 409 | - $data[$k] = $txt['who_moderate']; |
|
| 410 | - elseif (in_array('admin_forum', $allowedActions[$actions['action']])) |
|
| 411 | - $data[$k] = $txt['who_admin']; |
|
| 412 | - else |
|
| 413 | - $data[$k] = $txt['who_hidden']; |
|
| 425 | + if (allowedTo($allowedActions[$actions['action']])) { |
|
| 426 | + $data[$k] = $txt['whoallow_' . $actions['action']]; |
|
| 427 | + } elseif (in_array('moderate_forum', $allowedActions[$actions['action']])) { |
|
| 428 | + $data[$k] = $txt['who_moderate']; |
|
| 429 | + } elseif (in_array('admin_forum', $allowedActions[$actions['action']])) { |
|
| 430 | + $data[$k] = $txt['who_admin']; |
|
| 431 | + } else { |
|
| 432 | + $data[$k] = $txt['who_hidden']; |
|
| 433 | + } |
|
| 434 | + } elseif (!empty($actions['action'])) { |
|
| 435 | + $data[$k] = $txt['who_generic'] . ' ' . $actions['action']; |
|
| 436 | + } else { |
|
| 437 | + $data[$k] = $txt['who_unknown']; |
|
| 414 | 438 | } |
| 415 | - elseif (!empty($actions['action'])) |
|
| 416 | - $data[$k] = $txt['who_generic'] . ' ' . $actions['action']; |
|
| 417 | - else |
|
| 418 | - $data[$k] = $txt['who_unknown']; |
|
| 419 | 439 | } |
| 420 | 440 | |
| 421 | 441 | if (isset($actions['error'])) |
| 422 | 442 | { |
| 423 | - if (isset($txt[$actions['error']])) |
|
| 424 | - $error_message = str_replace('"', '"', empty($actions['who_error_params']) ? $txt[$actions['error']] : vsprintf($txt[$actions['error']], $actions['who_error_params'])); |
|
| 425 | - elseif ($actions['error'] == 'guest_login') |
|
| 426 | - $error_message = str_replace('"', '"', $txt['who_guest_login']); |
|
| 427 | - else |
|
| 428 | - $error_message = str_replace('"', '"', $actions['error']); |
|
| 429 | - |
|
| 430 | - if (!empty($error_message)) |
|
| 431 | - $data[$k] .= ' <span class="generic_icons error" title="' . $error_message . '"></span>'; |
|
| 443 | + if (isset($txt[$actions['error']])) { |
|
| 444 | + $error_message = str_replace('"', '"', empty($actions['who_error_params']) ? $txt[$actions['error']] : vsprintf($txt[$actions['error']], $actions['who_error_params'])); |
|
| 445 | + } elseif ($actions['error'] == 'guest_login') { |
|
| 446 | + $error_message = str_replace('"', '"', $txt['who_guest_login']); |
|
| 447 | + } else { |
|
| 448 | + $error_message = str_replace('"', '"', $actions['error']); |
|
| 449 | + } |
|
| 450 | + |
|
| 451 | + if (!empty($error_message)) { |
|
| 452 | + $data[$k] .= ' <span class="generic_icons error" title="' . $error_message . '"></span>'; |
|
| 453 | + } |
|
| 432 | 454 | } |
| 433 | 455 | |
| 434 | 456 | // Maybe the action is integrated into another system? |
@@ -439,12 +461,15 @@ discard block |
||
| 439 | 461 | if (!empty($integrate_action)) |
| 440 | 462 | { |
| 441 | 463 | $data[$k] = $integrate_action; |
| 442 | - if (isset($actions['topic']) && isset($topic_ids[(int) $actions['topic']][$k])) |
|
| 443 | - $topic_ids[(int) $actions['topic']][$k] = $integrate_action; |
|
| 444 | - if (isset($actions['board']) && isset($board_ids[(int) $actions['board']][$k])) |
|
| 445 | - $board_ids[(int) $actions['board']][$k] = $integrate_action; |
|
| 446 | - if (isset($actions['u']) && isset($profile_ids[(int) $actions['u']][$k])) |
|
| 447 | - $profile_ids[(int) $actions['u']][$k] = $integrate_action; |
|
| 464 | + if (isset($actions['topic']) && isset($topic_ids[(int) $actions['topic']][$k])) { |
|
| 465 | + $topic_ids[(int) $actions['topic']][$k] = $integrate_action; |
|
| 466 | + } |
|
| 467 | + if (isset($actions['board']) && isset($board_ids[(int) $actions['board']][$k])) { |
|
| 468 | + $board_ids[(int) $actions['board']][$k] = $integrate_action; |
|
| 469 | + } |
|
| 470 | + if (isset($actions['u']) && isset($profile_ids[(int) $actions['u']][$k])) { |
|
| 471 | + $profile_ids[(int) $actions['u']][$k] = $integrate_action; |
|
| 472 | + } |
|
| 448 | 473 | break; |
| 449 | 474 | } |
| 450 | 475 | } |
@@ -472,8 +497,9 @@ discard block |
||
| 472 | 497 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
| 473 | 498 | { |
| 474 | 499 | // Show the topic's subject for each of the actions. |
| 475 | - foreach ($topic_ids[$row['id_topic']] as $k => $session_text) |
|
| 476 | - $data[$k] = sprintf($session_text, $row['id_topic'], censorText($row['subject'])); |
|
| 500 | + foreach ($topic_ids[$row['id_topic']] as $k => $session_text) { |
|
| 501 | + $data[$k] = sprintf($session_text, $row['id_topic'], censorText($row['subject'])); |
|
| 502 | + } |
|
| 477 | 503 | } |
| 478 | 504 | $smcFunc['db_free_result']($result); |
| 479 | 505 | } |
@@ -495,8 +521,9 @@ discard block |
||
| 495 | 521 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
| 496 | 522 | { |
| 497 | 523 | // Put the board name into the string for each member... |
| 498 | - foreach ($board_ids[$row['id_board']] as $k => $session_text) |
|
| 499 | - $data[$k] = sprintf($session_text, $row['id_board'], $row['name']); |
|
| 524 | + foreach ($board_ids[$row['id_board']] as $k => $session_text) { |
|
| 525 | + $data[$k] = sprintf($session_text, $row['id_board'], $row['name']); |
|
| 526 | + } |
|
| 500 | 527 | } |
| 501 | 528 | $smcFunc['db_free_result']($result); |
| 502 | 529 | } |
@@ -518,23 +545,26 @@ discard block |
||
| 518 | 545 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
| 519 | 546 | { |
| 520 | 547 | // If they aren't allowed to view this person's profile, skip it. |
| 521 | - if (!$allow_view_any && ($user_info['id'] != $row['id_member'])) |
|
| 522 | - continue; |
|
| 548 | + if (!$allow_view_any && ($user_info['id'] != $row['id_member'])) { |
|
| 549 | + continue; |
|
| 550 | + } |
|
| 523 | 551 | |
| 524 | 552 | // Set their action on each - session/text to sprintf. |
| 525 | - foreach ($profile_ids[$row['id_member']] as $k => $session_text) |
|
| 526 | - $data[$k] = sprintf($session_text, $row['id_member'], $row['real_name']); |
|
| 553 | + foreach ($profile_ids[$row['id_member']] as $k => $session_text) { |
|
| 554 | + $data[$k] = sprintf($session_text, $row['id_member'], $row['real_name']); |
|
| 555 | + } |
|
| 527 | 556 | } |
| 528 | 557 | $smcFunc['db_free_result']($result); |
| 529 | 558 | } |
| 530 | 559 | |
| 531 | 560 | call_integration_hook('whos_online_after', array(&$urls, &$data)); |
| 532 | 561 | |
| 533 | - if (!is_array($urls)) |
|
| 534 | - return isset($data[0]) ? $data[0] : false; |
|
| 535 | - else |
|
| 536 | - return $data; |
|
| 537 | -} |
|
| 562 | + if (!is_array($urls)) { |
|
| 563 | + return isset($data[0]) ? $data[0] : false; |
|
| 564 | + } else { |
|
| 565 | + return $data; |
|
| 566 | + } |
|
| 567 | + } |
|
| 538 | 568 | |
| 539 | 569 | /** |
| 540 | 570 | * It prepares credit and copyright information for the credits page or the admin page |
@@ -710,8 +740,8 @@ discard block |
||
| 710 | 740 | ); |
| 711 | 741 | |
| 712 | 742 | // Give the translators some credit for their hard work. |
| 713 | - if (!empty($txt['translation_credits'])) |
|
| 714 | - $context['credits'][] = array( |
|
| 743 | + if (!empty($txt['translation_credits'])) { |
|
| 744 | + $context['credits'][] = array( |
|
| 715 | 745 | 'title' => $txt['credits_groups_translation'], |
| 716 | 746 | 'groups' => array( |
| 717 | 747 | array( |
@@ -720,6 +750,7 @@ discard block |
||
| 720 | 750 | ), |
| 721 | 751 | ), |
| 722 | 752 | ); |
| 753 | + } |
|
| 723 | 754 | |
| 724 | 755 | $context['credits'][] = array( |
| 725 | 756 | 'title' => $txt['credits_special'], |
@@ -592,7 +592,7 @@ discard block |
||
| 592 | 592 | 'Jessica "Suki" González', |
| 593 | 593 | 'Karl "RegularExpression" Benson', |
| 594 | 594 | 'Matthew "Labradoodle-360" Kerle', |
| 595 | - $user_info['is_admin'] ? 'Matt "Grudge" Wolf': 'Grudge', |
|
| 595 | + $user_info['is_admin'] ? 'Matt "Grudge" Wolf' : 'Grudge', |
|
| 596 | 596 | 'Michael "Thantos" Miller', |
| 597 | 597 | 'Norv', |
| 598 | 598 | 'Peter "Arantor" Spicer', |
@@ -824,13 +824,13 @@ discard block |
||
| 824 | 824 | $credit_info = $smcFunc['json_decode']($row['credits'], true); |
| 825 | 825 | |
| 826 | 826 | $copyright = empty($credit_info['copyright']) ? '' : $txt['credits_copyright'] . ' © ' . $smcFunc['htmlspecialchars']($credit_info['copyright']); |
| 827 | - $license = empty($credit_info['license']) ? '' : $txt['credits_license'] . ': ' . (!empty($credit_info['licenseurl']) ? '<a href="'. $smcFunc['htmlspecialchars']($credit_info['licenseurl']) .'">'. $smcFunc['htmlspecialchars']($credit_info['license']) .'</a>' : $smcFunc['htmlspecialchars']($credit_info['license'])); |
|
| 827 | + $license = empty($credit_info['license']) ? '' : $txt['credits_license'] . ': ' . (!empty($credit_info['licenseurl']) ? '<a href="' . $smcFunc['htmlspecialchars']($credit_info['licenseurl']) . '">' . $smcFunc['htmlspecialchars']($credit_info['license']) . '</a>' : $smcFunc['htmlspecialchars']($credit_info['license'])); |
|
| 828 | 828 | $version = $txt['credits_version'] . ' ' . $row['version']; |
| 829 | 829 | $title = (empty($credit_info['title']) ? $row['name'] : $smcFunc['htmlspecialchars']($credit_info['title'])) . ': ' . $version; |
| 830 | 830 | |
| 831 | 831 | // build this one out and stash it away |
| 832 | 832 | $mod_name = empty($credit_info['url']) ? $title : '<a href="' . $credit_info['url'] . '">' . $title . '</a>'; |
| 833 | - $mods[] = $mod_name . (!empty($license) ? ' | ' . $license : '') . (!empty($copyright) ? ' | ' . $copyright : ''); |
|
| 833 | + $mods[] = $mod_name . (!empty($license) ? ' | ' . $license : '') . (!empty($copyright) ? ' | ' . $copyright : ''); |
|
| 834 | 834 | } |
| 835 | 835 | cache_put_data('mods_credits', $mods, 86400); |
| 836 | 836 | } |
@@ -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 | * Check if the current directory is still valid or not. |
@@ -28,22 +29,24 @@ discard block |
||
| 28 | 29 | global $smcFunc, $boarddir, $modSettings, $context; |
| 29 | 30 | |
| 30 | 31 | // Not pretty, but since we don't want folders created for every post. It'll do unless a better solution can be found. |
| 31 | - if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'admin') |
|
| 32 | - $doit = true; |
|
| 33 | - elseif (empty($modSettings['automanage_attachments'])) |
|
| 34 | - return; |
|
| 35 | - elseif (!isset($_FILES)) |
|
| 36 | - return; |
|
| 37 | - elseif (isset($_FILES['attachment'])) |
|
| 38 | - foreach ($_FILES['attachment']['tmp_name'] as $dummy) |
|
| 32 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'admin') { |
|
| 33 | + $doit = true; |
|
| 34 | + } elseif (empty($modSettings['automanage_attachments'])) { |
|
| 35 | + return; |
|
| 36 | + } elseif (!isset($_FILES)) { |
|
| 37 | + return; |
|
| 38 | + } elseif (isset($_FILES['attachment'])) { |
|
| 39 | + foreach ($_FILES['attachment']['tmp_name'] as $dummy) |
|
| 39 | 40 | if (!empty($dummy)) |
| 40 | 41 | { |
| 41 | 42 | $doit = true; |
| 43 | + } |
|
| 42 | 44 | break; |
| 43 | 45 | } |
| 44 | 46 | |
| 45 | - if (!isset($doit)) |
|
| 46 | - return; |
|
| 47 | + if (!isset($doit)) { |
|
| 48 | + return; |
|
| 49 | + } |
|
| 47 | 50 | |
| 48 | 51 | $year = date('Y'); |
| 49 | 52 | $month = date('m'); |
@@ -54,21 +57,25 @@ discard block |
||
| 54 | 57 | |
| 55 | 58 | if (!empty($modSettings['attachment_basedirectories']) && !empty($modSettings['use_subdirectories_for_attachments'])) |
| 56 | 59 | { |
| 57 | - if (!is_array($modSettings['attachment_basedirectories'])) |
|
| 58 | - $modSettings['attachment_basedirectories'] = $smcFunc['json_decode']($modSettings['attachment_basedirectories'], true); |
|
| 60 | + if (!is_array($modSettings['attachment_basedirectories'])) { |
|
| 61 | + $modSettings['attachment_basedirectories'] = $smcFunc['json_decode']($modSettings['attachment_basedirectories'], true); |
|
| 62 | + } |
|
| 59 | 63 | $base_dir = array_search($modSettings['basedirectory_for_attachments'], $modSettings['attachment_basedirectories']); |
| 64 | + } else { |
|
| 65 | + $base_dir = 0; |
|
| 60 | 66 | } |
| 61 | - else |
|
| 62 | - $base_dir = 0; |
|
| 63 | 67 | |
| 64 | 68 | if ($modSettings['automanage_attachments'] == 1) |
| 65 | 69 | { |
| 66 | - if (!isset($modSettings['last_attachments_directory'])) |
|
| 67 | - $modSettings['last_attachments_directory'] = array(); |
|
| 68 | - if (!is_array($modSettings['last_attachments_directory'])) |
|
| 69 | - $modSettings['last_attachments_directory'] = $smcFunc['json_decode']($modSettings['last_attachments_directory'], true); |
|
| 70 | - if (!isset($modSettings['last_attachments_directory'][$base_dir])) |
|
| 71 | - $modSettings['last_attachments_directory'][$base_dir] = 0; |
|
| 70 | + if (!isset($modSettings['last_attachments_directory'])) { |
|
| 71 | + $modSettings['last_attachments_directory'] = array(); |
|
| 72 | + } |
|
| 73 | + if (!is_array($modSettings['last_attachments_directory'])) { |
|
| 74 | + $modSettings['last_attachments_directory'] = $smcFunc['json_decode']($modSettings['last_attachments_directory'], true); |
|
| 75 | + } |
|
| 76 | + if (!isset($modSettings['last_attachments_directory'][$base_dir])) { |
|
| 77 | + $modSettings['last_attachments_directory'][$base_dir] = 0; |
|
| 78 | + } |
|
| 72 | 79 | } |
| 73 | 80 | |
| 74 | 81 | $basedirectory = (!empty($modSettings['use_subdirectories_for_attachments']) ? ($modSettings['basedirectory_for_attachments']) : $boarddir); |
@@ -97,12 +104,14 @@ discard block |
||
| 97 | 104 | $updir = ''; |
| 98 | 105 | } |
| 99 | 106 | |
| 100 | - if (!is_array($modSettings['attachmentUploadDir'])) |
|
| 101 | - $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
| 102 | - if (!in_array($updir, $modSettings['attachmentUploadDir']) && !empty($updir)) |
|
| 103 | - $outputCreation = automanage_attachments_create_directory($updir); |
|
| 104 | - elseif (in_array($updir, $modSettings['attachmentUploadDir'])) |
|
| 105 | - $outputCreation = true; |
|
| 107 | + if (!is_array($modSettings['attachmentUploadDir'])) { |
|
| 108 | + $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
| 109 | + } |
|
| 110 | + if (!in_array($updir, $modSettings['attachmentUploadDir']) && !empty($updir)) { |
|
| 111 | + $outputCreation = automanage_attachments_create_directory($updir); |
|
| 112 | + } elseif (in_array($updir, $modSettings['attachmentUploadDir'])) { |
|
| 113 | + $outputCreation = true; |
|
| 114 | + } |
|
| 106 | 115 | |
| 107 | 116 | if ($outputCreation) |
| 108 | 117 | { |
@@ -139,8 +148,9 @@ discard block |
||
| 139 | 148 | $count = count($tree); |
| 140 | 149 | |
| 141 | 150 | $directory = attachments_init_dir($tree, $count); |
| 142 | - if ($directory === false) |
|
| 143 | - return false; |
|
| 151 | + if ($directory === false) { |
|
| 152 | + return false; |
|
| 153 | + } |
|
| 144 | 154 | } |
| 145 | 155 | |
| 146 | 156 | $directory .= DIRECTORY_SEPARATOR . array_shift($tree); |
@@ -168,8 +178,9 @@ discard block |
||
| 168 | 178 | } |
| 169 | 179 | |
| 170 | 180 | // Everything seems fine...let's create the .htaccess |
| 171 | - if (!file_exists($directory . DIRECTORY_SEPARATOR . '.htaccess')) |
|
| 172 | - secureDirectory($updir, true); |
|
| 181 | + if (!file_exists($directory . DIRECTORY_SEPARATOR . '.htaccess')) { |
|
| 182 | + secureDirectory($updir, true); |
|
| 183 | + } |
|
| 173 | 184 | |
| 174 | 185 | $sep = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? '\/' : DIRECTORY_SEPARATOR; |
| 175 | 186 | $updir = rtrim($updir, $sep); |
@@ -201,8 +212,9 @@ discard block |
||
| 201 | 212 | { |
| 202 | 213 | global $smcFunc, $modSettings, $boarddir; |
| 203 | 214 | |
| 204 | - if (!isset($modSettings['automanage_attachments']) || (!empty($modSettings['automanage_attachments']) && $modSettings['automanage_attachments'] != 1)) |
|
| 205 | - return; |
|
| 215 | + if (!isset($modSettings['automanage_attachments']) || (!empty($modSettings['automanage_attachments']) && $modSettings['automanage_attachments'] != 1)) { |
|
| 216 | + return; |
|
| 217 | + } |
|
| 206 | 218 | |
| 207 | 219 | $basedirectory = !empty($modSettings['use_subdirectories_for_attachments']) ? $modSettings['basedirectory_for_attachments'] : $boarddir; |
| 208 | 220 | // Just to be sure: I don't want directory separators at the end |
@@ -214,13 +226,14 @@ discard block |
||
| 214 | 226 | { |
| 215 | 227 | $base_dir = array_search($modSettings['basedirectory_for_attachments'], $modSettings['attachment_basedirectories']); |
| 216 | 228 | $base_dir = !empty($modSettings['automanage_attachments']) ? $base_dir : 0; |
| 229 | + } else { |
|
| 230 | + $base_dir = 0; |
|
| 217 | 231 | } |
| 218 | - else |
|
| 219 | - $base_dir = 0; |
|
| 220 | 232 | |
| 221 | 233 | // Get the last attachment directory for that base directory |
| 222 | - if (empty($modSettings['last_attachments_directory'][$base_dir])) |
|
| 223 | - $modSettings['last_attachments_directory'][$base_dir] = 0; |
|
| 234 | + if (empty($modSettings['last_attachments_directory'][$base_dir])) { |
|
| 235 | + $modSettings['last_attachments_directory'][$base_dir] = 0; |
|
| 236 | + } |
|
| 224 | 237 | // And increment it. |
| 225 | 238 | $modSettings['last_attachments_directory'][$base_dir]++; |
| 226 | 239 | |
@@ -235,10 +248,10 @@ discard block |
||
| 235 | 248 | $modSettings['last_attachments_directory'] = $smcFunc['json_decode']($modSettings['last_attachments_directory'], true); |
| 236 | 249 | |
| 237 | 250 | return true; |
| 251 | + } else { |
|
| 252 | + return false; |
|
| 253 | + } |
|
| 238 | 254 | } |
| 239 | - else |
|
| 240 | - return false; |
|
| 241 | -} |
|
| 242 | 255 | |
| 243 | 256 | /** |
| 244 | 257 | * Split a path into a list of all directories and subdirectories |
@@ -256,12 +269,13 @@ discard block |
||
| 256 | 269 | * in Windows we need to explode for both \ and / |
| 257 | 270 | * while in linux should be safe to explode only for / (aka DIRECTORY_SEPARATOR) |
| 258 | 271 | */ |
| 259 | - if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') |
|
| 260 | - $tree = preg_split('#[\\\/]#', $directory); |
|
| 261 | - else |
|
| 272 | + if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { |
|
| 273 | + $tree = preg_split('#[\\\/]#', $directory); |
|
| 274 | + } else |
|
| 262 | 275 | { |
| 263 | - if (substr($directory, 0, 1) != DIRECTORY_SEPARATOR) |
|
| 264 | - return false; |
|
| 276 | + if (substr($directory, 0, 1) != DIRECTORY_SEPARATOR) { |
|
| 277 | + return false; |
|
| 278 | + } |
|
| 265 | 279 | |
| 266 | 280 | $tree = explode(DIRECTORY_SEPARATOR, trim($directory, DIRECTORY_SEPARATOR)); |
| 267 | 281 | } |
@@ -285,10 +299,11 @@ discard block |
||
| 285 | 299 | //Better be sure that the first part of the path is actually a drive letter... |
| 286 | 300 | //...even if, I should check this in the admin page...isn't it? |
| 287 | 301 | //...NHAAA Let's leave space for users' complains! :P |
| 288 | - if (preg_match('/^[a-z]:$/i', $tree[0])) |
|
| 289 | - $directory = array_shift($tree); |
|
| 290 | - else |
|
| 291 | - return false; |
|
| 302 | + if (preg_match('/^[a-z]:$/i', $tree[0])) { |
|
| 303 | + $directory = array_shift($tree); |
|
| 304 | + } else { |
|
| 305 | + return false; |
|
| 306 | + } |
|
| 292 | 307 | |
| 293 | 308 | $count--; |
| 294 | 309 | } |
@@ -303,18 +318,20 @@ discard block |
||
| 303 | 318 | global $context, $modSettings, $smcFunc, $txt, $user_info; |
| 304 | 319 | |
| 305 | 320 | // Make sure we're uploading to the right place. |
| 306 | - if (!empty($modSettings['automanage_attachments'])) |
|
| 307 | - automanage_attachments_check_directory(); |
|
| 321 | + if (!empty($modSettings['automanage_attachments'])) { |
|
| 322 | + automanage_attachments_check_directory(); |
|
| 323 | + } |
|
| 308 | 324 | |
| 309 | - if (!is_array($modSettings['attachmentUploadDir'])) |
|
| 310 | - $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
| 325 | + if (!is_array($modSettings['attachmentUploadDir'])) { |
|
| 326 | + $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
| 327 | + } |
|
| 311 | 328 | |
| 312 | 329 | $context['attach_dir'] = $modSettings['attachmentUploadDir'][$modSettings['currentAttachmentUploadDir']]; |
| 313 | 330 | |
| 314 | 331 | // Is the attachments folder actualy there? |
| 315 | - if (!empty($context['dir_creation_error'])) |
|
| 316 | - $initial_error = $context['dir_creation_error']; |
|
| 317 | - elseif (!is_dir($context['attach_dir'])) |
|
| 332 | + if (!empty($context['dir_creation_error'])) { |
|
| 333 | + $initial_error = $context['dir_creation_error']; |
|
| 334 | + } elseif (!is_dir($context['attach_dir'])) |
|
| 318 | 335 | { |
| 319 | 336 | $initial_error = 'attach_folder_warning'; |
| 320 | 337 | log_error(sprintf($txt['attach_folder_admin_warning'], $context['attach_dir']), 'critical'); |
@@ -337,12 +354,12 @@ discard block |
||
| 337 | 354 | ); |
| 338 | 355 | list ($context['attachments']['quantity'], $context['attachments']['total_size']) = $smcFunc['db_fetch_row']($request); |
| 339 | 356 | $smcFunc['db_free_result']($request); |
| 340 | - } |
|
| 341 | - else |
|
| 342 | - $context['attachments'] = array( |
|
| 357 | + } else { |
|
| 358 | + $context['attachments'] = array( |
|
| 343 | 359 | 'quantity' => 0, |
| 344 | 360 | 'total_size' => 0, |
| 345 | 361 | ); |
| 362 | + } |
|
| 346 | 363 | } |
| 347 | 364 | |
| 348 | 365 | // Hmm. There are still files in session. |
@@ -352,39 +369,44 @@ discard block |
||
| 352 | 369 | // Let's try to keep them. But... |
| 353 | 370 | $ignore_temp = true; |
| 354 | 371 | // If new files are being added. We can't ignore those |
| 355 | - foreach ($_FILES['attachment']['tmp_name'] as $dummy) |
|
| 356 | - if (!empty($dummy)) |
|
| 372 | + foreach ($_FILES['attachment']['tmp_name'] as $dummy) { |
|
| 373 | + if (!empty($dummy)) |
|
| 357 | 374 | { |
| 358 | 375 | $ignore_temp = false; |
| 376 | + } |
|
| 359 | 377 | break; |
| 360 | 378 | } |
| 361 | 379 | |
| 362 | 380 | // Need to make space for the new files. So, bye bye. |
| 363 | 381 | if (!$ignore_temp) |
| 364 | 382 | { |
| 365 | - foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) |
|
| 366 | - if (strpos($attachID, 'post_tmp_' . $user_info['id']) !== false) |
|
| 383 | + foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) { |
|
| 384 | + if (strpos($attachID, 'post_tmp_' . $user_info['id']) !== false) |
|
| 367 | 385 | unlink($attachment['tmp_name']); |
| 386 | + } |
|
| 368 | 387 | |
| 369 | 388 | $context['we_are_history'] = $txt['error_temp_attachments_flushed']; |
| 370 | 389 | $_SESSION['temp_attachments'] = array(); |
| 371 | 390 | } |
| 372 | 391 | } |
| 373 | 392 | |
| 374 | - if (!isset($_FILES['attachment']['name'])) |
|
| 375 | - $_FILES['attachment']['tmp_name'] = array(); |
|
| 393 | + if (!isset($_FILES['attachment']['name'])) { |
|
| 394 | + $_FILES['attachment']['tmp_name'] = array(); |
|
| 395 | + } |
|
| 376 | 396 | |
| 377 | - if (!isset($_SESSION['temp_attachments'])) |
|
| 378 | - $_SESSION['temp_attachments'] = array(); |
|
| 397 | + if (!isset($_SESSION['temp_attachments'])) { |
|
| 398 | + $_SESSION['temp_attachments'] = array(); |
|
| 399 | + } |
|
| 379 | 400 | |
| 380 | 401 | // Remember where we are at. If it's anywhere at all. |
| 381 | - if (!$ignore_temp) |
|
| 382 | - $_SESSION['temp_attachments']['post'] = array( |
|
| 402 | + if (!$ignore_temp) { |
|
| 403 | + $_SESSION['temp_attachments']['post'] = array( |
|
| 383 | 404 | 'msg' => !empty($_REQUEST['msg']) ? $_REQUEST['msg'] : 0, |
| 384 | 405 | 'last_msg' => !empty($_REQUEST['last_msg']) ? $_REQUEST['last_msg'] : 0, |
| 385 | 406 | 'topic' => !empty($topic) ? $topic : 0, |
| 386 | 407 | 'board' => !empty($board) ? $board : 0, |
| 387 | 408 | ); |
| 409 | + } |
|
| 388 | 410 | |
| 389 | 411 | // If we have an initial error, lets just display it. |
| 390 | 412 | if (!empty($initial_error)) |
@@ -392,9 +414,10 @@ discard block |
||
| 392 | 414 | $_SESSION['temp_attachments']['initial_error'] = $initial_error; |
| 393 | 415 | |
| 394 | 416 | // And delete the files 'cos they ain't going nowhere. |
| 395 | - foreach ($_FILES['attachment']['tmp_name'] as $n => $dummy) |
|
| 396 | - if (file_exists($_FILES['attachment']['tmp_name'][$n])) |
|
| 417 | + foreach ($_FILES['attachment']['tmp_name'] as $n => $dummy) { |
|
| 418 | + if (file_exists($_FILES['attachment']['tmp_name'][$n])) |
|
| 397 | 419 | unlink($_FILES['attachment']['tmp_name'][$n]); |
| 420 | + } |
|
| 398 | 421 | |
| 399 | 422 | $_FILES['attachment']['tmp_name'] = array(); |
| 400 | 423 | } |
@@ -402,21 +425,24 @@ discard block |
||
| 402 | 425 | // Loop through $_FILES['attachment'] array and move each file to the current attachments folder. |
| 403 | 426 | foreach ($_FILES['attachment']['tmp_name'] as $n => $dummy) |
| 404 | 427 | { |
| 405 | - if ($_FILES['attachment']['name'][$n] == '') |
|
| 406 | - continue; |
|
| 428 | + if ($_FILES['attachment']['name'][$n] == '') { |
|
| 429 | + continue; |
|
| 430 | + } |
|
| 407 | 431 | |
| 408 | 432 | // First, let's first check for PHP upload errors. |
| 409 | 433 | $errors = array(); |
| 410 | 434 | if (!empty($_FILES['attachment']['error'][$n])) |
| 411 | 435 | { |
| 412 | - if ($_FILES['attachment']['error'][$n] == 2) |
|
| 413 | - $errors[] = array('file_too_big', array($modSettings['attachmentSizeLimit'])); |
|
| 414 | - elseif ($_FILES['attachment']['error'][$n] == 6) |
|
| 415 | - log_error($_FILES['attachment']['name'][$n] . ': ' . $txt['php_upload_error_6'], 'critical'); |
|
| 416 | - else |
|
| 417 | - log_error($_FILES['attachment']['name'][$n] . ': ' . $txt['php_upload_error_' . $_FILES['attachment']['error'][$n]]); |
|
| 418 | - if (empty($errors)) |
|
| 419 | - $errors[] = 'attach_php_error'; |
|
| 436 | + if ($_FILES['attachment']['error'][$n] == 2) { |
|
| 437 | + $errors[] = array('file_too_big', array($modSettings['attachmentSizeLimit'])); |
|
| 438 | + } elseif ($_FILES['attachment']['error'][$n] == 6) { |
|
| 439 | + log_error($_FILES['attachment']['name'][$n] . ': ' . $txt['php_upload_error_6'], 'critical'); |
|
| 440 | + } else { |
|
| 441 | + log_error($_FILES['attachment']['name'][$n] . ': ' . $txt['php_upload_error_' . $_FILES['attachment']['error'][$n]]); |
|
| 442 | + } |
|
| 443 | + if (empty($errors)) { |
|
| 444 | + $errors[] = 'attach_php_error'; |
|
| 445 | + } |
|
| 420 | 446 | } |
| 421 | 447 | |
| 422 | 448 | // Try to move and rename the file before doing any more checks on it. |
@@ -426,8 +452,9 @@ discard block |
||
| 426 | 452 | { |
| 427 | 453 | // The reported MIME type of the attachment might not be reliable. |
| 428 | 454 | // Fortunately, PHP 5.3+ lets us easily verify the real MIME type. |
| 429 | - if (function_exists('mime_content_type')) |
|
| 430 | - $_FILES['attachment']['type'][$n] = mime_content_type($_FILES['attachment']['tmp_name'][$n]); |
|
| 455 | + if (function_exists('mime_content_type')) { |
|
| 456 | + $_FILES['attachment']['type'][$n] = mime_content_type($_FILES['attachment']['tmp_name'][$n]); |
|
| 457 | + } |
|
| 431 | 458 | |
| 432 | 459 | $_SESSION['temp_attachments'][$attachID] = array( |
| 433 | 460 | 'name' => $smcFunc['htmlspecialchars'](basename($_FILES['attachment']['name'][$n])), |
@@ -439,16 +466,16 @@ discard block |
||
| 439 | 466 | ); |
| 440 | 467 | |
| 441 | 468 | // Move the file to the attachments folder with a temp name for now. |
| 442 | - if (@move_uploaded_file($_FILES['attachment']['tmp_name'][$n], $destName)) |
|
| 443 | - smf_chmod($destName, 0644); |
|
| 444 | - else |
|
| 469 | + if (@move_uploaded_file($_FILES['attachment']['tmp_name'][$n], $destName)) { |
|
| 470 | + smf_chmod($destName, 0644); |
|
| 471 | + } else |
|
| 445 | 472 | { |
| 446 | 473 | $_SESSION['temp_attachments'][$attachID]['errors'][] = 'attach_timeout'; |
| 447 | - if (file_exists($_FILES['attachment']['tmp_name'][$n])) |
|
| 448 | - unlink($_FILES['attachment']['tmp_name'][$n]); |
|
| 474 | + if (file_exists($_FILES['attachment']['tmp_name'][$n])) { |
|
| 475 | + unlink($_FILES['attachment']['tmp_name'][$n]); |
|
| 476 | + } |
|
| 449 | 477 | } |
| 450 | - } |
|
| 451 | - else |
|
| 478 | + } else |
|
| 452 | 479 | { |
| 453 | 480 | $_SESSION['temp_attachments'][$attachID] = array( |
| 454 | 481 | 'name' => $smcFunc['htmlspecialchars'](basename($_FILES['attachment']['name'][$n])), |
@@ -456,12 +483,14 @@ discard block |
||
| 456 | 483 | 'errors' => $errors, |
| 457 | 484 | ); |
| 458 | 485 | |
| 459 | - if (file_exists($_FILES['attachment']['tmp_name'][$n])) |
|
| 460 | - unlink($_FILES['attachment']['tmp_name'][$n]); |
|
| 486 | + if (file_exists($_FILES['attachment']['tmp_name'][$n])) { |
|
| 487 | + unlink($_FILES['attachment']['tmp_name'][$n]); |
|
| 488 | + } |
|
| 461 | 489 | } |
| 462 | 490 | // If there's no errors to this point. We still do need to apply some additional checks before we are finished. |
| 463 | - if (empty($_SESSION['temp_attachments'][$attachID]['errors'])) |
|
| 464 | - attachmentChecks($attachID); |
|
| 491 | + if (empty($_SESSION['temp_attachments'][$attachID]['errors'])) { |
|
| 492 | + attachmentChecks($attachID); |
|
| 493 | + } |
|
| 465 | 494 | } |
| 466 | 495 | // Mod authors, finally a hook to hang an alternate attachment upload system upon |
| 467 | 496 | // Upload to the current attachment folder with the file name $attachID or 'post_tmp_' . $user_info['id'] . '_' . md5(mt_rand()) |
@@ -488,21 +517,20 @@ discard block |
||
| 488 | 517 | global $modSettings, $context, $sourcedir, $smcFunc; |
| 489 | 518 | |
| 490 | 519 | // No data or missing data .... Not necessarily needed, but in case a mod author missed something. |
| 491 | - if (empty($_SESSION['temp_attachments'][$attachID])) |
|
| 492 | - $error = '$_SESSION[\'temp_attachments\'][$attachID]'; |
|
| 493 | - |
|
| 494 | - elseif (empty($attachID)) |
|
| 495 | - $error = '$attachID'; |
|
| 496 | - |
|
| 497 | - elseif (empty($context['attachments'])) |
|
| 498 | - $error = '$context[\'attachments\']'; |
|
| 499 | - |
|
| 500 | - elseif (empty($context['attach_dir'])) |
|
| 501 | - $error = '$context[\'attach_dir\']'; |
|
| 520 | + if (empty($_SESSION['temp_attachments'][$attachID])) { |
|
| 521 | + $error = '$_SESSION[\'temp_attachments\'][$attachID]'; |
|
| 522 | + } elseif (empty($attachID)) { |
|
| 523 | + $error = '$attachID'; |
|
| 524 | + } elseif (empty($context['attachments'])) { |
|
| 525 | + $error = '$context[\'attachments\']'; |
|
| 526 | + } elseif (empty($context['attach_dir'])) { |
|
| 527 | + $error = '$context[\'attach_dir\']'; |
|
| 528 | + } |
|
| 502 | 529 | |
| 503 | 530 | // Let's get their attention. |
| 504 | - if (!empty($error)) |
|
| 505 | - fatal_lang_error('attach_check_nag', 'debug', array($error)); |
|
| 531 | + if (!empty($error)) { |
|
| 532 | + fatal_lang_error('attach_check_nag', 'debug', array($error)); |
|
| 533 | + } |
|
| 506 | 534 | |
| 507 | 535 | // Just in case this slipped by the first checks, we stop it here and now |
| 508 | 536 | if ($_SESSION['temp_attachments'][$attachID]['size'] == 0) |
@@ -531,8 +559,9 @@ discard block |
||
| 531 | 559 | $size = @getimagesize($_SESSION['temp_attachments'][$attachID]['tmp_name']); |
| 532 | 560 | if (!(empty($size)) && ($size[2] != $old_format)) |
| 533 | 561 | { |
| 534 | - if (isset($context['validImageTypes'][$size[2]])) |
|
| 535 | - $_SESSION['temp_attachments'][$attachID]['type'] = 'image/' . $context['validImageTypes'][$size[2]]; |
|
| 562 | + if (isset($context['validImageTypes'][$size[2]])) { |
|
| 563 | + $_SESSION['temp_attachments'][$attachID]['type'] = 'image/' . $context['validImageTypes'][$size[2]]; |
|
| 564 | + } |
|
| 536 | 565 | } |
| 537 | 566 | } |
| 538 | 567 | } |
@@ -586,42 +615,48 @@ discard block |
||
| 586 | 615 | // Or, let the user know that it ain't gonna happen. |
| 587 | 616 | else |
| 588 | 617 | { |
| 589 | - if (isset($context['dir_creation_error'])) |
|
| 590 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = $context['dir_creation_error']; |
|
| 591 | - else |
|
| 592 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = 'ran_out_of_space'; |
|
| 618 | + if (isset($context['dir_creation_error'])) { |
|
| 619 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = $context['dir_creation_error']; |
|
| 620 | + } else { |
|
| 621 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = 'ran_out_of_space'; |
|
| 622 | + } |
|
| 593 | 623 | } |
| 624 | + } else { |
|
| 625 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = 'ran_out_of_space'; |
|
| 594 | 626 | } |
| 595 | - else |
|
| 596 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = 'ran_out_of_space'; |
|
| 597 | 627 | } |
| 598 | 628 | } |
| 599 | 629 | |
| 600 | 630 | // Is the file too big? |
| 601 | 631 | $context['attachments']['total_size'] += $_SESSION['temp_attachments'][$attachID]['size']; |
| 602 | - if (!empty($modSettings['attachmentSizeLimit']) && $_SESSION['temp_attachments'][$attachID]['size'] > $modSettings['attachmentSizeLimit'] * 1024) |
|
| 603 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = array('file_too_big', array(comma_format($modSettings['attachmentSizeLimit'], 0))); |
|
| 632 | + if (!empty($modSettings['attachmentSizeLimit']) && $_SESSION['temp_attachments'][$attachID]['size'] > $modSettings['attachmentSizeLimit'] * 1024) { |
|
| 633 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = array('file_too_big', array(comma_format($modSettings['attachmentSizeLimit'], 0))); |
|
| 634 | + } |
|
| 604 | 635 | |
| 605 | 636 | // Check the total upload size for this post... |
| 606 | - if (!empty($modSettings['attachmentPostLimit']) && $context['attachments']['total_size'] > $modSettings['attachmentPostLimit'] * 1024) |
|
| 607 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attach_max_total_file_size', array(comma_format($modSettings['attachmentPostLimit'], 0), comma_format($modSettings['attachmentPostLimit'] - (($context['attachments']['total_size'] - $_SESSION['temp_attachments'][$attachID]['size']) / 1024), 0))); |
|
| 637 | + if (!empty($modSettings['attachmentPostLimit']) && $context['attachments']['total_size'] > $modSettings['attachmentPostLimit'] * 1024) { |
|
| 638 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attach_max_total_file_size', array(comma_format($modSettings['attachmentPostLimit'], 0), comma_format($modSettings['attachmentPostLimit'] - (($context['attachments']['total_size'] - $_SESSION['temp_attachments'][$attachID]['size']) / 1024), 0))); |
|
| 639 | + } |
|
| 608 | 640 | |
| 609 | 641 | // Have we reached the maximum number of files we are allowed? |
| 610 | 642 | $context['attachments']['quantity']++; |
| 611 | 643 | |
| 612 | 644 | // Set a max limit if none exists |
| 613 | - if (empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] >= 50) |
|
| 614 | - $modSettings['attachmentNumPerPostLimit'] = 50; |
|
| 645 | + if (empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] >= 50) { |
|
| 646 | + $modSettings['attachmentNumPerPostLimit'] = 50; |
|
| 647 | + } |
|
| 615 | 648 | |
| 616 | - if (!empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] > $modSettings['attachmentNumPerPostLimit']) |
|
| 617 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attachments_limit_per_post', array($modSettings['attachmentNumPerPostLimit'])); |
|
| 649 | + if (!empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] > $modSettings['attachmentNumPerPostLimit']) { |
|
| 650 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attachments_limit_per_post', array($modSettings['attachmentNumPerPostLimit'])); |
|
| 651 | + } |
|
| 618 | 652 | |
| 619 | 653 | // File extension check |
| 620 | 654 | if (!empty($modSettings['attachmentCheckExtensions'])) |
| 621 | 655 | { |
| 622 | 656 | $allowed = explode(',', strtolower($modSettings['attachmentExtensions'])); |
| 623 | - foreach ($allowed as $k => $dummy) |
|
| 624 | - $allowed[$k] = trim($dummy); |
|
| 657 | + foreach ($allowed as $k => $dummy) { |
|
| 658 | + $allowed[$k] = trim($dummy); |
|
| 659 | + } |
|
| 625 | 660 | |
| 626 | 661 | if (!in_array(strtolower(substr(strrchr($_SESSION['temp_attachments'][$attachID]['name'], '.'), 1)), $allowed)) |
| 627 | 662 | { |
@@ -633,10 +668,12 @@ discard block |
||
| 633 | 668 | // Undo the math if there's an error |
| 634 | 669 | if (!empty($_SESSION['temp_attachments'][$attachID]['errors'])) |
| 635 | 670 | { |
| 636 | - if (isset($context['dir_size'])) |
|
| 637 | - $context['dir_size'] -= $_SESSION['temp_attachments'][$attachID]['size']; |
|
| 638 | - if (isset($context['dir_files'])) |
|
| 639 | - $context['dir_files']--; |
|
| 671 | + if (isset($context['dir_size'])) { |
|
| 672 | + $context['dir_size'] -= $_SESSION['temp_attachments'][$attachID]['size']; |
|
| 673 | + } |
|
| 674 | + if (isset($context['dir_files'])) { |
|
| 675 | + $context['dir_files']--; |
|
| 676 | + } |
|
| 640 | 677 | $context['attachments']['total_size'] -= $_SESSION['temp_attachments'][$attachID]['size']; |
| 641 | 678 | $context['attachments']['quantity']--; |
| 642 | 679 | return false; |
@@ -668,12 +705,14 @@ discard block |
||
| 668 | 705 | if (empty($attachmentOptions['mime_type']) && $attachmentOptions['width']) |
| 669 | 706 | { |
| 670 | 707 | // Got a proper mime type? |
| 671 | - if (!empty($size['mime'])) |
|
| 672 | - $attachmentOptions['mime_type'] = $size['mime']; |
|
| 708 | + if (!empty($size['mime'])) { |
|
| 709 | + $attachmentOptions['mime_type'] = $size['mime']; |
|
| 710 | + } |
|
| 673 | 711 | |
| 674 | 712 | // Otherwise a valid one? |
| 675 | - elseif (isset($context['validImageTypes'][$size[2]])) |
|
| 676 | - $attachmentOptions['mime_type'] = 'image/' . $context['validImageTypes'][$size[2]]; |
|
| 713 | + elseif (isset($context['validImageTypes'][$size[2]])) { |
|
| 714 | + $attachmentOptions['mime_type'] = 'image/' . $context['validImageTypes'][$size[2]]; |
|
| 715 | + } |
|
| 677 | 716 | } |
| 678 | 717 | |
| 679 | 718 | // It is possible we might have a MIME type that isn't actually an image but still have a size. |
@@ -685,15 +724,17 @@ discard block |
||
| 685 | 724 | } |
| 686 | 725 | |
| 687 | 726 | // Get the hash if no hash has been given yet. |
| 688 | - if (empty($attachmentOptions['file_hash'])) |
|
| 689 | - $attachmentOptions['file_hash'] = getAttachmentFilename($attachmentOptions['name'], false, null, true); |
|
| 727 | + if (empty($attachmentOptions['file_hash'])) { |
|
| 728 | + $attachmentOptions['file_hash'] = getAttachmentFilename($attachmentOptions['name'], false, null, true); |
|
| 729 | + } |
|
| 690 | 730 | |
| 691 | 731 | // Assuming no-one set the extension let's take a look at it. |
| 692 | 732 | if (empty($attachmentOptions['fileext'])) |
| 693 | 733 | { |
| 694 | 734 | $attachmentOptions['fileext'] = strtolower(strrpos($attachmentOptions['name'], '.') !== false ? substr($attachmentOptions['name'], strrpos($attachmentOptions['name'], '.') + 1) : ''); |
| 695 | - if (strlen($attachmentOptions['fileext']) > 8 || '.' . $attachmentOptions['fileext'] == $attachmentOptions['name']) |
|
| 696 | - $attachmentOptions['fileext'] = ''; |
|
| 735 | + if (strlen($attachmentOptions['fileext']) > 8 || '.' . $attachmentOptions['fileext'] == $attachmentOptions['name']) { |
|
| 736 | + $attachmentOptions['fileext'] = ''; |
|
| 737 | + } |
|
| 697 | 738 | } |
| 698 | 739 | |
| 699 | 740 | // Last chance to change stuff! |
@@ -702,8 +743,9 @@ discard block |
||
| 702 | 743 | // Make sure the folder is valid... |
| 703 | 744 | $tmp = is_array($modSettings['attachmentUploadDir']) ? $modSettings['attachmentUploadDir'] : $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
| 704 | 745 | $folders = array_keys($tmp); |
| 705 | - if (empty($attachmentOptions['id_folder']) || !in_array($attachmentOptions['id_folder'], $folders)) |
|
| 706 | - $attachmentOptions['id_folder'] = $modSettings['currentAttachmentUploadDir']; |
|
| 746 | + if (empty($attachmentOptions['id_folder']) || !in_array($attachmentOptions['id_folder'], $folders)) { |
|
| 747 | + $attachmentOptions['id_folder'] = $modSettings['currentAttachmentUploadDir']; |
|
| 748 | + } |
|
| 707 | 749 | |
| 708 | 750 | $attachmentOptions['id'] = $smcFunc['db_insert']('', |
| 709 | 751 | '{db_prefix}attachments', |
@@ -734,8 +776,8 @@ discard block |
||
| 734 | 776 | rename($attachmentOptions['tmp_name'], $attachmentOptions['destination']); |
| 735 | 777 | |
| 736 | 778 | // If it's not approved then add to the approval queue. |
| 737 | - if (!$attachmentOptions['approved']) |
|
| 738 | - $smcFunc['db_insert']('', |
|
| 779 | + if (!$attachmentOptions['approved']) { |
|
| 780 | + $smcFunc['db_insert']('', |
|
| 739 | 781 | '{db_prefix}approval_queue', |
| 740 | 782 | array( |
| 741 | 783 | 'id_attach' => 'int', 'id_msg' => 'int', |
@@ -745,9 +787,11 @@ discard block |
||
| 745 | 787 | ), |
| 746 | 788 | array() |
| 747 | 789 | ); |
| 790 | + } |
|
| 748 | 791 | |
| 749 | - if (empty($modSettings['attachmentThumbnails']) || (empty($attachmentOptions['width']) && empty($attachmentOptions['height']))) |
|
| 750 | - return true; |
|
| 792 | + if (empty($modSettings['attachmentThumbnails']) || (empty($attachmentOptions['width']) && empty($attachmentOptions['height']))) { |
|
| 793 | + return true; |
|
| 794 | + } |
|
| 751 | 795 | |
| 752 | 796 | // Like thumbnails, do we? |
| 753 | 797 | if (!empty($modSettings['attachmentThumbWidth']) && !empty($modSettings['attachmentThumbHeight']) && ($attachmentOptions['width'] > $modSettings['attachmentThumbWidth'] || $attachmentOptions['height'] > $modSettings['attachmentThumbHeight'])) |
@@ -758,13 +802,15 @@ discard block |
||
| 758 | 802 | $size = @getimagesize($attachmentOptions['destination'] . '_thumb'); |
| 759 | 803 | list ($thumb_width, $thumb_height) = $size; |
| 760 | 804 | |
| 761 | - if (!empty($size['mime'])) |
|
| 762 | - $thumb_mime = $size['mime']; |
|
| 763 | - elseif (isset($context['validImageTypes'][$size[2]])) |
|
| 764 | - $thumb_mime = 'image/' . $context['validImageTypes'][$size[2]]; |
|
| 805 | + if (!empty($size['mime'])) { |
|
| 806 | + $thumb_mime = $size['mime']; |
|
| 807 | + } elseif (isset($context['validImageTypes'][$size[2]])) { |
|
| 808 | + $thumb_mime = 'image/' . $context['validImageTypes'][$size[2]]; |
|
| 809 | + } |
|
| 765 | 810 | // Lord only knows how this happened... |
| 766 | - else |
|
| 767 | - $thumb_mime = ''; |
|
| 811 | + else { |
|
| 812 | + $thumb_mime = ''; |
|
| 813 | + } |
|
| 768 | 814 | |
| 769 | 815 | $thumb_filename = $attachmentOptions['name'] . '_thumb'; |
| 770 | 816 | $thumb_size = filesize($attachmentOptions['destination'] . '_thumb'); |
@@ -844,15 +890,17 @@ discard block |
||
| 844 | 890 | global $smcFunc; |
| 845 | 891 | |
| 846 | 892 | // Oh, come on! |
| 847 | - if (empty($attachIDs) || empty($msgID)) |
|
| 848 | - return false; |
|
| 893 | + if (empty($attachIDs) || empty($msgID)) { |
|
| 894 | + return false; |
|
| 895 | + } |
|
| 849 | 896 | |
| 850 | 897 | // "I see what is right and approve, but I do what is wrong." |
| 851 | 898 | call_integration_hook('integrate_assign_attachments', array(&$attachIDs, &$msgID)); |
| 852 | 899 | |
| 853 | 900 | // One last check |
| 854 | - if (empty($attachIDs)) |
|
| 855 | - return false; |
|
| 901 | + if (empty($attachIDs)) { |
|
| 902 | + return false; |
|
| 903 | + } |
|
| 856 | 904 | |
| 857 | 905 | // Perform. |
| 858 | 906 | $smcFunc['db_query']('', ' |
@@ -880,8 +928,9 @@ discard block |
||
| 880 | 928 | global $board, $modSettings, $context, $scripturl, $smcFunc; |
| 881 | 929 | |
| 882 | 930 | // Meh... |
| 883 | - if (empty($attachID)) |
|
| 884 | - return 'attachments_no_data_loaded'; |
|
| 931 | + if (empty($attachID)) { |
|
| 932 | + return 'attachments_no_data_loaded'; |
|
| 933 | + } |
|
| 885 | 934 | |
| 886 | 935 | // Make it easy. |
| 887 | 936 | $msgID = !empty($_REQUEST['msg']) ? (int) $_REQUEST['msg'] : 0; |
@@ -890,20 +939,23 @@ discard block |
||
| 890 | 939 | $externalParse = call_integration_hook('integrate_pre_parseAttachBBC', array($attachID, $msgID)); |
| 891 | 940 | |
| 892 | 941 | // "I am innocent of the blood of this just person: see ye to it." |
| 893 | - if (!empty($externalParse) && (is_string($externalParse) || is_array($externalParse))) |
|
| 894 | - return $externalParse; |
|
| 942 | + if (!empty($externalParse) && (is_string($externalParse) || is_array($externalParse))) { |
|
| 943 | + return $externalParse; |
|
| 944 | + } |
|
| 895 | 945 | |
| 896 | 946 | //Are attachments enable? |
| 897 | - if (empty($modSettings['attachmentEnable'])) |
|
| 898 | - return 'attachments_not_enable'; |
|
| 947 | + if (empty($modSettings['attachmentEnable'])) { |
|
| 948 | + return 'attachments_not_enable'; |
|
| 949 | + } |
|
| 899 | 950 | |
| 900 | 951 | // Previewing much? no msg ID has been set yet. |
| 901 | 952 | if (!empty($context['preview_message'])) |
| 902 | 953 | { |
| 903 | 954 | $allAttachments = getAttachsByMsg(0); |
| 904 | 955 | |
| 905 | - if (empty($allAttachments[0][$attachID])) |
|
| 906 | - return 'attachments_no_data_loaded'; |
|
| 956 | + if (empty($allAttachments[0][$attachID])) { |
|
| 957 | + return 'attachments_no_data_loaded'; |
|
| 958 | + } |
|
| 907 | 959 | |
| 908 | 960 | $attachLoaded = loadAttachmentContext(0, $allAttachments); |
| 909 | 961 | |
@@ -915,57 +967,66 @@ discard block |
||
| 915 | 967 | $attachContext['link'] = '<a href="' . $scripturl . '?action=dlattach;attach=' . $attachID . ';type=preview' . (empty($attachContext['is_image']) ? ';file' : '') . '">' . $smcFunc['htmlspecialchars']($attachContext['name']) . '</a>'; |
| 916 | 968 | |
| 917 | 969 | // Fix the thumbnail too, if the image has one. |
| 918 | - if (!empty($attachContext['thumbnail']) && !empty($attachContext['thumbnail']['has_thumb'])) |
|
| 919 | - $attachContext['thumbnail']['href'] = $scripturl . '?action=dlattach;attach=' . $attachContext['thumbnail']['id'] . ';image;type=preview'; |
|
| 970 | + if (!empty($attachContext['thumbnail']) && !empty($attachContext['thumbnail']['has_thumb'])) { |
|
| 971 | + $attachContext['thumbnail']['href'] = $scripturl . '?action=dlattach;attach=' . $attachContext['thumbnail']['id'] . ';image;type=preview'; |
|
| 972 | + } |
|
| 920 | 973 | |
| 921 | 974 | return $attachContext; |
| 922 | 975 | } |
| 923 | 976 | |
| 924 | 977 | // There is always the chance someone else has already done our dirty work... |
| 925 | 978 | // If so, all pertinent checks were already done. Hopefully... |
| 926 | - if (!empty($context['current_attachments']) && !empty($context['current_attachments'][$attachID])) |
|
| 927 | - return $context['current_attachments'][$attachID]; |
|
| 979 | + if (!empty($context['current_attachments']) && !empty($context['current_attachments'][$attachID])) { |
|
| 980 | + return $context['current_attachments'][$attachID]; |
|
| 981 | + } |
|
| 928 | 982 | |
| 929 | 983 | // If we are lucky enough to be in $board's scope then check it! |
| 930 | - if (!empty($board) && !allowedTo('view_attachments', $board)) |
|
| 931 | - return 'attachments_not_allowed_to_see'; |
|
| 984 | + if (!empty($board) && !allowedTo('view_attachments', $board)) { |
|
| 985 | + return 'attachments_not_allowed_to_see'; |
|
| 986 | + } |
|
| 932 | 987 | |
| 933 | 988 | // Get the message info associated with this particular attach ID. |
| 934 | 989 | $attachInfo = getAttachMsgInfo($attachID); |
| 935 | 990 | |
| 936 | 991 | // There is always the chance this attachment no longer exists or isn't associated to a message anymore... |
| 937 | - if (empty($attachInfo) || empty($attachInfo['msg'])) |
|
| 938 | - return 'attachments_no_msg_associated'; |
|
| 992 | + if (empty($attachInfo) || empty($attachInfo['msg'])) { |
|
| 993 | + return 'attachments_no_msg_associated'; |
|
| 994 | + } |
|
| 939 | 995 | |
| 940 | 996 | // Hold it! got the info now check if you can see this attachment. |
| 941 | - if (!allowedTo('view_attachments', $attachInfo['board'])) |
|
| 942 | - return 'attachments_not_allowed_to_see'; |
|
| 997 | + if (!allowedTo('view_attachments', $attachInfo['board'])) { |
|
| 998 | + return 'attachments_not_allowed_to_see'; |
|
| 999 | + } |
|
| 943 | 1000 | |
| 944 | 1001 | $allAttachments = getAttachsByMsg($attachInfo['msg']); |
| 945 | 1002 | $attachContext = $allAttachments[$attachInfo['msg']][$attachID]; |
| 946 | 1003 | |
| 947 | 1004 | // No point in keep going further. |
| 948 | - if (!allowedTo('view_attachments', $attachContext['board'])) |
|
| 949 | - return 'attachments_not_allowed_to_see'; |
|
| 1005 | + if (!allowedTo('view_attachments', $attachContext['board'])) { |
|
| 1006 | + return 'attachments_not_allowed_to_see'; |
|
| 1007 | + } |
|
| 950 | 1008 | |
| 951 | 1009 | // Load this particular attach's context. |
| 952 | - if (!empty($attachContext)) |
|
| 953 | - $attachLoaded = loadAttachmentContext($attachContext['id_msg'], $allAttachments); |
|
| 1010 | + if (!empty($attachContext)) { |
|
| 1011 | + $attachLoaded = loadAttachmentContext($attachContext['id_msg'], $allAttachments); |
|
| 1012 | + } |
|
| 954 | 1013 | |
| 955 | 1014 | // One last check, you know, gotta be paranoid... |
| 956 | - else |
|
| 957 | - return 'attachments_no_data_loaded'; |
|
| 1015 | + else { |
|
| 1016 | + return 'attachments_no_data_loaded'; |
|
| 1017 | + } |
|
| 958 | 1018 | |
| 959 | 1019 | // This is the last "if" I promise! |
| 960 | - if (empty($attachLoaded)) |
|
| 961 | - return 'attachments_no_data_loaded'; |
|
| 962 | - |
|
| 963 | - else |
|
| 964 | - $attachContext = $attachLoaded[$attachID]; |
|
| 1020 | + if (empty($attachLoaded)) { |
|
| 1021 | + return 'attachments_no_data_loaded'; |
|
| 1022 | + } else { |
|
| 1023 | + $attachContext = $attachLoaded[$attachID]; |
|
| 1024 | + } |
|
| 965 | 1025 | |
| 966 | 1026 | // You may or may not want to show this under the post. |
| 967 | - if (!empty($modSettings['dont_show_attach_under_post']) && !isset($context['show_attach_under_post'][$attachID])) |
|
| 968 | - $context['show_attach_under_post'][$attachID] = $attachID; |
|
| 1027 | + if (!empty($modSettings['dont_show_attach_under_post']) && !isset($context['show_attach_under_post'][$attachID])) { |
|
| 1028 | + $context['show_attach_under_post'][$attachID] = $attachID; |
|
| 1029 | + } |
|
| 969 | 1030 | |
| 970 | 1031 | // Last minute changes? |
| 971 | 1032 | call_integration_hook('integrate_post_parseAttachBBC', array(&$attachContext)); |
@@ -985,8 +1046,9 @@ discard block |
||
| 985 | 1046 | { |
| 986 | 1047 | global $smcFunc, $modSettings; |
| 987 | 1048 | |
| 988 | - if (empty($attachIDs)) |
|
| 989 | - return array(); |
|
| 1049 | + if (empty($attachIDs)) { |
|
| 1050 | + return array(); |
|
| 1051 | + } |
|
| 990 | 1052 | |
| 991 | 1053 | $return = array(); |
| 992 | 1054 | |
@@ -1002,11 +1064,12 @@ discard block |
||
| 1002 | 1064 | ) |
| 1003 | 1065 | ); |
| 1004 | 1066 | |
| 1005 | - if ($smcFunc['db_num_rows']($request) != 1) |
|
| 1006 | - return array(); |
|
| 1067 | + if ($smcFunc['db_num_rows']($request) != 1) { |
|
| 1068 | + return array(); |
|
| 1069 | + } |
|
| 1007 | 1070 | |
| 1008 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1009 | - $return[$row['id_attach']] = array( |
|
| 1071 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1072 | + $return[$row['id_attach']] = array( |
|
| 1010 | 1073 | 'name' => $smcFunc['htmlspecialchars']($row['filename']), |
| 1011 | 1074 | 'size' => $row['size'], |
| 1012 | 1075 | 'attachID' => $row['id_attach'], |
@@ -1015,6 +1078,7 @@ discard block |
||
| 1015 | 1078 | 'mime_type' => $row['mime_type'], |
| 1016 | 1079 | 'thumb' => $row['id_thumb'], |
| 1017 | 1080 | ); |
| 1081 | + } |
|
| 1018 | 1082 | $smcFunc['db_free_result']($request); |
| 1019 | 1083 | |
| 1020 | 1084 | return $return; |
@@ -1031,8 +1095,9 @@ discard block |
||
| 1031 | 1095 | { |
| 1032 | 1096 | global $smcFunc; |
| 1033 | 1097 | |
| 1034 | - if (empty($attachID)) |
|
| 1035 | - return array(); |
|
| 1098 | + if (empty($attachID)) { |
|
| 1099 | + return array(); |
|
| 1100 | + } |
|
| 1036 | 1101 | |
| 1037 | 1102 | $request = $smcFunc['db_query']('', ' |
| 1038 | 1103 | SELECT a.id_msg AS msg, m.id_topic AS topic, m.id_board AS board |
@@ -1045,8 +1110,9 @@ discard block |
||
| 1045 | 1110 | ) |
| 1046 | 1111 | ); |
| 1047 | 1112 | |
| 1048 | - if ($smcFunc['db_num_rows']($request) != 1) |
|
| 1049 | - return array(); |
|
| 1113 | + if ($smcFunc['db_num_rows']($request) != 1) { |
|
| 1114 | + return array(); |
|
| 1115 | + } |
|
| 1050 | 1116 | |
| 1051 | 1117 | $row = $smcFunc['db_fetch_assoc']($request); |
| 1052 | 1118 | $smcFunc['db_free_result']($request); |
@@ -1087,8 +1153,9 @@ discard block |
||
| 1087 | 1153 | $temp = array(); |
| 1088 | 1154 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 1089 | 1155 | { |
| 1090 | - if (!$row['approved'] && $modSettings['postmod_active'] && !allowedTo('approve_posts') && (!isset($all_posters[$row['id_msg']]) || $all_posters[$row['id_msg']] != $user_info['id'])) |
|
| 1091 | - continue; |
|
| 1156 | + if (!$row['approved'] && $modSettings['postmod_active'] && !allowedTo('approve_posts') && (!isset($all_posters[$row['id_msg']]) || $all_posters[$row['id_msg']] != $user_info['id'])) { |
|
| 1157 | + continue; |
|
| 1158 | + } |
|
| 1092 | 1159 | |
| 1093 | 1160 | $temp[$row['id_attach']] = $row; |
| 1094 | 1161 | } |
@@ -1117,8 +1184,9 @@ discard block |
||
| 1117 | 1184 | { |
| 1118 | 1185 | global $modSettings, $txt, $scripturl, $sourcedir, $smcFunc; |
| 1119 | 1186 | |
| 1120 | - if (empty($attachments) || empty($attachments[$id_msg])) |
|
| 1121 | - return array(); |
|
| 1187 | + if (empty($attachments) || empty($attachments[$id_msg])) { |
|
| 1188 | + return array(); |
|
| 1189 | + } |
|
| 1122 | 1190 | |
| 1123 | 1191 | // Set up the attachment info - based on code by Meriadoc. |
| 1124 | 1192 | $attachmentData = array(); |
@@ -1142,11 +1210,13 @@ discard block |
||
| 1142 | 1210 | ); |
| 1143 | 1211 | |
| 1144 | 1212 | // If something is unapproved we'll note it so we can sort them. |
| 1145 | - if (!$attachment['approved']) |
|
| 1146 | - $have_unapproved = true; |
|
| 1213 | + if (!$attachment['approved']) { |
|
| 1214 | + $have_unapproved = true; |
|
| 1215 | + } |
|
| 1147 | 1216 | |
| 1148 | - if (!$attachmentData[$i]['is_image']) |
|
| 1149 | - continue; |
|
| 1217 | + if (!$attachmentData[$i]['is_image']) { |
|
| 1218 | + continue; |
|
| 1219 | + } |
|
| 1150 | 1220 | |
| 1151 | 1221 | $attachmentData[$i]['real_width'] = $attachment['width']; |
| 1152 | 1222 | $attachmentData[$i]['width'] = $attachment['width']; |
@@ -1167,11 +1237,11 @@ discard block |
||
| 1167 | 1237 | // So what folder are we putting this image in? |
| 1168 | 1238 | if (!empty($modSettings['currentAttachmentUploadDir'])) |
| 1169 | 1239 | { |
| 1170 | - if (!is_array($modSettings['attachmentUploadDir'])) |
|
| 1171 | - $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
| 1240 | + if (!is_array($modSettings['attachmentUploadDir'])) { |
|
| 1241 | + $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
| 1242 | + } |
|
| 1172 | 1243 | $id_folder_thumb = $modSettings['currentAttachmentUploadDir']; |
| 1173 | - } |
|
| 1174 | - else |
|
| 1244 | + } else |
|
| 1175 | 1245 | { |
| 1176 | 1246 | $id_folder_thumb = 1; |
| 1177 | 1247 | } |
@@ -1185,10 +1255,11 @@ discard block |
||
| 1185 | 1255 | $thumb_ext = isset($context['validImageTypes'][$size[2]]) ? $context['validImageTypes'][$size[2]] : ''; |
| 1186 | 1256 | |
| 1187 | 1257 | // Figure out the mime type. |
| 1188 | - if (!empty($size['mime'])) |
|
| 1189 | - $thumb_mime = $size['mime']; |
|
| 1190 | - else |
|
| 1191 | - $thumb_mime = 'image/' . $thumb_ext; |
|
| 1258 | + if (!empty($size['mime'])) { |
|
| 1259 | + $thumb_mime = $size['mime']; |
|
| 1260 | + } else { |
|
| 1261 | + $thumb_mime = 'image/' . $thumb_ext; |
|
| 1262 | + } |
|
| 1192 | 1263 | |
| 1193 | 1264 | $thumb_filename = $attachment['filename'] . '_thumb'; |
| 1194 | 1265 | $thumb_hash = getAttachmentFilename($thumb_filename, false, null, true); |
@@ -1235,11 +1306,12 @@ discard block |
||
| 1235 | 1306 | } |
| 1236 | 1307 | } |
| 1237 | 1308 | |
| 1238 | - if (!empty($attachment['id_thumb'])) |
|
| 1239 | - $attachmentData[$i]['thumbnail'] = array( |
|
| 1309 | + if (!empty($attachment['id_thumb'])) { |
|
| 1310 | + $attachmentData[$i]['thumbnail'] = array( |
|
| 1240 | 1311 | 'id' => $attachment['id_thumb'], |
| 1241 | 1312 | 'href' => $scripturl . '?action=dlattach;topic=' . $attachment['topic'] . '.0;attach=' . $attachment['id_thumb'] . ';image', |
| 1242 | 1313 | ); |
| 1314 | + } |
|
| 1243 | 1315 | $attachmentData[$i]['thumbnail']['has_thumb'] = !empty($attachment['id_thumb']); |
| 1244 | 1316 | |
| 1245 | 1317 | // If thumbnails are disabled, check the maximum size of the image. |
@@ -1249,30 +1321,31 @@ discard block |
||
| 1249 | 1321 | { |
| 1250 | 1322 | $attachmentData[$i]['width'] = $modSettings['max_image_width']; |
| 1251 | 1323 | $attachmentData[$i]['height'] = floor($attachment['height'] * $modSettings['max_image_width'] / $attachment['width']); |
| 1252 | - } |
|
| 1253 | - elseif (!empty($modSettings['max_image_width'])) |
|
| 1324 | + } elseif (!empty($modSettings['max_image_width'])) |
|
| 1254 | 1325 | { |
| 1255 | 1326 | $attachmentData[$i]['width'] = floor($attachment['width'] * $modSettings['max_image_height'] / $attachment['height']); |
| 1256 | 1327 | $attachmentData[$i]['height'] = $modSettings['max_image_height']; |
| 1257 | 1328 | } |
| 1258 | - } |
|
| 1259 | - elseif ($attachmentData[$i]['thumbnail']['has_thumb']) |
|
| 1329 | + } elseif ($attachmentData[$i]['thumbnail']['has_thumb']) |
|
| 1260 | 1330 | { |
| 1261 | 1331 | // If the image is too large to show inline, make it a popup. |
| 1262 | - if (((!empty($modSettings['max_image_width']) && $attachmentData[$i]['real_width'] > $modSettings['max_image_width']) || (!empty($modSettings['max_image_height']) && $attachmentData[$i]['real_height'] > $modSettings['max_image_height']))) |
|
| 1263 | - $attachmentData[$i]['thumbnail']['javascript'] = 'return reqWin(\'' . $attachmentData[$i]['href'] . ';image\', ' . ($attachment['width'] + 20) . ', ' . ($attachment['height'] + 20) . ', true);'; |
|
| 1264 | - else |
|
| 1265 | - $attachmentData[$i]['thumbnail']['javascript'] = 'return expandThumb(' . $attachment['id_attach'] . ');'; |
|
| 1332 | + if (((!empty($modSettings['max_image_width']) && $attachmentData[$i]['real_width'] > $modSettings['max_image_width']) || (!empty($modSettings['max_image_height']) && $attachmentData[$i]['real_height'] > $modSettings['max_image_height']))) { |
|
| 1333 | + $attachmentData[$i]['thumbnail']['javascript'] = 'return reqWin(\'' . $attachmentData[$i]['href'] . ';image\', ' . ($attachment['width'] + 20) . ', ' . ($attachment['height'] + 20) . ', true);'; |
|
| 1334 | + } else { |
|
| 1335 | + $attachmentData[$i]['thumbnail']['javascript'] = 'return expandThumb(' . $attachment['id_attach'] . ');'; |
|
| 1336 | + } |
|
| 1266 | 1337 | } |
| 1267 | 1338 | |
| 1268 | - if (!$attachmentData[$i]['thumbnail']['has_thumb']) |
|
| 1269 | - $attachmentData[$i]['downloads']++; |
|
| 1339 | + if (!$attachmentData[$i]['thumbnail']['has_thumb']) { |
|
| 1340 | + $attachmentData[$i]['downloads']++; |
|
| 1341 | + } |
|
| 1270 | 1342 | } |
| 1271 | 1343 | } |
| 1272 | 1344 | |
| 1273 | 1345 | // Do we need to instigate a sort? |
| 1274 | - if ($have_unapproved) |
|
| 1275 | - usort($attachmentData, 'approved_attach_sort'); |
|
| 1346 | + if ($have_unapproved) { |
|
| 1347 | + usort($attachmentData, 'approved_attach_sort'); |
|
| 1348 | + } |
|
| 1276 | 1349 | |
| 1277 | 1350 | return $attachmentData; |
| 1278 | 1351 | } |
@@ -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 = $smcFunc['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 = $smcFunc['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'), |
@@ -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 | loadLanguage('Drafts'); |
| 21 | 22 | |
@@ -33,8 +34,9 @@ discard block |
||
| 33 | 34 | global $context, $user_info, $smcFunc, $modSettings, $board; |
| 34 | 35 | |
| 35 | 36 | // can you be, should you be ... here? |
| 36 | - if (empty($modSettings['drafts_post_enabled']) || !allowedTo('post_draft') || !isset($_POST['save_draft']) || !isset($_POST['id_draft'])) |
|
| 37 | - return false; |
|
| 37 | + if (empty($modSettings['drafts_post_enabled']) || !allowedTo('post_draft') || !isset($_POST['save_draft']) || !isset($_POST['id_draft'])) { |
|
| 38 | + return false; |
|
| 39 | + } |
|
| 38 | 40 | |
| 39 | 41 | // read in what they sent us, if anything |
| 40 | 42 | $id_draft = (int) $_POST['id_draft']; |
@@ -46,14 +48,16 @@ discard block |
||
| 46 | 48 | $context['draft_saved_on'] = $draft_info['poster_time']; |
| 47 | 49 | |
| 48 | 50 | // since we were called from the autosave function, send something back |
| 49 | - if (!empty($id_draft)) |
|
| 50 | - XmlDraft($id_draft); |
|
| 51 | + if (!empty($id_draft)) { |
|
| 52 | + XmlDraft($id_draft); |
|
| 53 | + } |
|
| 51 | 54 | |
| 52 | 55 | return true; |
| 53 | 56 | } |
| 54 | 57 | |
| 55 | - if (!isset($_POST['message'])) |
|
| 56 | - $_POST['message'] = isset($_POST['quickReply']) ? $_POST['quickReply'] : ''; |
|
| 58 | + if (!isset($_POST['message'])) { |
|
| 59 | + $_POST['message'] = isset($_POST['quickReply']) ? $_POST['quickReply'] : ''; |
|
| 60 | + } |
|
| 57 | 61 | |
| 58 | 62 | // prepare any data from the form |
| 59 | 63 | $topic_id = empty($_REQUEST['topic']) ? 0 : (int) $_REQUEST['topic']; |
@@ -66,8 +70,9 @@ discard block |
||
| 66 | 70 | |
| 67 | 71 | // message and subject still need a bit more work |
| 68 | 72 | preparsecode($draft['body']); |
| 69 | - if ($smcFunc['strlen']($draft['subject']) > 100) |
|
| 70 | - $draft['subject'] = $smcFunc['substr']($draft['subject'], 0, 100); |
|
| 73 | + if ($smcFunc['strlen']($draft['subject']) > 100) { |
|
| 74 | + $draft['subject'] = $smcFunc['substr']($draft['subject'], 0, 100); |
|
| 75 | + } |
|
| 71 | 76 | |
| 72 | 77 | // Modifying an existing draft, like hitting the save draft button or autosave enabled? |
| 73 | 78 | if (!empty($id_draft) && !empty($draft_info)) |
@@ -148,9 +153,9 @@ discard block |
||
| 148 | 153 | { |
| 149 | 154 | $context['draft_saved'] = true; |
| 150 | 155 | $context['id_draft'] = $id_draft; |
| 156 | + } else { |
|
| 157 | + $post_errors[] = 'draft_not_saved'; |
|
| 151 | 158 | } |
| 152 | - else |
|
| 153 | - $post_errors[] = 'draft_not_saved'; |
|
| 154 | 159 | |
| 155 | 160 | // cleanup |
| 156 | 161 | unset($_POST['save_draft']); |
@@ -180,8 +185,9 @@ discard block |
||
| 180 | 185 | global $context, $user_info, $smcFunc, $modSettings; |
| 181 | 186 | |
| 182 | 187 | // PM survey says ... can you stay or must you go |
| 183 | - if (empty($modSettings['drafts_pm_enabled']) || !allowedTo('pm_draft') || !isset($_POST['save_draft'])) |
|
| 184 | - return false; |
|
| 188 | + if (empty($modSettings['drafts_pm_enabled']) || !allowedTo('pm_draft') || !isset($_POST['save_draft'])) { |
|
| 189 | + return false; |
|
| 190 | + } |
|
| 185 | 191 | |
| 186 | 192 | // read in what you sent us |
| 187 | 193 | $id_pm_draft = (int) $_POST['id_pm_draft']; |
@@ -193,8 +199,9 @@ discard block |
||
| 193 | 199 | $context['draft_saved_on'] = $draft_info['poster_time']; |
| 194 | 200 | |
| 195 | 201 | // Send something back to the javascript caller |
| 196 | - if (!empty($id_draft)) |
|
| 197 | - XmlDraft($id_draft); |
|
| 202 | + if (!empty($id_draft)) { |
|
| 203 | + XmlDraft($id_draft); |
|
| 204 | + } |
|
| 198 | 205 | |
| 199 | 206 | return true; |
| 200 | 207 | } |
@@ -204,9 +211,9 @@ discard block |
||
| 204 | 211 | { |
| 205 | 212 | $recipientList['to'] = isset($_POST['recipient_to']) ? explode(',', $_POST['recipient_to']) : array(); |
| 206 | 213 | $recipientList['bcc'] = isset($_POST['recipient_bcc']) ? explode(',', $_POST['recipient_bcc']) : array(); |
| 214 | + } elseif (!empty($draft_info['to_list']) && empty($recipientList)) { |
|
| 215 | + $recipientList = $smcFunc['json_decode']($draft_info['to_list'], true); |
|
| 207 | 216 | } |
| 208 | - elseif (!empty($draft_info['to_list']) && empty($recipientList)) |
|
| 209 | - $recipientList = $smcFunc['json_decode']($draft_info['to_list'], true); |
|
| 210 | 217 | |
| 211 | 218 | // prepare the data we got from the form |
| 212 | 219 | $reply_id = empty($_POST['replied_to']) ? 0 : (int) $_POST['replied_to']; |
@@ -215,8 +222,9 @@ discard block |
||
| 215 | 222 | |
| 216 | 223 | // message and subject always need a bit more work |
| 217 | 224 | preparsecode($draft['body']); |
| 218 | - if ($smcFunc['strlen']($draft['subject']) > 100) |
|
| 219 | - $draft['subject'] = $smcFunc['substr']($draft['subject'], 0, 100); |
|
| 225 | + if ($smcFunc['strlen']($draft['subject']) > 100) { |
|
| 226 | + $draft['subject'] = $smcFunc['substr']($draft['subject'], 0, 100); |
|
| 227 | + } |
|
| 220 | 228 | |
| 221 | 229 | // Modifying an existing PM draft? |
| 222 | 230 | if (!empty($id_pm_draft) && !empty($draft_info)) |
@@ -280,9 +288,9 @@ discard block |
||
| 280 | 288 | { |
| 281 | 289 | $context['draft_saved'] = true; |
| 282 | 290 | $context['id_pm_draft'] = $id_pm_draft; |
| 291 | + } else { |
|
| 292 | + $post_errors[] = 'draft_not_saved'; |
|
| 283 | 293 | } |
| 284 | - else |
|
| 285 | - $post_errors[] = 'draft_not_saved'; |
|
| 286 | 294 | } |
| 287 | 295 | |
| 288 | 296 | // if we were called from the autosave function, send something back |
@@ -315,8 +323,9 @@ discard block |
||
| 315 | 323 | $type = (int) $type; |
| 316 | 324 | |
| 317 | 325 | // nothing to read, nothing to do |
| 318 | - if (empty($id_draft)) |
|
| 319 | - return false; |
|
| 326 | + if (empty($id_draft)) { |
|
| 327 | + return false; |
|
| 328 | + } |
|
| 320 | 329 | |
| 321 | 330 | // load in this draft from the DB |
| 322 | 331 | $request = $smcFunc['db_query']('', ' |
@@ -337,8 +346,9 @@ discard block |
||
| 337 | 346 | ); |
| 338 | 347 | |
| 339 | 348 | // no results? |
| 340 | - if (!$smcFunc['db_num_rows']($request)) |
|
| 341 | - return false; |
|
| 349 | + if (!$smcFunc['db_num_rows']($request)) { |
|
| 350 | + return false; |
|
| 351 | + } |
|
| 342 | 352 | |
| 343 | 353 | // load up the data |
| 344 | 354 | $draft_info = $smcFunc['db_fetch_assoc']($request); |
@@ -358,8 +368,7 @@ discard block |
||
| 358 | 368 | $context['subject'] = !empty($draft_info['subject']) ? stripslashes($draft_info['subject']) : ''; |
| 359 | 369 | $context['board'] = !empty($draft_info['id_board']) ? $draft_info['id_board'] : ''; |
| 360 | 370 | $context['id_draft'] = !empty($draft_info['id_draft']) ? $draft_info['id_draft'] : 0; |
| 361 | - } |
|
| 362 | - elseif ($type === 1) |
|
| 371 | + } elseif ($type === 1) |
|
| 363 | 372 | { |
| 364 | 373 | // one of those pm drafts? then set it up like we have an error |
| 365 | 374 | $_REQUEST['subject'] = !empty($draft_info['subject']) ? stripslashes($draft_info['subject']) : ''; |
@@ -395,12 +404,14 @@ discard block |
||
| 395 | 404 | global $user_info, $smcFunc; |
| 396 | 405 | |
| 397 | 406 | // Only a single draft. |
| 398 | - if (is_numeric($id_draft)) |
|
| 399 | - $id_draft = array($id_draft); |
|
| 407 | + if (is_numeric($id_draft)) { |
|
| 408 | + $id_draft = array($id_draft); |
|
| 409 | + } |
|
| 400 | 410 | |
| 401 | 411 | // can't delete nothing |
| 402 | - if (empty($id_draft) || ($check && empty($user_info['id']))) |
|
| 403 | - return false; |
|
| 412 | + if (empty($id_draft) || ($check && empty($user_info['id']))) { |
|
| 413 | + return false; |
|
| 414 | + } |
|
| 404 | 415 | |
| 405 | 416 | $smcFunc['db_query']('', ' |
| 406 | 417 | DELETE FROM {db_prefix}user_drafts |
@@ -429,14 +440,16 @@ discard block |
||
| 429 | 440 | global $smcFunc, $scripturl, $context, $txt, $modSettings; |
| 430 | 441 | |
| 431 | 442 | // Permissions |
| 432 | - if (($draft_type === 0 && empty($context['drafts_save'])) || ($draft_type === 1 && empty($context['drafts_pm_save'])) || empty($member_id)) |
|
| 433 | - return false; |
|
| 443 | + if (($draft_type === 0 && empty($context['drafts_save'])) || ($draft_type === 1 && empty($context['drafts_pm_save'])) || empty($member_id)) { |
|
| 444 | + return false; |
|
| 445 | + } |
|
| 434 | 446 | |
| 435 | 447 | $context['drafts'] = array(); |
| 436 | 448 | |
| 437 | 449 | // has a specific draft has been selected? Load it up if there is not a message already in the editor |
| 438 | - if (isset($_REQUEST['id_draft']) && empty($_POST['subject']) && empty($_POST['message'])) |
|
| 439 | - ReadDraft((int) $_REQUEST['id_draft'], $draft_type, true, true); |
|
| 450 | + if (isset($_REQUEST['id_draft']) && empty($_POST['subject']) && empty($_POST['message'])) { |
|
| 451 | + ReadDraft((int) $_REQUEST['id_draft'], $draft_type, true, true); |
|
| 452 | + } |
|
| 440 | 453 | |
| 441 | 454 | // load the drafts this user has available |
| 442 | 455 | $request = $smcFunc['db_query']('', ' |
@@ -459,8 +472,9 @@ discard block |
||
| 459 | 472 | // add them to the draft array for display |
| 460 | 473 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 461 | 474 | { |
| 462 | - if (empty($row['subject'])) |
|
| 463 | - $row['subject'] = $txt['no_subject']; |
|
| 475 | + if (empty($row['subject'])) { |
|
| 476 | + $row['subject'] = $txt['no_subject']; |
|
| 477 | + } |
|
| 464 | 478 | |
| 465 | 479 | // Post drafts |
| 466 | 480 | if ($draft_type === 0) |
@@ -545,8 +559,9 @@ discard block |
||
| 545 | 559 | } |
| 546 | 560 | |
| 547 | 561 | // Default to 10. |
| 548 | - if (empty($_REQUEST['viewscount']) || !is_numeric($_REQUEST['viewscount'])) |
|
| 549 | - $_REQUEST['viewscount'] = 10; |
|
| 562 | + if (empty($_REQUEST['viewscount']) || !is_numeric($_REQUEST['viewscount'])) { |
|
| 563 | + $_REQUEST['viewscount'] = 10; |
|
| 564 | + } |
|
| 550 | 565 | |
| 551 | 566 | // Get the count of applicable drafts on the boards they can (still) see ... |
| 552 | 567 | // @todo .. should we just let them see their drafts even if they have lost board access ? |
@@ -611,12 +626,14 @@ discard block |
||
| 611 | 626 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 612 | 627 | { |
| 613 | 628 | // Censor.... |
| 614 | - if (empty($row['body'])) |
|
| 615 | - $row['body'] = ''; |
|
| 629 | + if (empty($row['body'])) { |
|
| 630 | + $row['body'] = ''; |
|
| 631 | + } |
|
| 616 | 632 | |
| 617 | 633 | $row['subject'] = $smcFunc['htmltrim']($row['subject']); |
| 618 | - if (empty($row['subject'])) |
|
| 619 | - $row['subject'] = $txt['no_subject']; |
|
| 634 | + if (empty($row['subject'])) { |
|
| 635 | + $row['subject'] = $txt['no_subject']; |
|
| 636 | + } |
|
| 620 | 637 | |
| 621 | 638 | censorText($row['body']); |
| 622 | 639 | censorText($row['subject']); |
@@ -648,8 +665,9 @@ discard block |
||
| 648 | 665 | $smcFunc['db_free_result']($request); |
| 649 | 666 | |
| 650 | 667 | // If the drafts were retrieved in reverse order, get them right again. |
| 651 | - if ($reverse) |
|
| 652 | - $context['drafts'] = array_reverse($context['drafts'], true); |
|
| 668 | + if ($reverse) { |
|
| 669 | + $context['drafts'] = array_reverse($context['drafts'], true); |
|
| 670 | + } |
|
| 653 | 671 | |
| 654 | 672 | // Menu tab |
| 655 | 673 | $context[$context['profile_menu_name']]['tab_data'] = array( |
@@ -707,8 +725,9 @@ discard block |
||
| 707 | 725 | } |
| 708 | 726 | |
| 709 | 727 | // Default to 10. |
| 710 | - if (empty($_REQUEST['viewscount']) || !is_numeric($_REQUEST['viewscount'])) |
|
| 711 | - $_REQUEST['viewscount'] = 10; |
|
| 728 | + if (empty($_REQUEST['viewscount']) || !is_numeric($_REQUEST['viewscount'])) { |
|
| 729 | + $_REQUEST['viewscount'] = 10; |
|
| 730 | + } |
|
| 712 | 731 | |
| 713 | 732 | // Get the count of applicable drafts |
| 714 | 733 | $request = $smcFunc['db_query']('', ' |
@@ -767,12 +786,14 @@ discard block |
||
| 767 | 786 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 768 | 787 | { |
| 769 | 788 | // Censor.... |
| 770 | - if (empty($row['body'])) |
|
| 771 | - $row['body'] = ''; |
|
| 789 | + if (empty($row['body'])) { |
|
| 790 | + $row['body'] = ''; |
|
| 791 | + } |
|
| 772 | 792 | |
| 773 | 793 | $row['subject'] = $smcFunc['htmltrim']($row['subject']); |
| 774 | - if (empty($row['subject'])) |
|
| 775 | - $row['subject'] = $txt['no_subject']; |
|
| 794 | + if (empty($row['subject'])) { |
|
| 795 | + $row['subject'] = $txt['no_subject']; |
|
| 796 | + } |
|
| 776 | 797 | |
| 777 | 798 | censorText($row['body']); |
| 778 | 799 | censorText($row['subject']); |
@@ -827,8 +848,9 @@ discard block |
||
| 827 | 848 | $smcFunc['db_free_result']($request); |
| 828 | 849 | |
| 829 | 850 | // if the drafts were retrieved in reverse order, then put them in the right order again. |
| 830 | - if ($reverse) |
|
| 831 | - $context['drafts'] = array_reverse($context['drafts'], true); |
|
| 851 | + if ($reverse) { |
|
| 852 | + $context['drafts'] = array_reverse($context['drafts'], true); |
|
| 853 | + } |
|
| 832 | 854 | |
| 833 | 855 | // off to the template we go |
| 834 | 856 | $context['page_title'] = $txt['drafts']; |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | * |
| 174 | 174 | * @param string $post_errors A string of info about errors encountered trying to save this draft |
| 175 | 175 | * @param array $recipientList An array of data about who this PM is being sent to |
| 176 | - * @return boolean false if you can't save the draft, true if we're doing this via XML more than 5 seconds after the last save, nothing otherwise |
|
| 176 | + * @return boolean|null false if you can't save the draft, true if we're doing this via XML more than 5 seconds after the last save, nothing otherwise |
|
| 177 | 177 | */ |
| 178 | 178 | function SavePMDraft(&$post_errors, $recipientList) |
| 179 | 179 | { |
@@ -388,7 +388,7 @@ discard block |
||
| 388 | 388 | * |
| 389 | 389 | * @param int $id_draft The ID of the draft to delete |
| 390 | 390 | * @param boolean $check Whether or not to check that the draft belongs to the current user |
| 391 | - * @return boolean False if it couldn't be deleted (doesn't return anything otherwise) |
|
| 391 | + * @return false|null False if it couldn't be deleted (doesn't return anything otherwise) |
|
| 392 | 392 | */ |
| 393 | 393 | function DeleteDraft($id_draft, $check = true) |
| 394 | 394 | { |
@@ -422,7 +422,7 @@ discard block |
||
| 422 | 422 | * @param int $member_id ID of the member to show drafts for |
| 423 | 423 | * @param boolean|integer $topic If $type is 1, this can be set to only load drafts for posts in the specific topic |
| 424 | 424 | * @param int $draft_type The type of drafts to show - 0 for post drafts, 1 for PM drafts |
| 425 | - * @return boolean False if the drafts couldn't be loaded, nothing otherwise |
|
| 425 | + * @return false|null False if the drafts couldn't be loaded, nothing otherwise |
|
| 426 | 426 | */ |
| 427 | 427 | function ShowDrafts($member_id, $topic = false, $draft_type = 0) |
| 428 | 428 | { |