@@ -14,8 +14,9 @@ discard block |
||
14 | 14 | * @version 2.1 Beta 4 |
15 | 15 | */ |
16 | 16 | |
17 | -if (!defined('SMF')) |
|
17 | +if (!defined('SMF')) { |
|
18 | 18 | die('No direct access...'); |
19 | +} |
|
19 | 20 | |
20 | 21 | /** |
21 | 22 | * Locks a topic... either by way of a moderator or the topic starter. |
@@ -32,8 +33,9 @@ discard block |
||
32 | 33 | global $topic, $user_info, $sourcedir, $board, $smcFunc; |
33 | 34 | |
34 | 35 | // Just quit if there's no topic to lock. |
35 | - if (empty($topic)) |
|
36 | - fatal_lang_error('not_a_topic', false); |
|
36 | + if (empty($topic)) { |
|
37 | + fatal_lang_error('not_a_topic', false); |
|
38 | + } |
|
37 | 39 | |
38 | 40 | checkSession('get'); |
39 | 41 | |
@@ -55,23 +57,28 @@ discard block |
||
55 | 57 | |
56 | 58 | // Can you lock topics here, mister? |
57 | 59 | $user_lock = !allowedTo('lock_any'); |
58 | - if ($user_lock && $starter == $user_info['id']) |
|
59 | - isAllowedTo('lock_own'); |
|
60 | - else |
|
61 | - isAllowedTo('lock_any'); |
|
60 | + if ($user_lock && $starter == $user_info['id']) { |
|
61 | + isAllowedTo('lock_own'); |
|
62 | + } else { |
|
63 | + isAllowedTo('lock_any'); |
|
64 | + } |
|
62 | 65 | |
63 | 66 | // Locking with high privileges. |
64 | - if ($locked == '0' && !$user_lock) |
|
65 | - $locked = '1'; |
|
67 | + if ($locked == '0' && !$user_lock) { |
|
68 | + $locked = '1'; |
|
69 | + } |
|
66 | 70 | // Locking with low privileges. |
67 | - elseif ($locked == '0') |
|
68 | - $locked = '2'; |
|
71 | + elseif ($locked == '0') { |
|
72 | + $locked = '2'; |
|
73 | + } |
|
69 | 74 | // Unlocking - make sure you don't unlock what you can't. |
70 | - elseif ($locked == '2' || ($locked == '1' && !$user_lock)) |
|
71 | - $locked = '0'; |
|
75 | + elseif ($locked == '2' || ($locked == '1' && !$user_lock)) { |
|
76 | + $locked = '0'; |
|
77 | + } |
|
72 | 78 | // You cannot unlock this! |
73 | - else |
|
74 | - fatal_lang_error('locked_by_admin', 'user'); |
|
79 | + else { |
|
80 | + fatal_lang_error('locked_by_admin', 'user'); |
|
81 | + } |
|
75 | 82 | |
76 | 83 | // Actually lock the topic in the database with the new value. |
77 | 84 | $smcFunc['db_query']('', ' |
@@ -85,8 +92,9 @@ discard block |
||
85 | 92 | ); |
86 | 93 | |
87 | 94 | // If they are allowed a "moderator" permission, log it in the moderator log. |
88 | - if (!$user_lock) |
|
89 | - logAction($locked ? 'lock' : 'unlock', array('topic' => $topic, 'board' => $board)); |
|
95 | + if (!$user_lock) { |
|
96 | + logAction($locked ? 'lock' : 'unlock', array('topic' => $topic, 'board' => $board)); |
|
97 | + } |
|
90 | 98 | // Notify people that this topic has been locked? |
91 | 99 | sendNotifications($topic, empty($locked) ? 'unlock' : 'lock'); |
92 | 100 | |
@@ -112,8 +120,9 @@ discard block |
||
112 | 120 | isAllowedTo('make_sticky'); |
113 | 121 | |
114 | 122 | // You can't sticky a board or something! |
115 | - if (empty($topic)) |
|
116 | - fatal_lang_error('not_a_topic', false); |
|
123 | + if (empty($topic)) { |
|
124 | + fatal_lang_error('not_a_topic', false); |
|
125 | + } |
|
117 | 126 | |
118 | 127 | checkSession('get'); |
119 | 128 | |
@@ -147,8 +156,9 @@ discard block |
||
147 | 156 | // Log this sticky action - always a moderator thing. |
148 | 157 | logAction(empty($is_sticky) ? 'sticky' : 'unsticky', array('topic' => $topic, 'board' => $board)); |
149 | 158 | // Notify people that this topic has been stickied? |
150 | - if (empty($is_sticky)) |
|
151 | - sendNotifications($topic, 'sticky'); |
|
159 | + if (empty($is_sticky)) { |
|
160 | + sendNotifications($topic, 'sticky'); |
|
161 | + } |
|
152 | 162 | |
153 | 163 | // Take them back to the now stickied topic. |
154 | 164 | redirectexit('topic=' . $topic . '.' . $_REQUEST['start'] . ';moderate'); |
@@ -11,8 +11,9 @@ discard block |
||
11 | 11 | * @version 2.1 Beta 4 |
12 | 12 | */ |
13 | 13 | |
14 | -if (!defined('SMF')) |
|
14 | +if (!defined('SMF')) { |
|
15 | 15 | die('Hacking attempt...'); |
16 | +} |
|
16 | 17 | |
17 | 18 | /** |
18 | 19 | * Our Cache API class |
@@ -27,8 +28,9 @@ discard block |
||
27 | 28 | { |
28 | 29 | $supported = function_exists('apcu_fetch') && function_exists('apcu_store'); |
29 | 30 | |
30 | - if ($test) |
|
31 | - return $supported; |
|
31 | + if ($test) { |
|
32 | + return $supported; |
|
33 | + } |
|
32 | 34 | return parent::isSupported() && $supported; |
33 | 35 | } |
34 | 36 | |
@@ -50,10 +52,11 @@ discard block |
||
50 | 52 | $key = $this->prefix . strtr($key, ':/', '-_'); |
51 | 53 | |
52 | 54 | // An extended key is needed to counteract a bug in APC. |
53 | - if ($value === null) |
|
54 | - return apcu_delete($key . 'smf'); |
|
55 | - else |
|
56 | - return apcu_store($key . 'smf', $value, $ttl); |
|
55 | + if ($value === null) { |
|
56 | + return apcu_delete($key . 'smf'); |
|
57 | + } else { |
|
58 | + return apcu_store($key . 'smf', $value, $ttl); |
|
59 | + } |
|
57 | 60 | } |
58 | 61 | |
59 | 62 | /** |
@@ -11,8 +11,9 @@ |
||
11 | 11 | * @version 2.1 Beta 4 |
12 | 12 | */ |
13 | 13 | |
14 | -if (!defined('SMF')) |
|
14 | +if (!defined('SMF')) { |
|
15 | 15 | die('No direct access...'); |
16 | +} |
|
16 | 17 | |
17 | 18 | /** |
18 | 19 | * Standard non full index, non custom index search |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | |
20 | 21 | /** |
@@ -44,8 +45,9 @@ discard block |
||
44 | 45 | $_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : (allowedTo('manage_membergroups') ? 'index' : 'settings'); |
45 | 46 | |
46 | 47 | // Is it elsewhere? |
47 | - if (isset($subActions[$_REQUEST['sa']][2])) |
|
48 | - require_once($sourcedir . '/' . $subActions[$_REQUEST['sa']][2]); |
|
48 | + if (isset($subActions[$_REQUEST['sa']][2])) { |
|
49 | + require_once($sourcedir . '/' . $subActions[$_REQUEST['sa']][2]); |
|
50 | + } |
|
49 | 51 | |
50 | 52 | // Do the permission check, you might not be allowed her. |
51 | 53 | isAllowedTo($subActions[$_REQUEST['sa']][1]); |
@@ -104,19 +106,20 @@ discard block |
||
104 | 106 | 'function' => function($rowData) use ($scripturl) |
105 | 107 | { |
106 | 108 | // Since the moderator group has no explicit members, no link is needed. |
107 | - if ($rowData['id_group'] == 3) |
|
108 | - $group_name = $rowData['group_name']; |
|
109 | - else |
|
109 | + if ($rowData['id_group'] == 3) { |
|
110 | + $group_name = $rowData['group_name']; |
|
111 | + } else |
|
110 | 112 | { |
111 | 113 | $color_style = empty($rowData['online_color']) ? '' : sprintf(' style="color: %1$s;"', $rowData['online_color']); |
112 | 114 | $group_name = sprintf('<a href="%1$s?action=admin;area=membergroups;sa=members;group=%2$d"%3$s>%4$s</a>', $scripturl, $rowData['id_group'], $color_style, $rowData['group_name']); |
113 | 115 | } |
114 | 116 | |
115 | 117 | // Add a help option for moderator and administrator. |
116 | - if ($rowData['id_group'] == 1) |
|
117 | - $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_administrator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
118 | - elseif ($rowData['id_group'] == 3) |
|
119 | - $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_moderator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
118 | + if ($rowData['id_group'] == 1) { |
|
119 | + $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_administrator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
120 | + } elseif ($rowData['id_group'] == 3) { |
|
121 | + $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_moderator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
122 | + } |
|
120 | 123 | |
121 | 124 | return $group_name; |
122 | 125 | }, |
@@ -329,12 +332,14 @@ discard block |
||
329 | 332 | call_integration_hook('integrate_add_membergroup', array($id_group, $postCountBasedGroup)); |
330 | 333 | |
331 | 334 | // Update the post groups now, if this is a post group! |
332 | - if (isset($_POST['min_posts'])) |
|
333 | - updateStats('postgroups'); |
|
335 | + if (isset($_POST['min_posts'])) { |
|
336 | + updateStats('postgroups'); |
|
337 | + } |
|
334 | 338 | |
335 | 339 | // You cannot set permissions for post groups if they are disabled. |
336 | - if ($postCountBasedGroup && empty($modSettings['permission_enable_postgroups'])) |
|
337 | - $_POST['perm_type'] = ''; |
|
340 | + if ($postCountBasedGroup && empty($modSettings['permission_enable_postgroups'])) { |
|
341 | + $_POST['perm_type'] = ''; |
|
342 | + } |
|
338 | 343 | |
339 | 344 | if ($_POST['perm_type'] == 'predefined') |
340 | 345 | { |
@@ -364,8 +369,9 @@ discard block |
||
364 | 369 | $smcFunc['db_free_result']($request); |
365 | 370 | |
366 | 371 | // Protected groups are... well, protected! |
367 | - if ($copy_type == 1) |
|
368 | - fatal_lang_error('membergroup_does_not_exist'); |
|
372 | + if ($copy_type == 1) { |
|
373 | + fatal_lang_error('membergroup_does_not_exist'); |
|
374 | + } |
|
369 | 375 | } |
370 | 376 | |
371 | 377 | // Don't allow copying of a real priviledged person! |
@@ -383,18 +389,20 @@ discard block |
||
383 | 389 | $inserts = array(); |
384 | 390 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
385 | 391 | { |
386 | - if (empty($context['illegal_permissions']) || !in_array($row['permission'], $context['illegal_permissions'])) |
|
387 | - $inserts[] = array($id_group, $row['permission'], $row['add_deny']); |
|
392 | + if (empty($context['illegal_permissions']) || !in_array($row['permission'], $context['illegal_permissions'])) { |
|
393 | + $inserts[] = array($id_group, $row['permission'], $row['add_deny']); |
|
394 | + } |
|
388 | 395 | } |
389 | 396 | $smcFunc['db_free_result']($request); |
390 | 397 | |
391 | - if (!empty($inserts)) |
|
392 | - $smcFunc['db_insert']('insert', |
|
398 | + if (!empty($inserts)) { |
|
399 | + $smcFunc['db_insert']('insert', |
|
393 | 400 | '{db_prefix}permissions', |
394 | 401 | array('id_group' => 'int', 'permission' => 'string', 'add_deny' => 'int'), |
395 | 402 | $inserts, |
396 | 403 | array('id_group', 'permission') |
397 | 404 | ); |
405 | + } |
|
398 | 406 | |
399 | 407 | $request = $smcFunc['db_query']('', ' |
400 | 408 | SELECT id_profile, permission, add_deny |
@@ -405,17 +413,19 @@ discard block |
||
405 | 413 | ) |
406 | 414 | ); |
407 | 415 | $inserts = array(); |
408 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
409 | - $inserts[] = array($id_group, $row['id_profile'], $row['permission'], $row['add_deny']); |
|
416 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
417 | + $inserts[] = array($id_group, $row['id_profile'], $row['permission'], $row['add_deny']); |
|
418 | + } |
|
410 | 419 | $smcFunc['db_free_result']($request); |
411 | 420 | |
412 | - if (!empty($inserts)) |
|
413 | - $smcFunc['db_insert']('insert', |
|
421 | + if (!empty($inserts)) { |
|
422 | + $smcFunc['db_insert']('insert', |
|
414 | 423 | '{db_prefix}board_permissions', |
415 | 424 | array('id_group' => 'int', 'id_profile' => 'int', 'permission' => 'string', 'add_deny' => 'int'), |
416 | 425 | $inserts, |
417 | 426 | array('id_group', 'id_profile', 'permission') |
418 | 427 | ); |
428 | + } |
|
419 | 429 | |
420 | 430 | // Also get some membergroup information if we're copying and not copying from guests... |
421 | 431 | if ($copy_id > 0 && $_POST['perm_type'] == 'copy') |
@@ -468,14 +478,15 @@ discard block |
||
468 | 478 | $changed_boards['allow'] = array(); |
469 | 479 | $changed_boards['deny'] = array(); |
470 | 480 | $changed_boards['ignore'] = array(); |
471 | - foreach ($accesses as $group_id => $action) |
|
472 | - $changed_boards[$action][] = (int) $group_id; |
|
481 | + foreach ($accesses as $group_id => $action) { |
|
482 | + $changed_boards[$action][] = (int) $group_id; |
|
483 | + } |
|
473 | 484 | |
474 | 485 | foreach (array('allow', 'deny') as $board_action) |
475 | 486 | { |
476 | 487 | // Only do this if they have special access requirements. |
477 | - if (!empty($changed_boards[$board_action])) |
|
478 | - $smcFunc['db_query']('', ' |
|
488 | + if (!empty($changed_boards[$board_action])) { |
|
489 | + $smcFunc['db_query']('', ' |
|
479 | 490 | UPDATE {db_prefix}boards |
480 | 491 | SET {raw:column} = CASE WHEN {raw:column} = {string:blank_string} THEN {string:group_id_string} ELSE CONCAT({raw:column}, {string:comma_group}) END |
481 | 492 | WHERE id_board IN ({array_int:board_list})', |
@@ -487,11 +498,13 @@ discard block |
||
487 | 498 | 'column' => $board_action == 'allow' ? 'member_groups' : 'deny_member_groups', |
488 | 499 | ) |
489 | 500 | ); |
501 | + } |
|
490 | 502 | } |
491 | 503 | |
492 | 504 | // If this is joinable then set it to show group membership in people's profiles. |
493 | - if (empty($modSettings['show_group_membership']) && $_POST['group_type'] > 1) |
|
494 | - updateSettings(array('show_group_membership' => 1)); |
|
505 | + if (empty($modSettings['show_group_membership']) && $_POST['group_type'] > 1) { |
|
506 | + updateSettings(array('show_group_membership' => 1)); |
|
507 | + } |
|
495 | 508 | |
496 | 509 | // Rebuild the group cache. |
497 | 510 | updateSettings(array( |
@@ -512,8 +525,9 @@ discard block |
||
512 | 525 | $context['undefined_group'] = !isset($_REQUEST['postgroup']) && !isset($_REQUEST['generalgroup']); |
513 | 526 | $context['allow_protected'] = allowedTo('admin_forum'); |
514 | 527 | |
515 | - if (!empty($modSettings['deny_boards_access'])) |
|
516 | - loadLanguage('ManagePermissions'); |
|
528 | + if (!empty($modSettings['deny_boards_access'])) { |
|
529 | + loadLanguage('ManagePermissions'); |
|
530 | + } |
|
517 | 531 | |
518 | 532 | $result = $smcFunc['db_query']('', ' |
519 | 533 | SELECT id_group, group_name |
@@ -530,11 +544,12 @@ discard block |
||
530 | 544 | ) |
531 | 545 | ); |
532 | 546 | $context['groups'] = array(); |
533 | - while ($row = $smcFunc['db_fetch_assoc']($result)) |
|
534 | - $context['groups'][] = array( |
|
547 | + while ($row = $smcFunc['db_fetch_assoc']($result)) { |
|
548 | + $context['groups'][] = array( |
|
535 | 549 | 'id' => $row['id_group'], |
536 | 550 | 'name' => $row['group_name'] |
537 | 551 | ); |
552 | + } |
|
538 | 553 | $smcFunc['db_free_result']($result); |
539 | 554 | |
540 | 555 | $request = $smcFunc['db_query']('', ' |
@@ -551,12 +566,13 @@ discard block |
||
551 | 566 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
552 | 567 | { |
553 | 568 | // This category hasn't been set up yet.. |
554 | - if (!isset($context['categories'][$row['id_cat']])) |
|
555 | - $context['categories'][$row['id_cat']] = array( |
|
569 | + if (!isset($context['categories'][$row['id_cat']])) { |
|
570 | + $context['categories'][$row['id_cat']] = array( |
|
556 | 571 | 'id' => $row['id_cat'], |
557 | 572 | 'name' => $row['cat_name'], |
558 | 573 | 'boards' => array() |
559 | 574 | ); |
575 | + } |
|
560 | 576 | |
561 | 577 | // Set this board up, and let the template know when it's a child. (indent them..) |
562 | 578 | $context['categories'][$row['id_cat']]['boards'][$row['id_board']] = array( |
@@ -604,8 +620,9 @@ discard block |
||
604 | 620 | require_once($sourcedir . '/Subs-Membergroups.php'); |
605 | 621 | $result = deleteMembergroups((int) $_REQUEST['group']); |
606 | 622 | // Need to throw a warning if it went wrong, but this is the only one we have a message for... |
607 | - if ($result === 'group_cannot_delete_sub') |
|
608 | - fatal_lang_error('membergroups_cannot_delete_paid', false); |
|
623 | + if ($result === 'group_cannot_delete_sub') { |
|
624 | + fatal_lang_error('membergroups_cannot_delete_paid', false); |
|
625 | + } |
|
609 | 626 | |
610 | 627 | // Go back to the membergroup index. |
611 | 628 | redirectexit('action=admin;area=membergroups;'); |
@@ -627,8 +644,9 @@ discard block |
||
627 | 644 | |
628 | 645 | $_REQUEST['group'] = isset($_REQUEST['group']) && $_REQUEST['group'] > 0 ? (int) $_REQUEST['group'] : 0; |
629 | 646 | |
630 | - if (!empty($modSettings['deny_boards_access'])) |
|
631 | - loadLanguage('ManagePermissions'); |
|
647 | + if (!empty($modSettings['deny_boards_access'])) { |
|
648 | + loadLanguage('ManagePermissions'); |
|
649 | + } |
|
632 | 650 | |
633 | 651 | // Make sure this group is editable. |
634 | 652 | if (!empty($_REQUEST['group'])) |
@@ -650,8 +668,9 @@ discard block |
||
650 | 668 | } |
651 | 669 | |
652 | 670 | // Now, do we have a valid id? |
653 | - if (empty($_REQUEST['group'])) |
|
654 | - fatal_lang_error('membergroup_does_not_exist', false); |
|
671 | + if (empty($_REQUEST['group'])) { |
|
672 | + fatal_lang_error('membergroup_does_not_exist', false); |
|
673 | + } |
|
655 | 674 | |
656 | 675 | // People who can manage boards are a bit special. |
657 | 676 | require_once($sourcedir . '/Subs-Members.php'); |
@@ -682,8 +701,9 @@ discard block |
||
682 | 701 | require_once($sourcedir . '/Subs-Membergroups.php'); |
683 | 702 | $result = deleteMembergroups($_REQUEST['group']); |
684 | 703 | // Need to throw a warning if it went wrong, but this is the only one we have a message for... |
685 | - if ($result === 'group_cannot_delete_sub') |
|
686 | - fatal_lang_error('membergroups_cannot_delete_paid', false); |
|
704 | + if ($result === 'group_cannot_delete_sub') { |
|
705 | + fatal_lang_error('membergroups_cannot_delete_paid', false); |
|
706 | + } |
|
687 | 707 | |
688 | 708 | redirectexit('action=admin;area=membergroups;'); |
689 | 709 | } |
@@ -760,16 +780,18 @@ discard block |
||
760 | 780 | $request = $smcFunc['db_query']('', ' |
761 | 781 | SELECT id_board |
762 | 782 | FROM {db_prefix}boards'); |
763 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
764 | - $accesses[(int) $row['id_board']] = 'allow'; |
|
783 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
784 | + $accesses[(int) $row['id_board']] = 'allow'; |
|
785 | + } |
|
765 | 786 | $smcFunc['db_free_result']($request); |
766 | 787 | } |
767 | 788 | |
768 | 789 | $changed_boards['allow'] = array(); |
769 | 790 | $changed_boards['deny'] = array(); |
770 | 791 | $changed_boards['ignore'] = array(); |
771 | - foreach ($accesses as $group_id => $action) |
|
772 | - $changed_boards[$action][] = (int) $group_id; |
|
792 | + foreach ($accesses as $group_id => $action) { |
|
793 | + $changed_boards[$action][] = (int) $group_id; |
|
794 | + } |
|
773 | 795 | |
774 | 796 | foreach (array('allow', 'deny') as $board_action) |
775 | 797 | { |
@@ -785,8 +807,8 @@ discard block |
||
785 | 807 | 'column' => $board_action == 'allow' ? 'member_groups' : 'deny_member_groups', |
786 | 808 | ) |
787 | 809 | ); |
788 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
789 | - $smcFunc['db_query']('', ' |
|
810 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
811 | + $smcFunc['db_query']('', ' |
|
790 | 812 | UPDATE {db_prefix}boards |
791 | 813 | SET {raw:column} = {string:member_group_access} |
792 | 814 | WHERE id_board = {int:current_board}', |
@@ -796,11 +818,12 @@ discard block |
||
796 | 818 | 'column' => $board_action == 'allow' ? 'member_groups' : 'deny_member_groups', |
797 | 819 | ) |
798 | 820 | ); |
821 | + } |
|
799 | 822 | $smcFunc['db_free_result']($request); |
800 | 823 | |
801 | 824 | // Add the membergroup to all boards that hadn't been set yet. |
802 | - if (!empty($changed_boards[$board_action])) |
|
803 | - $smcFunc['db_query']('', ' |
|
825 | + if (!empty($changed_boards[$board_action])) { |
|
826 | + $smcFunc['db_query']('', ' |
|
804 | 827 | UPDATE {db_prefix}boards |
805 | 828 | SET {raw:column} = CASE WHEN {raw:column} = {string:blank_string} THEN {string:group_id_string} ELSE CONCAT({raw:column}, {string:comma_group}) END |
806 | 829 | WHERE id_board IN ({array_int:board_list}) |
@@ -814,6 +837,7 @@ discard block |
||
814 | 837 | 'column' => $board_action == 'allow' ? 'member_groups' : 'deny_member_groups', |
815 | 838 | ) |
816 | 839 | ); |
840 | + } |
|
817 | 841 | } |
818 | 842 | } |
819 | 843 | |
@@ -839,12 +863,14 @@ discard block |
||
839 | 863 | ) |
840 | 864 | ); |
841 | 865 | $updates = array(); |
842 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
843 | - $updates[$row['additional_groups']][] = $row['id_member']; |
|
866 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
867 | + $updates[$row['additional_groups']][] = $row['id_member']; |
|
868 | + } |
|
844 | 869 | $smcFunc['db_free_result']($request); |
845 | 870 | |
846 | - foreach ($updates as $additional_groups => $memberArray) |
|
847 | - updateMemberData($memberArray, array('additional_groups' => implode(',', array_diff(explode(',', $additional_groups), array((int) $_REQUEST['group']))))); |
|
871 | + foreach ($updates as $additional_groups => $memberArray) { |
|
872 | + updateMemberData($memberArray, array('additional_groups' => implode(',', array_diff(explode(',', $additional_groups), array((int) $_REQUEST['group']))))); |
|
873 | + } |
|
848 | 874 | |
849 | 875 | // Sorry, but post groups can't moderate boards |
850 | 876 | $smcFunc['db_query']('', ' |
@@ -854,8 +880,7 @@ discard block |
||
854 | 880 | 'current_group' => (int) $_REQUEST['group'], |
855 | 881 | ) |
856 | 882 | ); |
857 | - } |
|
858 | - elseif ($_REQUEST['group'] != 3) |
|
883 | + } elseif ($_REQUEST['group'] != 3) |
|
859 | 884 | { |
860 | 885 | // Making it a hidden group? If so remove everyone with it as primary group (Actually, just make them additional). |
861 | 886 | if ($_POST['group_hidden'] == 2) |
@@ -870,8 +895,9 @@ discard block |
||
870 | 895 | ) |
871 | 896 | ); |
872 | 897 | $updates = array(); |
873 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
874 | - $updates[$row['additional_groups']][] = $row['id_member']; |
|
898 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
899 | + $updates[$row['additional_groups']][] = $row['id_member']; |
|
900 | + } |
|
875 | 901 | $smcFunc['db_free_result']($request); |
876 | 902 | |
877 | 903 | foreach ($updates as $additional_groups => $memberArray) |
@@ -913,8 +939,9 @@ discard block |
||
913 | 939 | $smcFunc['db_free_result']($request); |
914 | 940 | |
915 | 941 | // Do we need to update the setting? |
916 | - if ((empty($modSettings['show_group_membership']) && $have_joinable) || (!empty($modSettings['show_group_membership']) && !$have_joinable)) |
|
917 | - updateSettings(array('show_group_membership' => $have_joinable ? 1 : 0)); |
|
942 | + if ((empty($modSettings['show_group_membership']) && $have_joinable) || (!empty($modSettings['show_group_membership']) && !$have_joinable)) { |
|
943 | + updateSettings(array('show_group_membership' => $have_joinable ? 1 : 0)); |
|
944 | + } |
|
918 | 945 | } |
919 | 946 | |
920 | 947 | // Do we need to set inherited permissions? |
@@ -947,8 +974,9 @@ discard block |
||
947 | 974 | { |
948 | 975 | $moderators[$k] = trim($moderators[$k]); |
949 | 976 | |
950 | - if (strlen($moderators[$k]) == 0) |
|
951 | - unset($moderators[$k]); |
|
977 | + if (strlen($moderators[$k]) == 0) { |
|
978 | + unset($moderators[$k]); |
|
979 | + } |
|
952 | 980 | } |
953 | 981 | |
954 | 982 | // Find all the id_member's for the member_name's in the list. |
@@ -964,8 +992,9 @@ discard block |
||
964 | 992 | 'count' => count($moderators), |
965 | 993 | ) |
966 | 994 | ); |
967 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
968 | - $group_moderators[] = $row['id_member']; |
|
995 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
996 | + $group_moderators[] = $row['id_member']; |
|
997 | + } |
|
969 | 998 | $smcFunc['db_free_result']($request); |
970 | 999 | } |
971 | 1000 | } |
@@ -973,8 +1002,9 @@ discard block |
||
973 | 1002 | if (!empty($_POST['moderator_list'])) |
974 | 1003 | { |
975 | 1004 | $moderators = array(); |
976 | - foreach ($_POST['moderator_list'] as $moderator) |
|
977 | - $moderators[] = (int) $moderator; |
|
1005 | + foreach ($_POST['moderator_list'] as $moderator) { |
|
1006 | + $moderators[] = (int) $moderator; |
|
1007 | + } |
|
978 | 1008 | |
979 | 1009 | if (!empty($moderators)) |
980 | 1010 | { |
@@ -988,8 +1018,9 @@ discard block |
||
988 | 1018 | 'num_moderators' => count($moderators), |
989 | 1019 | ) |
990 | 1020 | ); |
991 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
992 | - $group_moderators[] = $row['id_member']; |
|
1021 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1022 | + $group_moderators[] = $row['id_member']; |
|
1023 | + } |
|
993 | 1024 | $smcFunc['db_free_result']($request); |
994 | 1025 | } |
995 | 1026 | } |
@@ -1001,8 +1032,9 @@ discard block |
||
1001 | 1032 | if (!empty($group_moderators)) |
1002 | 1033 | { |
1003 | 1034 | $mod_insert = array(); |
1004 | - foreach ($group_moderators as $moderator) |
|
1005 | - $mod_insert[] = array($_REQUEST['group'], $moderator); |
|
1035 | + foreach ($group_moderators as $moderator) { |
|
1036 | + $mod_insert[] = array($_REQUEST['group'], $moderator); |
|
1037 | + } |
|
1006 | 1038 | |
1007 | 1039 | $smcFunc['db_insert']('insert', |
1008 | 1040 | '{db_prefix}group_moderators', |
@@ -1036,8 +1068,9 @@ discard block |
||
1036 | 1068 | 'current_group' => (int) $_REQUEST['group'], |
1037 | 1069 | ) |
1038 | 1070 | ); |
1039 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1040 | - fatal_lang_error('membergroup_does_not_exist', false); |
|
1071 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1072 | + fatal_lang_error('membergroup_does_not_exist', false); |
|
1073 | + } |
|
1041 | 1074 | $row = $smcFunc['db_fetch_assoc']($request); |
1042 | 1075 | $smcFunc['db_free_result']($request); |
1043 | 1076 | |
@@ -1074,14 +1107,16 @@ discard block |
||
1074 | 1107 | ) |
1075 | 1108 | ); |
1076 | 1109 | $context['group']['moderators'] = array(); |
1077 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1078 | - $context['group']['moderators'][$row['id_member']] = $row['real_name']; |
|
1110 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1111 | + $context['group']['moderators'][$row['id_member']] = $row['real_name']; |
|
1112 | + } |
|
1079 | 1113 | $smcFunc['db_free_result']($request); |
1080 | 1114 | |
1081 | 1115 | $context['group']['moderator_list'] = empty($context['group']['moderators']) ? '' : '"' . implode('", "', $context['group']['moderators']) . '"'; |
1082 | 1116 | |
1083 | - if (!empty($context['group']['moderators'])) |
|
1084 | - list ($context['group']['last_moderator_id']) = array_slice(array_keys($context['group']['moderators']), -1); |
|
1117 | + if (!empty($context['group']['moderators'])) { |
|
1118 | + list ($context['group']['last_moderator_id']) = array_slice(array_keys($context['group']['moderators']), -1); |
|
1119 | + } |
|
1085 | 1120 | |
1086 | 1121 | // Get a list of boards this membergroup is allowed to see. |
1087 | 1122 | $context['boards'] = array(); |
@@ -1101,12 +1136,13 @@ discard block |
||
1101 | 1136 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1102 | 1137 | { |
1103 | 1138 | // This category hasn't been set up yet.. |
1104 | - if (!isset($context['categories'][$row['id_cat']])) |
|
1105 | - $context['categories'][$row['id_cat']] = array( |
|
1139 | + if (!isset($context['categories'][$row['id_cat']])) { |
|
1140 | + $context['categories'][$row['id_cat']] = array( |
|
1106 | 1141 | 'id' => $row['id_cat'], |
1107 | 1142 | 'name' => $row['cat_name'], |
1108 | 1143 | 'boards' => array() |
1109 | 1144 | ); |
1145 | + } |
|
1110 | 1146 | |
1111 | 1147 | // Set this board up, and let the template know when it's a child. (indent them..) |
1112 | 1148 | $context['categories'][$row['id_cat']]['boards'][$row['id_board']] = array( |
@@ -1154,19 +1190,22 @@ discard block |
||
1154 | 1190 | $image_info = getimagesize($settings['default_theme_dir'] . '/images/membericons/' . $value); |
1155 | 1191 | |
1156 | 1192 | // If this is bigger than 128 in width or 32 in height, skip this one. |
1157 | - if ($image_info == false || $image_info[0] > 128 || $image_info[1] > 32) |
|
1158 | - continue; |
|
1193 | + if ($image_info == false || $image_info[0] > 128 || $image_info[1] > 32) { |
|
1194 | + continue; |
|
1195 | + } |
|
1159 | 1196 | |
1160 | 1197 | // Else it's valid. Add it in. |
1161 | - else |
|
1162 | - $context['possible_icons'][] = $value; |
|
1198 | + else { |
|
1199 | + $context['possible_icons'][] = $value; |
|
1200 | + } |
|
1163 | 1201 | } |
1164 | 1202 | } |
1165 | 1203 | } |
1166 | 1204 | |
1167 | 1205 | // Insert our JS, if we have possible icons. |
1168 | - if (!empty($context['possible_icons'])) |
|
1169 | - loadJavaScriptFile('icondropdown.js', array('validate' => true), 'smf_icondropdown'); |
|
1206 | + if (!empty($context['possible_icons'])) { |
|
1207 | + loadJavaScriptFile('icondropdown.js', array('validate' => true), 'smf_icondropdown'); |
|
1208 | + } |
|
1170 | 1209 | |
1171 | 1210 | loadJavaScriptFile('suggest.js', array('defer' => false), 'smf_suggest'); |
1172 | 1211 | |
@@ -1188,8 +1227,9 @@ discard block |
||
1188 | 1227 | ) |
1189 | 1228 | ); |
1190 | 1229 | $context['inheritable_groups'] = array(); |
1191 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1192 | - $context['inheritable_groups'][$row['id_group']] = $row['group_name']; |
|
1230 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1231 | + $context['inheritable_groups'][$row['id_group']] = $row['group_name']; |
|
1232 | + } |
|
1193 | 1233 | $smcFunc['db_free_result']($request); |
1194 | 1234 | |
1195 | 1235 | call_integration_hook('integrate_view_membergroup'); |
@@ -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 | * Turn off/on notification for a particular board. |
@@ -34,8 +35,9 @@ discard block |
||
34 | 35 | is_not_guest(); |
35 | 36 | |
36 | 37 | // You have to specify a board to turn notifications on! |
37 | - if (empty($board)) |
|
38 | - fatal_lang_error('no_board', false); |
|
38 | + if (empty($board)) { |
|
39 | + fatal_lang_error('no_board', false); |
|
40 | + } |
|
39 | 41 | |
40 | 42 | // No subaction: find out what to do. |
41 | 43 | if (isset($_GET['mode'])) |
@@ -48,16 +50,16 @@ discard block |
||
48 | 50 | require_once($sourcedir . '/Subs-Notify.php'); |
49 | 51 | setNotifyPrefs($user_info['id'], array('board_notify_' . $board => $alertPref)); |
50 | 52 | |
51 | - if ($mode > 1) |
|
52 | - // Turn notification on. (note this just blows smoke if it's already on.) |
|
53 | + if ($mode > 1) { |
|
54 | + // Turn notification on. (note this just blows smoke if it's already on.) |
|
53 | 55 | $smcFunc['db_insert']('ignore', |
54 | 56 | '{db_prefix}log_notify', |
55 | 57 | array('id_member' => 'int', 'id_board' => 'int'), |
56 | 58 | array($user_info['id'], $board), |
57 | 59 | array('id_member', 'id_board') |
58 | 60 | ); |
59 | - else |
|
60 | - $smcFunc['db_query']('', ' |
|
61 | + } else { |
|
62 | + $smcFunc['db_query']('', ' |
|
61 | 63 | DELETE FROM {db_prefix}log_notify |
62 | 64 | WHERE id_member = {int:current_member} |
63 | 65 | AND id_board = {int:current_board}', |
@@ -66,6 +68,7 @@ discard block |
||
66 | 68 | 'current_member' => $user_info['id'], |
67 | 69 | ) |
68 | 70 | ); |
71 | + } |
|
69 | 72 | |
70 | 73 | } |
71 | 74 | |
@@ -81,10 +84,10 @@ discard block |
||
81 | 84 | ), |
82 | 85 | ); |
83 | 86 | $context['sub_template'] = 'generic_xml'; |
87 | + } else { |
|
88 | + redirectexit('board=' . $board . '.' . $_REQUEST['start']); |
|
89 | + } |
|
84 | 90 | } |
85 | - else |
|
86 | - redirectexit('board=' . $board . '.' . $_REQUEST['start']); |
|
87 | -} |
|
88 | 91 | |
89 | 92 | /** |
90 | 93 | * Turn off/on unread replies subscription for a topic as well as sets individual topic's alert preferences |
@@ -108,8 +111,9 @@ discard block |
||
108 | 111 | $mode = (int) $_GET['mode']; |
109 | 112 | $alertPref = $mode <= 1 ? 0 : ($mode == 2 ? 1 : 3); |
110 | 113 | |
111 | - if (empty($mode)) |
|
112 | - $mode = 1; |
|
114 | + if (empty($mode)) { |
|
115 | + $mode = 1; |
|
116 | + } |
|
113 | 117 | |
114 | 118 | $request = $smcFunc['db_query']('', ' |
115 | 119 | SELECT id_member, id_topic, id_msg, unwatched |
@@ -132,8 +136,7 @@ discard block |
||
132 | 136 | 'id_msg' => 0, |
133 | 137 | 'unwatched' => empty($mode) ? 1 : 0, |
134 | 138 | ); |
135 | - } |
|
136 | - else |
|
139 | + } else |
|
137 | 140 | { |
138 | 141 | $insert = false; |
139 | 142 | $log['unwatched'] = empty($mode) ? 1 : 0; |
@@ -160,9 +163,8 @@ discard block |
||
160 | 163 | array($user_info['id'], $log['id_topic']), |
161 | 164 | array('id_member', 'id_board') |
162 | 165 | ); |
163 | - } |
|
164 | - else |
|
165 | - $smcFunc['db_query']('', ' |
|
166 | + } else { |
|
167 | + $smcFunc['db_query']('', ' |
|
166 | 168 | DELETE FROM {db_prefix}log_notify |
167 | 169 | WHERE id_topic = {int:topic} |
168 | 170 | AND id_member = {int:member}', |
@@ -170,6 +172,7 @@ discard block |
||
170 | 172 | 'topic' => $log['id_topic'], |
171 | 173 | 'member' => $user_info['id'], |
172 | 174 | )); |
175 | + } |
|
173 | 176 | |
174 | 177 | } |
175 | 178 | } |
@@ -186,9 +189,9 @@ discard block |
||
186 | 189 | ), |
187 | 190 | ); |
188 | 191 | $context['sub_template'] = 'generic_xml'; |
192 | + } else { |
|
193 | + redirectexit('topic=' . $topic . '.' . $_REQUEST['start']); |
|
194 | + } |
|
189 | 195 | } |
190 | - else |
|
191 | - redirectexit('topic=' . $topic . '.' . $_REQUEST['start']); |
|
192 | -} |
|
193 | 196 | |
194 | 197 | ?> |
195 | 198 | \ No newline at end of file |
@@ -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 | } |
@@ -294,12 +317,14 @@ discard block |
||
294 | 317 | { |
295 | 318 | |
296 | 319 | // Some files won't exist, try to address up front |
297 | - if (!file_exists($file)) |
|
298 | - @touch($file); |
|
320 | + if (!file_exists($file)) { |
|
321 | + @touch($file); |
|
322 | + } |
|
299 | 323 | |
300 | 324 | // NOW do the writable check... |
301 | - if (is_writable($file)) |
|
302 | - return true; |
|
325 | + if (is_writable($file)) { |
|
326 | + return true; |
|
327 | + } |
|
303 | 328 | |
304 | 329 | @chmod($file, 0755); |
305 | 330 | |
@@ -309,10 +334,11 @@ discard block |
||
309 | 334 | foreach ($chmod_values as $val) |
310 | 335 | { |
311 | 336 | // If it's writable, break out of the loop |
312 | - if (is_writable($file)) |
|
313 | - break; |
|
314 | - else |
|
315 | - @chmod($file, $val); |
|
337 | + if (is_writable($file)) { |
|
338 | + break; |
|
339 | + } else { |
|
340 | + @chmod($file, $val); |
|
341 | + } |
|
316 | 342 | } |
317 | 343 | |
318 | 344 | return is_writable($file); |
@@ -339,14 +365,16 @@ discard block |
||
339 | 365 | { |
340 | 366 | static $fp = null; |
341 | 367 | |
342 | - if ($fp === null) |
|
343 | - $fp = fopen('php://stderr', 'wb'); |
|
368 | + if ($fp === null) { |
|
369 | + $fp = fopen('php://stderr', 'wb'); |
|
370 | + } |
|
344 | 371 | |
345 | 372 | fwrite($fp, $message . "\n"); |
346 | 373 | |
347 | - if ($fatal) |
|
348 | - exit; |
|
349 | -} |
|
374 | + if ($fatal) { |
|
375 | + exit; |
|
376 | + } |
|
377 | + } |
|
350 | 378 | |
351 | 379 | /** |
352 | 380 | * Throws a graphical error message. |