@@ -31,9 +31,10 @@ discard block |
||
31 | 31 | echo ' |
32 | 32 | <ul id="smf_slider" class="roundframe">'; |
33 | 33 | |
34 | - foreach ($context['news_lines'] as $news) |
|
35 | - echo ' |
|
34 | + foreach ($context['news_lines'] as $news) { |
|
35 | + echo ' |
|
36 | 36 | <li>', $news, '</li>'; |
37 | + } |
|
37 | 38 | |
38 | 39 | echo ' |
39 | 40 | </ul> |
@@ -65,8 +66,9 @@ discard block |
||
65 | 66 | foreach ($context['categories'] as $category) |
66 | 67 | { |
67 | 68 | // If theres no parent boards we can see, avoid showing an empty category (unless its collapsed) |
68 | - if (empty($category['boards']) && !$category['is_collapsed']) |
|
69 | - continue; |
|
69 | + if (empty($category['boards']) && !$category['is_collapsed']) { |
|
70 | + continue; |
|
71 | + } |
|
70 | 72 | |
71 | 73 | echo ' |
72 | 74 | <div class="main_container"> |
@@ -74,9 +76,10 @@ discard block |
||
74 | 76 | <h3 class="catbg">'; |
75 | 77 | |
76 | 78 | // If this category even can collapse, show a link to collapse it. |
77 | - if ($category['can_collapse']) |
|
78 | - echo ' |
|
79 | + if ($category['can_collapse']) { |
|
80 | + echo ' |
|
79 | 81 | <span id="category_', $category['id'], '_upshrink" class="', $category['is_collapsed'] ? 'toggle_down' : 'toggle_up', ' floatright" data-collapsed="', (int) $category['is_collapsed'], '" title="', !$category['is_collapsed'] ? $txt['hide_category'] : $txt['show_category'], '" style="display: none;"></span>'; |
82 | + } |
|
80 | 83 | |
81 | 84 | echo ' |
82 | 85 | ', $category['link'], ' |
@@ -106,10 +109,11 @@ discard block |
||
106 | 109 | </div>'; |
107 | 110 | |
108 | 111 | // Won't somebody think of the children! |
109 | - if (function_exists('template_bi_' . $board['type'] . '_children')) |
|
110 | - call_user_func('template_bi_' . $board['type'] . '_children', $board); |
|
111 | - else |
|
112 | - template_bi_board_children($board); |
|
112 | + if (function_exists('template_bi_' . $board['type'] . '_children')) { |
|
113 | + call_user_func('template_bi_' . $board['type'] . '_children', $board); |
|
114 | + } else { |
|
115 | + template_bi_board_children($board); |
|
116 | + } |
|
113 | 117 | |
114 | 118 | echo ' |
115 | 119 | </div><!-- #board_[id] -->'; |
@@ -124,12 +128,13 @@ discard block |
||
124 | 128 | </div><!-- #boardindex_table -->'; |
125 | 129 | |
126 | 130 | // Show the mark all as read button? |
127 | - if ($context['user']['is_logged'] && !empty($context['categories'])) |
|
128 | - echo ' |
|
131 | + if ($context['user']['is_logged'] && !empty($context['categories'])) { |
|
132 | + echo ' |
|
129 | 133 | <div class="mark_read"> |
130 | 134 | ', template_button_strip($context['mark_read_button'], 'right'), ' |
131 | 135 | </div>'; |
132 | -} |
|
136 | + } |
|
137 | + } |
|
133 | 138 | |
134 | 139 | /** |
135 | 140 | * Outputs the board icon for a standard board. |
@@ -173,18 +178,20 @@ discard block |
||
173 | 178 | </a>'; |
174 | 179 | |
175 | 180 | // Has it outstanding posts for approval? |
176 | - if ($board['can_approve_posts'] && ($board['unapproved_posts'] || $board['unapproved_topics'])) |
|
177 | - echo ' |
|
181 | + if ($board['can_approve_posts'] && ($board['unapproved_posts'] || $board['unapproved_topics'])) { |
|
182 | + echo ' |
|
178 | 183 | <a href="', $scripturl, '?action=moderate;area=postmod;sa=', ($board['unapproved_topics'] > 0 ? 'topics' : 'posts'), ';brd=', $board['id'], ';', $context['session_var'], '=', $context['session_id'], '" title="', sprintf($txt['unapproved_posts'], $board['unapproved_topics'], $board['unapproved_posts']), '" class="moderation_link">(!)</a>'; |
184 | + } |
|
179 | 185 | |
180 | 186 | echo ' |
181 | 187 | <p class="board_description">', $board['description'], '</p>'; |
182 | 188 | |
183 | 189 | // Show the "Moderators: ". Each has name, href, link, and id. (but we're gonna use link_moderators.) |
184 | - if (!empty($board['link_moderators'])) |
|
185 | - echo ' |
|
190 | + if (!empty($board['link_moderators'])) { |
|
191 | + echo ' |
|
186 | 192 | <p class="moderators">', count($board['link_moderators']) == 1 ? $txt['moderator'] : $txt['moderators'], ': ', implode(', ', $board['link_moderators']), '</p>'; |
187 | -} |
|
193 | + } |
|
194 | + } |
|
188 | 195 | |
189 | 196 | /** |
190 | 197 | * Outputs the board stats for a standard board. |
@@ -225,10 +232,11 @@ discard block |
||
225 | 232 | */ |
226 | 233 | function template_bi_board_lastpost($board) |
227 | 234 | { |
228 | - if (!empty($board['last_post']['id'])) |
|
229 | - echo ' |
|
235 | + if (!empty($board['last_post']['id'])) { |
|
236 | + echo ' |
|
230 | 237 | <p>', $board['last_post']['last_post_message'], '</p>'; |
231 | -} |
|
238 | + } |
|
239 | + } |
|
232 | 240 | |
233 | 241 | /** |
234 | 242 | * Outputs the board children for a standard board. |
@@ -248,14 +256,16 @@ discard block |
||
248 | 256 | id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */ |
249 | 257 | foreach ($board['children'] as $child) |
250 | 258 | { |
251 | - if (!$child['is_redirect']) |
|
252 | - $child['link'] = ''. ($child['new'] ? '<a href="' . $scripturl . '?action=unread;board=' . $child['id'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')" class="new_posts">' . $txt['new'] . '</a>' : '') . '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="board_new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . '</a>'; |
|
253 | - else |
|
254 | - $child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . ' - ' . $child['short_description'] . '">' . $child['name'] . '</a>'; |
|
259 | + if (!$child['is_redirect']) { |
|
260 | + $child['link'] = ''. ($child['new'] ? '<a href="' . $scripturl . '?action=unread;board=' . $child['id'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')" class="new_posts">' . $txt['new'] . '</a>' : '') . '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="board_new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . '</a>'; |
|
261 | + } else { |
|
262 | + $child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . ' - ' . $child['short_description'] . '">' . $child['name'] . '</a>'; |
|
263 | + } |
|
255 | 264 | |
256 | 265 | // Has it posts awaiting approval? |
257 | - if ($child['can_approve_posts'] && ($child['unapproved_posts'] || $child['unapproved_topics'])) |
|
258 | - $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > 0 ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>'; |
|
266 | + if ($child['can_approve_posts'] && ($child['unapproved_posts'] || $child['unapproved_topics'])) { |
|
267 | + $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > 0 ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>'; |
|
268 | + } |
|
259 | 269 | |
260 | 270 | $children[] = $child['new'] ? '<span class="strong">' . $child['link'] . '</span>' : '<span>' . $child['link'] . '</span>'; |
261 | 271 | } |
@@ -282,8 +292,9 @@ discard block |
||
282 | 292 | { |
283 | 293 | global $context, $options, $txt; |
284 | 294 | |
285 | - if (empty($context['info_center'])) |
|
286 | - return; |
|
295 | + if (empty($context['info_center'])) { |
|
296 | + return; |
|
297 | + } |
|
287 | 298 | |
288 | 299 | // Here's where the "Info Center" starts... |
289 | 300 | echo ' |
@@ -383,14 +394,15 @@ discard block |
||
383 | 394 | /* Each post in latest_posts has: |
384 | 395 | board (with an id, name, and link.), topic (the topic's id.), poster (with id, name, and link.), |
385 | 396 | subject, short_subject (shortened with...), time, link, and href. */ |
386 | - foreach ($context['latest_posts'] as $post) |
|
387 | - echo ' |
|
397 | + foreach ($context['latest_posts'] as $post) { |
|
398 | + echo ' |
|
388 | 399 | <tr class="windowbg"> |
389 | 400 | <td class="recentpost"><strong>', $post['link'], '</strong></td> |
390 | 401 | <td class="recentposter">', $post['poster']['link'], '</td> |
391 | 402 | <td class="recentboard">', $post['board']['link'], '</td> |
392 | 403 | <td class="recenttime">', $post['time'], '</td> |
393 | 404 | </tr>'; |
405 | + } |
|
394 | 406 | echo ' |
395 | 407 | </table>'; |
396 | 408 | } |
@@ -414,11 +426,12 @@ discard block |
||
414 | 426 | </div>'; |
415 | 427 | |
416 | 428 | // Holidays like "Christmas", "Chanukah", and "We Love [Unknown] Day" :P |
417 | - if (!empty($context['calendar_holidays'])) |
|
418 | - echo ' |
|
429 | + if (!empty($context['calendar_holidays'])) { |
|
430 | + echo ' |
|
419 | 431 | <p class="inline holiday"> |
420 | 432 | <span>', $txt['calendar_prompt'], '</span> ', implode(', ', $context['calendar_holidays']), ' |
421 | 433 | </p>'; |
434 | + } |
|
422 | 435 | |
423 | 436 | // People's birthdays. Like mine. And yours, I guess. Kidding. |
424 | 437 | if (!empty($context['calendar_birthdays'])) |
@@ -428,9 +441,10 @@ discard block |
||
428 | 441 | <span class="birthday">', $context['calendar_only_today'] ? $txt['birthdays'] : $txt['birthdays_upcoming'], '</span>'; |
429 | 442 | |
430 | 443 | // Each member in calendar_birthdays has: id, name (person), age (if they have one set?), is_last. (last in list?), and is_today (birthday is today?) |
431 | - foreach ($context['calendar_birthdays'] as $member) |
|
432 | - echo ' |
|
444 | + foreach ($context['calendar_birthdays'] as $member) { |
|
445 | + echo ' |
|
433 | 446 | <a href="', $scripturl, '?action=profile;u=', $member['id'], '">', $member['is_today'] ? '<strong class="fix_rtl_names">' : '', $member['name'], $member['is_today'] ? '</strong>' : '', isset($member['age']) ? ' (' . $member['age'] . ')' : '', '</a>', $member['is_last'] ? '' : ', '; |
447 | + } |
|
434 | 448 | |
435 | 449 | echo ' |
436 | 450 | </p>'; |
@@ -445,9 +459,10 @@ discard block |
||
445 | 459 | |
446 | 460 | // Each event in calendar_events should have: |
447 | 461 | // title, href, is_last, can_edit (are they allowed?), modify_href, and is_today. |
448 | - foreach ($context['calendar_events'] as $event) |
|
449 | - echo ' |
|
462 | + foreach ($context['calendar_events'] as $event) { |
|
463 | + echo ' |
|
450 | 464 | ', $event['can_edit'] ? '<a href="' . $event['modify_href'] . '" title="' . $txt['calendar_edit'] . '"><span class="generic_icons calendar_modify"></span></a> ' : '', $event['href'] == '' ? '' : '<a href="' . $event['href'] . '">', $event['is_today'] ? '<strong>' . $event['title'] . '</strong>' : $event['title'], $event['href'] == '' ? '' : '</a>', $event['is_last'] ? '<br>' : ', '; |
465 | + } |
|
451 | 466 | echo ' |
452 | 467 | </p>'; |
453 | 468 | } |
@@ -493,17 +508,21 @@ discard block |
||
493 | 508 | // Handle hidden users and buddies. |
494 | 509 | $bracketList = array(); |
495 | 510 | |
496 | - if ($context['show_buddies']) |
|
497 | - $bracketList[] = comma_format($context['num_buddies']) . ' ' . ($context['num_buddies'] == 1 ? $txt['buddy'] : $txt['buddies']); |
|
511 | + if ($context['show_buddies']) { |
|
512 | + $bracketList[] = comma_format($context['num_buddies']) . ' ' . ($context['num_buddies'] == 1 ? $txt['buddy'] : $txt['buddies']); |
|
513 | + } |
|
498 | 514 | |
499 | - if (!empty($context['num_spiders'])) |
|
500 | - $bracketList[] = comma_format($context['num_spiders']) . ' ' . ($context['num_spiders'] == 1 ? $txt['spider'] : $txt['spiders']); |
|
515 | + if (!empty($context['num_spiders'])) { |
|
516 | + $bracketList[] = comma_format($context['num_spiders']) . ' ' . ($context['num_spiders'] == 1 ? $txt['spider'] : $txt['spiders']); |
|
517 | + } |
|
501 | 518 | |
502 | - if (!empty($context['num_users_hidden'])) |
|
503 | - $bracketList[] = comma_format($context['num_users_hidden']) . ' ' . ($context['num_spiders'] == 1 ? $txt['hidden'] : $txt['hidden_s']); |
|
519 | + if (!empty($context['num_users_hidden'])) { |
|
520 | + $bracketList[] = comma_format($context['num_users_hidden']) . ' ' . ($context['num_spiders'] == 1 ? $txt['hidden'] : $txt['hidden_s']); |
|
521 | + } |
|
504 | 522 | |
505 | - if (!empty($bracketList)) |
|
506 | - echo ' (' . implode(', ', $bracketList) . ')'; |
|
523 | + if (!empty($bracketList)) { |
|
524 | + echo ' (' . implode(', ', $bracketList) . ')'; |
|
525 | + } |
|
507 | 526 | |
508 | 527 | echo $context['show_who'] ? '</a>' : '', ' |
509 | 528 | |
@@ -517,9 +536,10 @@ discard block |
||
517 | 536 | ', sprintf($txt['users_active'], $modSettings['lastActive']), ': ', implode(', ', $context['list_users_online']); |
518 | 537 | |
519 | 538 | // Showing membergroups? |
520 | - if (!empty($settings['show_group_key']) && !empty($context['membergroups'])) |
|
521 | - echo ' |
|
539 | + if (!empty($settings['show_group_key']) && !empty($context['membergroups'])) { |
|
540 | + echo ' |
|
522 | 541 | <span class="membergroups">' . implode(', ', $context['membergroups']) . '</span>'; |
542 | + } |
|
523 | 543 | } |
524 | 544 | |
525 | 545 | echo ' |
@@ -12,8 +12,9 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Don't do anything if SMF is already loaded. |
15 | -if (defined('SMF')) |
|
15 | +if (defined('SMF')) { |
|
16 | 16 | return true; |
17 | +} |
|
17 | 18 | |
18 | 19 | define('SMF', 'SSI'); |
19 | 20 | |
@@ -28,16 +29,18 @@ discard block |
||
28 | 29 | $time_start = microtime(true); |
29 | 30 | |
30 | 31 | // Just being safe... |
31 | -foreach (array('db_character_set', 'cachedir') as $variable) |
|
32 | +foreach (array('db_character_set', 'cachedir') as $variable) { |
|
32 | 33 | if (isset($GLOBALS[$variable])) |
33 | 34 | unset($GLOBALS[$variable]); |
35 | +} |
|
34 | 36 | |
35 | 37 | // Get the forum's settings for database and file paths. |
36 | 38 | require_once(dirname(__FILE__) . '/Settings.php'); |
37 | 39 | |
38 | 40 | // Make absolutely sure the cache directory is defined. |
39 | -if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir . '/cache')) |
|
41 | +if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir . '/cache')) { |
|
40 | 42 | $cachedir = $boarddir . '/cache'; |
43 | +} |
|
41 | 44 | |
42 | 45 | $ssi_error_reporting = error_reporting(E_ALL); |
43 | 46 | /* Set this to one of three values depending on what you want to happen in the case of a fatal error. |
@@ -48,12 +51,14 @@ discard block |
||
48 | 51 | $ssi_on_error_method = false; |
49 | 52 | |
50 | 53 | // Don't do john didley if the forum's been shut down completely. |
51 | -if ($maintenance == 2 && (!isset($ssi_maintenance_off) || $ssi_maintenance_off !== true)) |
|
54 | +if ($maintenance == 2 && (!isset($ssi_maintenance_off) || $ssi_maintenance_off !== true)) { |
|
52 | 55 | die($mmessage); |
56 | +} |
|
53 | 57 | |
54 | 58 | // Fix for using the current directory as a path. |
55 | -if (substr($sourcedir, 0, 1) == '.' && substr($sourcedir, 1, 1) != '.') |
|
59 | +if (substr($sourcedir, 0, 1) == '.' && substr($sourcedir, 1, 1) != '.') { |
|
56 | 60 | $sourcedir = dirname(__FILE__) . substr($sourcedir, 1); |
61 | +} |
|
57 | 62 | |
58 | 63 | // Load the important includes. |
59 | 64 | require_once($sourcedir . '/QueryString.php'); |
@@ -78,26 +83,30 @@ discard block |
||
78 | 83 | cleanRequest(); |
79 | 84 | |
80 | 85 | // Seed the random generator? |
81 | -if (empty($modSettings['rand_seed']) || mt_rand(1, 250) == 69) |
|
86 | +if (empty($modSettings['rand_seed']) || mt_rand(1, 250) == 69) { |
|
82 | 87 | smf_seed_generator(); |
88 | +} |
|
83 | 89 | |
84 | 90 | // Check on any hacking attempts. |
85 | -if (isset($_REQUEST['GLOBALS']) || isset($_COOKIE['GLOBALS'])) |
|
91 | +if (isset($_REQUEST['GLOBALS']) || isset($_COOKIE['GLOBALS'])) { |
|
86 | 92 | die('No direct access...'); |
87 | -elseif (isset($_REQUEST['ssi_theme']) && (int) $_REQUEST['ssi_theme'] == (int) $ssi_theme) |
|
93 | +} elseif (isset($_REQUEST['ssi_theme']) && (int) $_REQUEST['ssi_theme'] == (int) $ssi_theme) { |
|
88 | 94 | die('No direct access...'); |
89 | -elseif (isset($_COOKIE['ssi_theme']) && (int) $_COOKIE['ssi_theme'] == (int) $ssi_theme) |
|
95 | +} elseif (isset($_COOKIE['ssi_theme']) && (int) $_COOKIE['ssi_theme'] == (int) $ssi_theme) { |
|
90 | 96 | die('No direct access...'); |
91 | -elseif (isset($_REQUEST['ssi_layers'], $ssi_layers) && (@get_magic_quotes_gpc() ? stripslashes($_REQUEST['ssi_layers']) : $_REQUEST['ssi_layers']) == $ssi_layers) |
|
97 | +} elseif (isset($_REQUEST['ssi_layers'], $ssi_layers) && (@get_magic_quotes_gpc() ? stripslashes($_REQUEST['ssi_layers']) : $_REQUEST['ssi_layers']) == $ssi_layers) { |
|
92 | 98 | die('No direct access...'); |
93 | -if (isset($_REQUEST['context'])) |
|
99 | +} |
|
100 | +if (isset($_REQUEST['context'])) { |
|
94 | 101 | die('No direct access...'); |
102 | +} |
|
95 | 103 | |
96 | 104 | // Gzip output? (because it must be boolean and true, this can't be hacked.) |
97 | -if (isset($ssi_gzip) && $ssi_gzip === true && ini_get('zlib.output_compression') != '1' && ini_get('output_handler') != 'ob_gzhandler' && version_compare(PHP_VERSION, '4.2.0', '>=')) |
|
105 | +if (isset($ssi_gzip) && $ssi_gzip === true && ini_get('zlib.output_compression') != '1' && ini_get('output_handler') != 'ob_gzhandler' && version_compare(PHP_VERSION, '4.2.0', '>=')) { |
|
98 | 106 | ob_start('ob_gzhandler'); |
99 | -else |
|
107 | +} else { |
|
100 | 108 | $modSettings['enableCompressedOutput'] = '0'; |
109 | +} |
|
101 | 110 | |
102 | 111 | /** |
103 | 112 | * An autoloader for certain classes. |
@@ -146,9 +155,9 @@ discard block |
||
146 | 155 | ob_start('ob_sessrewrite'); |
147 | 156 | |
148 | 157 | // Start the session... known to scramble SSI includes in cases... |
149 | -if (!headers_sent()) |
|
158 | +if (!headers_sent()) { |
|
150 | 159 | loadSession(); |
151 | -else |
|
160 | +} else |
|
152 | 161 | { |
153 | 162 | if (isset($_COOKIE[session_name()]) || isset($_REQUEST[session_name()])) |
154 | 163 | { |
@@ -182,12 +191,14 @@ discard block |
||
182 | 191 | loadTheme(isset($ssi_theme) ? (int) $ssi_theme : 0); |
183 | 192 | |
184 | 193 | // @todo: probably not the best place, but somewhere it should be set... |
185 | -if (!headers_sent()) |
|
194 | +if (!headers_sent()) { |
|
186 | 195 | header('content-type: text/html; charset=' . (empty($modSettings['global_character_set']) ? (empty($txt['lang_character_set']) ? 'ISO-8859-1' : $txt['lang_character_set']) : $modSettings['global_character_set'])); |
196 | +} |
|
187 | 197 | |
188 | 198 | // Take care of any banning that needs to be done. |
189 | -if (isset($_REQUEST['ssi_ban']) || (isset($ssi_ban) && $ssi_ban === true)) |
|
199 | +if (isset($_REQUEST['ssi_ban']) || (isset($ssi_ban) && $ssi_ban === true)) { |
|
190 | 200 | is_not_banned(); |
201 | +} |
|
191 | 202 | |
192 | 203 | // Do we allow guests in here? |
193 | 204 | if (empty($ssi_guest_access) && empty($modSettings['allow_guestAccess']) && $user_info['is_guest'] && basename($_SERVER['PHP_SELF']) != 'SSI.php') |
@@ -202,17 +213,19 @@ discard block |
||
202 | 213 | { |
203 | 214 | $context['template_layers'] = $ssi_layers; |
204 | 215 | template_header(); |
205 | -} |
|
206 | -else |
|
216 | +} else { |
|
207 | 217 | setupThemeContext(); |
218 | +} |
|
208 | 219 | |
209 | 220 | // Make sure they didn't muss around with the settings... but only if it's not cli. |
210 | -if (isset($_SERVER['REMOTE_ADDR']) && !isset($_SERVER['is_cli']) && session_id() == '') |
|
221 | +if (isset($_SERVER['REMOTE_ADDR']) && !isset($_SERVER['is_cli']) && session_id() == '') { |
|
211 | 222 | trigger_error($txt['ssi_session_broken'], E_USER_NOTICE); |
223 | +} |
|
212 | 224 | |
213 | 225 | // Without visiting the forum this session variable might not be set on submit. |
214 | -if (!isset($_SESSION['USER_AGENT']) && (!isset($_GET['ssi_function']) || $_GET['ssi_function'] !== 'pollVote')) |
|
226 | +if (!isset($_SESSION['USER_AGENT']) && (!isset($_GET['ssi_function']) || $_GET['ssi_function'] !== 'pollVote')) { |
|
215 | 227 | $_SESSION['USER_AGENT'] = $_SERVER['HTTP_USER_AGENT']; |
228 | +} |
|
216 | 229 | |
217 | 230 | // Have the ability to easily add functions to SSI. |
218 | 231 | call_integration_hook('integrate_SSI'); |
@@ -221,11 +234,13 @@ discard block |
||
221 | 234 | if (basename($_SERVER['PHP_SELF']) == 'SSI.php') |
222 | 235 | { |
223 | 236 | // You shouldn't just access SSI.php directly by URL!! |
224 | - if (!isset($_GET['ssi_function'])) |
|
225 | - die(sprintf($txt['ssi_not_direct'], $user_info['is_admin'] ? '\'' . addslashes(__FILE__) . '\'' : '\'SSI.php\'')); |
|
237 | + if (!isset($_GET['ssi_function'])) { |
|
238 | + die(sprintf($txt['ssi_not_direct'], $user_info['is_admin'] ? '\'' . addslashes(__FILE__) . '\'' : '\'SSI.php\'')); |
|
239 | + } |
|
226 | 240 | // Call a function passed by GET. |
227 | - if (function_exists('ssi_' . $_GET['ssi_function']) && (!empty($modSettings['allow_guestAccess']) || !$user_info['is_guest'])) |
|
228 | - call_user_func('ssi_' . $_GET['ssi_function']); |
|
241 | + if (function_exists('ssi_' . $_GET['ssi_function']) && (!empty($modSettings['allow_guestAccess']) || !$user_info['is_guest'])) { |
|
242 | + call_user_func('ssi_' . $_GET['ssi_function']); |
|
243 | + } |
|
229 | 244 | exit; |
230 | 245 | } |
231 | 246 | |
@@ -242,9 +257,10 @@ discard block |
||
242 | 257 | */ |
243 | 258 | function ssi_shutdown() |
244 | 259 | { |
245 | - if (!isset($_GET['ssi_function']) || $_GET['ssi_function'] != 'shutdown') |
|
246 | - template_footer(); |
|
247 | -} |
|
260 | + if (!isset($_GET['ssi_function']) || $_GET['ssi_function'] != 'shutdown') { |
|
261 | + template_footer(); |
|
262 | + } |
|
263 | + } |
|
248 | 264 | |
249 | 265 | /** |
250 | 266 | * Display a welcome message, like: Hey, User, you have 0 messages, 0 are new. |
@@ -257,15 +273,17 @@ discard block |
||
257 | 273 | |
258 | 274 | if ($output_method == 'echo') |
259 | 275 | { |
260 | - if ($context['user']['is_guest']) |
|
261 | - echo sprintf($txt[$context['can_register'] ? 'welcome_guest_register' : 'welcome_guest'], $txt['guest_title'], $context['forum_name_html_safe'], $scripturl . '?action=login', 'return reqOverlayDiv(this.href, ' . JavaScriptEscape($txt['login']) . ');', $scripturl . '?action=signup'); |
|
262 | - else |
|
263 | - echo $txt['hello_member'], ' <strong>', $context['user']['name'], '</strong>', allowedTo('pm_read') ? ', ' . (empty($context['user']['messages']) ? $txt['msg_alert_no_messages'] : (($context['user']['messages'] == 1 ? sprintf($txt['msg_alert_one_message'], $scripturl . '?action=pm') : sprintf($txt['msg_alert_many_message'], $scripturl . '?action=pm', $context['user']['messages'])) . ', ' . ($context['user']['unread_messages'] == 1 ? $txt['msg_alert_one_new'] : sprintf($txt['msg_alert_many_new'], $context['user']['unread_messages'])))) : ''; |
|
276 | + if ($context['user']['is_guest']) { |
|
277 | + echo sprintf($txt[$context['can_register'] ? 'welcome_guest_register' : 'welcome_guest'], $txt['guest_title'], $context['forum_name_html_safe'], $scripturl . '?action=login', 'return reqOverlayDiv(this.href, ' . JavaScriptEscape($txt['login']) . ');', $scripturl . '?action=signup'); |
|
278 | + } else { |
|
279 | + echo $txt['hello_member'], ' <strong>', $context['user']['name'], '</strong>', allowedTo('pm_read') ? ', ' . (empty($context['user']['messages']) ? $txt['msg_alert_no_messages'] : (($context['user']['messages'] == 1 ? sprintf($txt['msg_alert_one_message'], $scripturl . '?action=pm') : sprintf($txt['msg_alert_many_message'], $scripturl . '?action=pm', $context['user']['messages'])) . ', ' . ($context['user']['unread_messages'] == 1 ? $txt['msg_alert_one_new'] : sprintf($txt['msg_alert_many_new'], $context['user']['unread_messages'])))) : ''; |
|
280 | + } |
|
264 | 281 | } |
265 | 282 | // Don't echo... then do what?! |
266 | - else |
|
267 | - return $context['user']; |
|
268 | -} |
|
283 | + else { |
|
284 | + return $context['user']; |
|
285 | + } |
|
286 | + } |
|
269 | 287 | |
270 | 288 | /** |
271 | 289 | * Display a menu bar, like is displayed at the top of the forum. |
@@ -276,12 +294,14 @@ discard block |
||
276 | 294 | { |
277 | 295 | global $context; |
278 | 296 | |
279 | - if ($output_method == 'echo') |
|
280 | - template_menu(); |
|
297 | + if ($output_method == 'echo') { |
|
298 | + template_menu(); |
|
299 | + } |
|
281 | 300 | // What else could this do? |
282 | - else |
|
283 | - return $context['menu_buttons']; |
|
284 | -} |
|
301 | + else { |
|
302 | + return $context['menu_buttons']; |
|
303 | + } |
|
304 | + } |
|
285 | 305 | |
286 | 306 | /** |
287 | 307 | * Show a logout link. |
@@ -293,20 +313,23 @@ discard block |
||
293 | 313 | { |
294 | 314 | global $context, $txt, $scripturl; |
295 | 315 | |
296 | - if ($redirect_to != '') |
|
297 | - $_SESSION['logout_url'] = $redirect_to; |
|
316 | + if ($redirect_to != '') { |
|
317 | + $_SESSION['logout_url'] = $redirect_to; |
|
318 | + } |
|
298 | 319 | |
299 | 320 | // Guests can't log out. |
300 | - if ($context['user']['is_guest']) |
|
301 | - return false; |
|
321 | + if ($context['user']['is_guest']) { |
|
322 | + return false; |
|
323 | + } |
|
302 | 324 | |
303 | 325 | $link = '<a href="' . $scripturl . '?action=logout;' . $context['session_var'] . '=' . $context['session_id'] . '">' . $txt['logout'] . '</a>'; |
304 | 326 | |
305 | - if ($output_method == 'echo') |
|
306 | - echo $link; |
|
307 | - else |
|
308 | - return $link; |
|
309 | -} |
|
327 | + if ($output_method == 'echo') { |
|
328 | + echo $link; |
|
329 | + } else { |
|
330 | + return $link; |
|
331 | + } |
|
332 | + } |
|
310 | 333 | |
311 | 334 | /** |
312 | 335 | * Recent post list: [board] Subject by Poster Date |
@@ -322,17 +345,17 @@ discard block |
||
322 | 345 | global $modSettings, $context; |
323 | 346 | |
324 | 347 | // Excluding certain boards... |
325 | - if ($exclude_boards === null && !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0) |
|
326 | - $exclude_boards = array($modSettings['recycle_board']); |
|
327 | - else |
|
328 | - $exclude_boards = empty($exclude_boards) ? array() : (is_array($exclude_boards) ? $exclude_boards : array($exclude_boards)); |
|
348 | + if ($exclude_boards === null && !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0) { |
|
349 | + $exclude_boards = array($modSettings['recycle_board']); |
|
350 | + } else { |
|
351 | + $exclude_boards = empty($exclude_boards) ? array() : (is_array($exclude_boards) ? $exclude_boards : array($exclude_boards)); |
|
352 | + } |
|
329 | 353 | |
330 | 354 | // What about including certain boards - note we do some protection here as pre-2.0 didn't have this parameter. |
331 | 355 | if (is_array($include_boards) || (int) $include_boards === $include_boards) |
332 | 356 | { |
333 | 357 | $include_boards = is_array($include_boards) ? $include_boards : array($include_boards); |
334 | - } |
|
335 | - elseif ($include_boards != null) |
|
358 | + } elseif ($include_boards != null) |
|
336 | 359 | { |
337 | 360 | $include_boards = array(); |
338 | 361 | } |
@@ -369,8 +392,9 @@ discard block |
||
369 | 392 | { |
370 | 393 | global $modSettings; |
371 | 394 | |
372 | - if (empty($post_ids)) |
|
373 | - return; |
|
395 | + if (empty($post_ids)) { |
|
396 | + return; |
|
397 | + } |
|
374 | 398 | |
375 | 399 | // Allow the user to request more than one - why not? |
376 | 400 | $post_ids = is_array($post_ids) ? $post_ids : array($post_ids); |
@@ -405,8 +429,9 @@ discard block |
||
405 | 429 | global $scripturl, $txt, $user_info; |
406 | 430 | global $modSettings, $smcFunc, $context; |
407 | 431 | |
408 | - if (!empty($modSettings['enable_likes'])) |
|
409 | - $context['can_like'] = allowedTo('likes_like'); |
|
432 | + if (!empty($modSettings['enable_likes'])) { |
|
433 | + $context['can_like'] = allowedTo('likes_like'); |
|
434 | + } |
|
410 | 435 | |
411 | 436 | // Find all the posts. Newer ones will have higher IDs. |
412 | 437 | $request = $smcFunc['db_query']('substring', ' |
@@ -472,12 +497,13 @@ discard block |
||
472 | 497 | ); |
473 | 498 | |
474 | 499 | // Get the likes for each message. |
475 | - if (!empty($modSettings['enable_likes'])) |
|
476 | - $posts[$row['id_msg']]['likes'] = array( |
|
500 | + if (!empty($modSettings['enable_likes'])) { |
|
501 | + $posts[$row['id_msg']]['likes'] = array( |
|
477 | 502 | 'count' => $row['likes'], |
478 | 503 | 'you' => in_array($row['id_msg'], prepareLikesContext($row['id_topic'])), |
479 | 504 | 'can_like' => !$context['user']['is_guest'] && $row['id_member'] != $context['user']['id'] && !empty($context['can_like']), |
480 | 505 | ); |
506 | + } |
|
481 | 507 | } |
482 | 508 | $smcFunc['db_free_result']($request); |
483 | 509 | |
@@ -485,13 +511,14 @@ discard block |
||
485 | 511 | call_integration_hook('integrate_ssi_queryPosts', array(&$posts)); |
486 | 512 | |
487 | 513 | // Just return it. |
488 | - if ($output_method != 'echo' || empty($posts)) |
|
489 | - return $posts; |
|
514 | + if ($output_method != 'echo' || empty($posts)) { |
|
515 | + return $posts; |
|
516 | + } |
|
490 | 517 | |
491 | 518 | echo ' |
492 | 519 | <table style="border: none" class="ssi_table">'; |
493 | - foreach ($posts as $post) |
|
494 | - echo ' |
|
520 | + foreach ($posts as $post) { |
|
521 | + echo ' |
|
495 | 522 | <tr> |
496 | 523 | <td style="text-align: right; vertical-align: top; white-space: nowrap"> |
497 | 524 | [', $post['board']['link'], '] |
@@ -505,6 +532,7 @@ discard block |
||
505 | 532 | ', $post['time'], ' |
506 | 533 | </td> |
507 | 534 | </tr>'; |
535 | + } |
|
508 | 536 | echo ' |
509 | 537 | </table>'; |
510 | 538 | } |
@@ -522,25 +550,26 @@ discard block |
||
522 | 550 | global $settings, $scripturl, $txt, $user_info; |
523 | 551 | global $modSettings, $smcFunc, $context; |
524 | 552 | |
525 | - if ($exclude_boards === null && !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0) |
|
526 | - $exclude_boards = array($modSettings['recycle_board']); |
|
527 | - else |
|
528 | - $exclude_boards = empty($exclude_boards) ? array() : (is_array($exclude_boards) ? $exclude_boards : array($exclude_boards)); |
|
553 | + if ($exclude_boards === null && !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0) { |
|
554 | + $exclude_boards = array($modSettings['recycle_board']); |
|
555 | + } else { |
|
556 | + $exclude_boards = empty($exclude_boards) ? array() : (is_array($exclude_boards) ? $exclude_boards : array($exclude_boards)); |
|
557 | + } |
|
529 | 558 | |
530 | 559 | // Only some boards?. |
531 | 560 | if (is_array($include_boards) || (int) $include_boards === $include_boards) |
532 | 561 | { |
533 | 562 | $include_boards = is_array($include_boards) ? $include_boards : array($include_boards); |
534 | - } |
|
535 | - elseif ($include_boards != null) |
|
563 | + } elseif ($include_boards != null) |
|
536 | 564 | { |
537 | 565 | $output_method = $include_boards; |
538 | 566 | $include_boards = array(); |
539 | 567 | } |
540 | 568 | |
541 | 569 | $icon_sources = array(); |
542 | - foreach ($context['stable_icons'] as $icon) |
|
543 | - $icon_sources[$icon] = 'images_url'; |
|
570 | + foreach ($context['stable_icons'] as $icon) { |
|
571 | + $icon_sources[$icon] = 'images_url'; |
|
572 | + } |
|
544 | 573 | |
545 | 574 | // Find all the posts in distinct topics. Newer ones will have higher IDs. |
546 | 575 | $request = $smcFunc['db_query']('substring', ' |
@@ -565,13 +594,15 @@ discard block |
||
565 | 594 | ) |
566 | 595 | ); |
567 | 596 | $topics = array(); |
568 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
569 | - $topics[$row['id_topic']] = $row; |
|
597 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
598 | + $topics[$row['id_topic']] = $row; |
|
599 | + } |
|
570 | 600 | $smcFunc['db_free_result']($request); |
571 | 601 | |
572 | 602 | // Did we find anything? If not, bail. |
573 | - if (empty($topics)) |
|
574 | - return array(); |
|
603 | + if (empty($topics)) { |
|
604 | + return array(); |
|
605 | + } |
|
575 | 606 | |
576 | 607 | $recycle_board = !empty($modSettings['recycle_enable']) && !empty($modSettings['recycle_board']) ? (int) $modSettings['recycle_board'] : 0; |
577 | 608 | |
@@ -599,19 +630,22 @@ discard block |
||
599 | 630 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
600 | 631 | { |
601 | 632 | $row['body'] = strip_tags(strtr(parse_bbc($row['body'], $row['smileys_enabled'], $row['id_msg']), array('<br>' => ' '))); |
602 | - if ($smcFunc['strlen']($row['body']) > 128) |
|
603 | - $row['body'] = $smcFunc['substr']($row['body'], 0, 128) . '...'; |
|
633 | + if ($smcFunc['strlen']($row['body']) > 128) { |
|
634 | + $row['body'] = $smcFunc['substr']($row['body'], 0, 128) . '...'; |
|
635 | + } |
|
604 | 636 | |
605 | 637 | // Censor the subject. |
606 | 638 | censorText($row['subject']); |
607 | 639 | censorText($row['body']); |
608 | 640 | |
609 | 641 | // Recycled icon |
610 | - if (!empty($recycle_board) && $topics[$row['id_topic']]['id_board']) |
|
611 | - $row['icon'] = 'recycled'; |
|
642 | + if (!empty($recycle_board) && $topics[$row['id_topic']]['id_board']) { |
|
643 | + $row['icon'] = 'recycled'; |
|
644 | + } |
|
612 | 645 | |
613 | - if (!empty($modSettings['messageIconChecks_enable']) && !isset($icon_sources[$row['icon']])) |
|
614 | - $icon_sources[$row['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
646 | + if (!empty($modSettings['messageIconChecks_enable']) && !isset($icon_sources[$row['icon']])) { |
|
647 | + $icon_sources[$row['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
648 | + } |
|
615 | 649 | |
616 | 650 | // Build the array. |
617 | 651 | $posts[] = array( |
@@ -650,13 +684,14 @@ discard block |
||
650 | 684 | call_integration_hook('integrate_ssi_recentTopics', array(&$posts)); |
651 | 685 | |
652 | 686 | // Just return it. |
653 | - if ($output_method != 'echo' || empty($posts)) |
|
654 | - return $posts; |
|
687 | + if ($output_method != 'echo' || empty($posts)) { |
|
688 | + return $posts; |
|
689 | + } |
|
655 | 690 | |
656 | 691 | echo ' |
657 | 692 | <table style="border: none" class="ssi_table">'; |
658 | - foreach ($posts as $post) |
|
659 | - echo ' |
|
693 | + foreach ($posts as $post) { |
|
694 | + echo ' |
|
660 | 695 | <tr> |
661 | 696 | <td style="text-align: right; vertical-align: top; white-space: nowrap"> |
662 | 697 | [', $post['board']['link'], '] |
@@ -670,6 +705,7 @@ discard block |
||
670 | 705 | ', $post['time'], ' |
671 | 706 | </td> |
672 | 707 | </tr>'; |
708 | + } |
|
673 | 709 | echo ' |
674 | 710 | </table>'; |
675 | 711 | } |
@@ -694,27 +730,30 @@ discard block |
||
694 | 730 | ) |
695 | 731 | ); |
696 | 732 | $return = array(); |
697 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
698 | - $return[] = array( |
|
733 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
734 | + $return[] = array( |
|
699 | 735 | 'id' => $row['id_member'], |
700 | 736 | 'name' => $row['real_name'], |
701 | 737 | 'href' => $scripturl . '?action=profile;u=' . $row['id_member'], |
702 | 738 | 'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>', |
703 | 739 | 'posts' => $row['posts'] |
704 | 740 | ); |
741 | + } |
|
705 | 742 | $smcFunc['db_free_result']($request); |
706 | 743 | |
707 | 744 | // If mods want to do somthing with this list of members, let them do that now. |
708 | 745 | call_integration_hook('integrate_ssi_topPoster', array(&$return)); |
709 | 746 | |
710 | 747 | // Just return all the top posters. |
711 | - if ($output_method != 'echo') |
|
712 | - return $return; |
|
748 | + if ($output_method != 'echo') { |
|
749 | + return $return; |
|
750 | + } |
|
713 | 751 | |
714 | 752 | // Make a quick array to list the links in. |
715 | 753 | $temp_array = array(); |
716 | - foreach ($return as $member) |
|
717 | - $temp_array[] = $member['link']; |
|
754 | + foreach ($return as $member) { |
|
755 | + $temp_array[] = $member['link']; |
|
756 | + } |
|
718 | 757 | |
719 | 758 | echo implode(', ', $temp_array); |
720 | 759 | } |
@@ -746,8 +785,8 @@ discard block |
||
746 | 785 | ) |
747 | 786 | ); |
748 | 787 | $boards = array(); |
749 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
750 | - $boards[] = array( |
|
788 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
789 | + $boards[] = array( |
|
751 | 790 | 'id' => $row['id_board'], |
752 | 791 | 'num_posts' => $row['num_posts'], |
753 | 792 | 'num_topics' => $row['num_topics'], |
@@ -756,14 +795,16 @@ discard block |
||
756 | 795 | 'href' => $scripturl . '?board=' . $row['id_board'] . '.0', |
757 | 796 | 'link' => '<a href="' . $scripturl . '?board=' . $row['id_board'] . '.0">' . $row['name'] . '</a>' |
758 | 797 | ); |
798 | + } |
|
759 | 799 | $smcFunc['db_free_result']($request); |
760 | 800 | |
761 | 801 | // If mods want to do somthing with this list of boards, let them do that now. |
762 | 802 | call_integration_hook('integrate_ssi_topBoards', array(&$boards)); |
763 | 803 | |
764 | 804 | // If we shouldn't output or have nothing to output, just jump out. |
765 | - if ($output_method != 'echo' || empty($boards)) |
|
766 | - return $boards; |
|
805 | + if ($output_method != 'echo' || empty($boards)) { |
|
806 | + return $boards; |
|
807 | + } |
|
767 | 808 | |
768 | 809 | echo ' |
769 | 810 | <table class="ssi_table"> |
@@ -772,13 +813,14 @@ discard block |
||
772 | 813 | <th style="text-align: left">', $txt['board_topics'], '</th> |
773 | 814 | <th style="text-align: left">', $txt['posts'], '</th> |
774 | 815 | </tr>'; |
775 | - foreach ($boards as $sBoard) |
|
776 | - echo ' |
|
816 | + foreach ($boards as $sBoard) { |
|
817 | + echo ' |
|
777 | 818 | <tr> |
778 | 819 | <td>', $sBoard['link'], $sBoard['new'] ? ' <a href="' . $sBoard['href'] . '" class="new_posts">' . $txt['new'] . '</a>' : '', '</td> |
779 | 820 | <td style="text-align: right">', comma_format($sBoard['num_topics']), '</td> |
780 | 821 | <td style="text-align: right">', comma_format($sBoard['num_posts']), '</td> |
781 | 822 | </tr>'; |
823 | + } |
|
782 | 824 | echo ' |
783 | 825 | </table>'; |
784 | 826 | } |
@@ -811,12 +853,13 @@ discard block |
||
811 | 853 | ) |
812 | 854 | ); |
813 | 855 | $topic_ids = array(); |
814 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
815 | - $topic_ids[] = $row['id_topic']; |
|
856 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
857 | + $topic_ids[] = $row['id_topic']; |
|
858 | + } |
|
816 | 859 | $smcFunc['db_free_result']($request); |
860 | + } else { |
|
861 | + $topic_ids = array(); |
|
817 | 862 | } |
818 | - else |
|
819 | - $topic_ids = array(); |
|
820 | 863 | |
821 | 864 | $request = $smcFunc['db_query']('', ' |
822 | 865 | SELECT m.subject, m.id_topic, t.num_views, t.num_replies |
@@ -855,8 +898,9 @@ discard block |
||
855 | 898 | // If mods want to do somthing with this list of topics, let them do that now. |
856 | 899 | call_integration_hook('integrate_ssi_topTopics', array(&$topics, $type)); |
857 | 900 | |
858 | - if ($output_method != 'echo' || empty($topics)) |
|
859 | - return $topics; |
|
901 | + if ($output_method != 'echo' || empty($topics)) { |
|
902 | + return $topics; |
|
903 | + } |
|
860 | 904 | |
861 | 905 | echo ' |
862 | 906 | <table class="ssi_table"> |
@@ -865,8 +909,8 @@ discard block |
||
865 | 909 | <th style="text-align: left">', $txt['views'], '</th> |
866 | 910 | <th style="text-align: left">', $txt['replies'], '</th> |
867 | 911 | </tr>'; |
868 | - foreach ($topics as $sTopic) |
|
869 | - echo ' |
|
912 | + foreach ($topics as $sTopic) { |
|
913 | + echo ' |
|
870 | 914 | <tr> |
871 | 915 | <td style="text-align: left"> |
872 | 916 | ', $sTopic['link'], ' |
@@ -874,6 +918,7 @@ discard block |
||
874 | 918 | <td style="text-align: right">', comma_format($sTopic['num_views']), '</td> |
875 | 919 | <td style="text-align: right">', comma_format($sTopic['num_replies']), '</td> |
876 | 920 | </tr>'; |
921 | + } |
|
877 | 922 | echo ' |
878 | 923 | </table>'; |
879 | 924 | } |
@@ -909,12 +954,13 @@ discard block |
||
909 | 954 | { |
910 | 955 | global $txt, $context; |
911 | 956 | |
912 | - if ($output_method == 'echo') |
|
913 | - echo ' |
|
957 | + if ($output_method == 'echo') { |
|
958 | + echo ' |
|
914 | 959 | ', sprintf($txt['welcome_newest_member'], $context['common_stats']['latest_member']['link']), '<br>'; |
915 | - else |
|
916 | - return $context['common_stats']['latest_member']; |
|
917 | -} |
|
960 | + } else { |
|
961 | + return $context['common_stats']['latest_member']; |
|
962 | + } |
|
963 | + } |
|
918 | 964 | |
919 | 965 | /** |
920 | 966 | * Fetches a random member. |
@@ -963,8 +1009,9 @@ discard block |
||
963 | 1009 | } |
964 | 1010 | |
965 | 1011 | // Just to be sure put the random generator back to something... random. |
966 | - if ($random_type != '') |
|
967 | - mt_srand(time()); |
|
1012 | + if ($random_type != '') { |
|
1013 | + mt_srand(time()); |
|
1014 | + } |
|
968 | 1015 | |
969 | 1016 | return $result; |
970 | 1017 | } |
@@ -977,8 +1024,9 @@ discard block |
||
977 | 1024 | */ |
978 | 1025 | function ssi_fetchMember($member_ids = array(), $output_method = 'echo') |
979 | 1026 | { |
980 | - if (empty($member_ids)) |
|
981 | - return; |
|
1027 | + if (empty($member_ids)) { |
|
1028 | + return; |
|
1029 | + } |
|
982 | 1030 | |
983 | 1031 | // Can have more than one member if you really want... |
984 | 1032 | $member_ids = is_array($member_ids) ? $member_ids : array($member_ids); |
@@ -1003,8 +1051,9 @@ discard block |
||
1003 | 1051 | */ |
1004 | 1052 | function ssi_fetchGroupMembers($group_id = null, $output_method = 'echo') |
1005 | 1053 | { |
1006 | - if ($group_id === null) |
|
1007 | - return; |
|
1054 | + if ($group_id === null) { |
|
1055 | + return; |
|
1056 | + } |
|
1008 | 1057 | |
1009 | 1058 | $query_where = ' |
1010 | 1059 | id_group = {int:id_group} |
@@ -1031,8 +1080,9 @@ discard block |
||
1031 | 1080 | { |
1032 | 1081 | global $smcFunc, $memberContext; |
1033 | 1082 | |
1034 | - if ($query_where === null) |
|
1035 | - return; |
|
1083 | + if ($query_where === null) { |
|
1084 | + return; |
|
1085 | + } |
|
1036 | 1086 | |
1037 | 1087 | // Fetch the members in question. |
1038 | 1088 | $request = $smcFunc['db_query']('', ' |
@@ -1045,12 +1095,14 @@ discard block |
||
1045 | 1095 | )) |
1046 | 1096 | ); |
1047 | 1097 | $members = array(); |
1048 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1049 | - $members[] = $row['id_member']; |
|
1098 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1099 | + $members[] = $row['id_member']; |
|
1100 | + } |
|
1050 | 1101 | $smcFunc['db_free_result']($request); |
1051 | 1102 | |
1052 | - if (empty($members)) |
|
1053 | - return array(); |
|
1103 | + if (empty($members)) { |
|
1104 | + return array(); |
|
1105 | + } |
|
1054 | 1106 | |
1055 | 1107 | // If mods want to do somthing with this list of members, let them do that now. |
1056 | 1108 | call_integration_hook('integrate_ssi_queryMembers', array(&$members)); |
@@ -1059,23 +1111,25 @@ discard block |
||
1059 | 1111 | loadMemberData($members); |
1060 | 1112 | |
1061 | 1113 | // Draw the table! |
1062 | - if ($output_method == 'echo') |
|
1063 | - echo ' |
|
1114 | + if ($output_method == 'echo') { |
|
1115 | + echo ' |
|
1064 | 1116 | <table style="border: none" class="ssi_table">'; |
1117 | + } |
|
1065 | 1118 | |
1066 | 1119 | $query_members = array(); |
1067 | 1120 | foreach ($members as $member) |
1068 | 1121 | { |
1069 | 1122 | // Load their context data. |
1070 | - if (!loadMemberContext($member)) |
|
1071 | - continue; |
|
1123 | + if (!loadMemberContext($member)) { |
|
1124 | + continue; |
|
1125 | + } |
|
1072 | 1126 | |
1073 | 1127 | // Store this member's information. |
1074 | 1128 | $query_members[$member] = $memberContext[$member]; |
1075 | 1129 | |
1076 | 1130 | // Only do something if we're echo'ing. |
1077 | - if ($output_method == 'echo') |
|
1078 | - echo ' |
|
1131 | + if ($output_method == 'echo') { |
|
1132 | + echo ' |
|
1079 | 1133 | <tr> |
1080 | 1134 | <td style="text-align: right; vertical-align: top; white-space: nowrap"> |
1081 | 1135 | ', $query_members[$member]['link'], ' |
@@ -1083,12 +1137,14 @@ discard block |
||
1083 | 1137 | <br>', $query_members[$member]['avatar']['image'], ' |
1084 | 1138 | </td> |
1085 | 1139 | </tr>'; |
1140 | + } |
|
1086 | 1141 | } |
1087 | 1142 | |
1088 | 1143 | // End the table if appropriate. |
1089 | - if ($output_method == 'echo') |
|
1090 | - echo ' |
|
1144 | + if ($output_method == 'echo') { |
|
1145 | + echo ' |
|
1091 | 1146 | </table>'; |
1147 | + } |
|
1092 | 1148 | |
1093 | 1149 | // Send back the data. |
1094 | 1150 | return $query_members; |
@@ -1103,8 +1159,9 @@ discard block |
||
1103 | 1159 | { |
1104 | 1160 | global $txt, $scripturl, $modSettings, $smcFunc; |
1105 | 1161 | |
1106 | - if (!allowedTo('view_stats')) |
|
1107 | - return; |
|
1162 | + if (!allowedTo('view_stats')) { |
|
1163 | + return; |
|
1164 | + } |
|
1108 | 1165 | |
1109 | 1166 | $totals = array( |
1110 | 1167 | 'members' => $modSettings['totalMembers'], |
@@ -1133,8 +1190,9 @@ discard block |
||
1133 | 1190 | // If mods want to do somthing with the board stats, let them do that now. |
1134 | 1191 | call_integration_hook('integrate_ssi_boardStats', array(&$totals)); |
1135 | 1192 | |
1136 | - if ($output_method != 'echo') |
|
1137 | - return $totals; |
|
1193 | + if ($output_method != 'echo') { |
|
1194 | + return $totals; |
|
1195 | + } |
|
1138 | 1196 | |
1139 | 1197 | echo ' |
1140 | 1198 | ', $txt['total_members'], ': <a href="', $scripturl . '?action=mlist">', comma_format($totals['members']), '</a><br> |
@@ -1163,8 +1221,8 @@ discard block |
||
1163 | 1221 | call_integration_hook('integrate_ssi_whosOnline', array(&$return)); |
1164 | 1222 | |
1165 | 1223 | // Add some redundancy for backwards compatibility reasons. |
1166 | - if ($output_method != 'echo') |
|
1167 | - return $return + array( |
|
1224 | + if ($output_method != 'echo') { |
|
1225 | + return $return + array( |
|
1168 | 1226 | 'users' => $return['users_online'], |
1169 | 1227 | 'guests' => $return['num_guests'], |
1170 | 1228 | 'hidden' => $return['num_users_hidden'], |
@@ -1172,29 +1230,35 @@ discard block |
||
1172 | 1230 | 'num_users' => $return['num_users_online'], |
1173 | 1231 | 'total_users' => $return['num_users_online'] + $return['num_guests'], |
1174 | 1232 | ); |
1233 | + } |
|
1175 | 1234 | |
1176 | 1235 | echo ' |
1177 | 1236 | ', comma_format($return['num_guests']), ' ', $return['num_guests'] == 1 ? $txt['guest'] : $txt['guests'], ', ', comma_format($return['num_users_online']), ' ', $return['num_users_online'] == 1 ? $txt['user'] : $txt['users']; |
1178 | 1237 | |
1179 | 1238 | $bracketList = array(); |
1180 | - if (!empty($user_info['buddies'])) |
|
1181 | - $bracketList[] = comma_format($return['num_buddies']) . ' ' . ($return['num_buddies'] == 1 ? $txt['buddy'] : $txt['buddies']); |
|
1182 | - if (!empty($return['num_spiders'])) |
|
1183 | - $bracketList[] = comma_format($return['num_spiders']) . ' ' . ($return['num_spiders'] == 1 ? $txt['spider'] : $txt['spiders']); |
|
1184 | - if (!empty($return['num_users_hidden'])) |
|
1185 | - $bracketList[] = comma_format($return['num_users_hidden']) . ' ' . $txt['hidden']; |
|
1239 | + if (!empty($user_info['buddies'])) { |
|
1240 | + $bracketList[] = comma_format($return['num_buddies']) . ' ' . ($return['num_buddies'] == 1 ? $txt['buddy'] : $txt['buddies']); |
|
1241 | + } |
|
1242 | + if (!empty($return['num_spiders'])) { |
|
1243 | + $bracketList[] = comma_format($return['num_spiders']) . ' ' . ($return['num_spiders'] == 1 ? $txt['spider'] : $txt['spiders']); |
|
1244 | + } |
|
1245 | + if (!empty($return['num_users_hidden'])) { |
|
1246 | + $bracketList[] = comma_format($return['num_users_hidden']) . ' ' . $txt['hidden']; |
|
1247 | + } |
|
1186 | 1248 | |
1187 | - if (!empty($bracketList)) |
|
1188 | - echo ' (' . implode(', ', $bracketList) . ')'; |
|
1249 | + if (!empty($bracketList)) { |
|
1250 | + echo ' (' . implode(', ', $bracketList) . ')'; |
|
1251 | + } |
|
1189 | 1252 | |
1190 | 1253 | echo '<br> |
1191 | 1254 | ', implode(', ', $return['list_users_online']); |
1192 | 1255 | |
1193 | 1256 | // Showing membergroups? |
1194 | - if (!empty($settings['show_group_key']) && !empty($return['membergroups'])) |
|
1195 | - echo '<br> |
|
1257 | + if (!empty($settings['show_group_key']) && !empty($return['membergroups'])) { |
|
1258 | + echo '<br> |
|
1196 | 1259 | [' . implode('] [', $return['membergroups']) . ']'; |
1197 | -} |
|
1260 | + } |
|
1261 | + } |
|
1198 | 1262 | |
1199 | 1263 | /** |
1200 | 1264 | * Just like whosOnline except it also logs the online presence. |
@@ -1205,11 +1269,12 @@ discard block |
||
1205 | 1269 | { |
1206 | 1270 | writeLog(); |
1207 | 1271 | |
1208 | - if ($output_method != 'echo') |
|
1209 | - return ssi_whosOnline($output_method); |
|
1210 | - else |
|
1211 | - ssi_whosOnline($output_method); |
|
1212 | -} |
|
1272 | + if ($output_method != 'echo') { |
|
1273 | + return ssi_whosOnline($output_method); |
|
1274 | + } else { |
|
1275 | + ssi_whosOnline($output_method); |
|
1276 | + } |
|
1277 | + } |
|
1213 | 1278 | |
1214 | 1279 | // Shows a login box. |
1215 | 1280 | /** |
@@ -1222,11 +1287,13 @@ discard block |
||
1222 | 1287 | { |
1223 | 1288 | global $scripturl, $txt, $user_info, $context; |
1224 | 1289 | |
1225 | - if ($redirect_to != '') |
|
1226 | - $_SESSION['login_url'] = $redirect_to; |
|
1290 | + if ($redirect_to != '') { |
|
1291 | + $_SESSION['login_url'] = $redirect_to; |
|
1292 | + } |
|
1227 | 1293 | |
1228 | - if ($output_method != 'echo' || !$user_info['is_guest']) |
|
1229 | - return $user_info['is_guest']; |
|
1294 | + if ($output_method != 'echo' || !$user_info['is_guest']) { |
|
1295 | + return $user_info['is_guest']; |
|
1296 | + } |
|
1230 | 1297 | |
1231 | 1298 | // Create a login token |
1232 | 1299 | createToken('login'); |
@@ -1278,8 +1345,9 @@ discard block |
||
1278 | 1345 | |
1279 | 1346 | $boardsAllowed = array_intersect(boardsAllowedTo('poll_view'), boardsAllowedTo('poll_vote')); |
1280 | 1347 | |
1281 | - if (empty($boardsAllowed)) |
|
1282 | - return array(); |
|
1348 | + if (empty($boardsAllowed)) { |
|
1349 | + return array(); |
|
1350 | + } |
|
1283 | 1351 | |
1284 | 1352 | $request = $smcFunc['db_query']('', ' |
1285 | 1353 | SELECT p.id_poll, p.question, t.id_topic, p.max_votes, p.guest_vote, p.hide_results, p.expire_time |
@@ -1312,12 +1380,14 @@ discard block |
||
1312 | 1380 | $smcFunc['db_free_result']($request); |
1313 | 1381 | |
1314 | 1382 | // This user has voted on all the polls. |
1315 | - if (empty($row) || !is_array($row)) |
|
1316 | - return array(); |
|
1383 | + if (empty($row) || !is_array($row)) { |
|
1384 | + return array(); |
|
1385 | + } |
|
1317 | 1386 | |
1318 | 1387 | // If this is a guest who's voted we'll through ourselves to show poll to show the results. |
1319 | - if ($user_info['is_guest'] && (!$row['guest_vote'] || (isset($_COOKIE['guest_poll_vote']) && in_array($row['id_poll'], explode(',', $_COOKIE['guest_poll_vote']))))) |
|
1320 | - return ssi_showPoll($row['id_topic'], $output_method); |
|
1388 | + if ($user_info['is_guest'] && (!$row['guest_vote'] || (isset($_COOKIE['guest_poll_vote']) && in_array($row['id_poll'], explode(',', $_COOKIE['guest_poll_vote']))))) { |
|
1389 | + return ssi_showPoll($row['id_topic'], $output_method); |
|
1390 | + } |
|
1321 | 1391 | |
1322 | 1392 | $request = $smcFunc['db_query']('', ' |
1323 | 1393 | SELECT COUNT(DISTINCT id_member) |
@@ -1381,8 +1451,9 @@ discard block |
||
1381 | 1451 | // If mods want to do somthing with this list of polls, let them do that now. |
1382 | 1452 | call_integration_hook('integrate_ssi_recentPoll', array(&$return, $topPollInstead)); |
1383 | 1453 | |
1384 | - if ($output_method != 'echo') |
|
1385 | - return $return; |
|
1454 | + if ($output_method != 'echo') { |
|
1455 | + return $return; |
|
1456 | + } |
|
1386 | 1457 | |
1387 | 1458 | if ($allow_view_results) |
1388 | 1459 | { |
@@ -1391,19 +1462,20 @@ discard block |
||
1391 | 1462 | <strong>', $return['question'], '</strong><br> |
1392 | 1463 | ', !empty($return['allowed_warning']) ? $return['allowed_warning'] . '<br>' : ''; |
1393 | 1464 | |
1394 | - foreach ($return['options'] as $option) |
|
1395 | - echo ' |
|
1465 | + foreach ($return['options'] as $option) { |
|
1466 | + echo ' |
|
1396 | 1467 | <label for="', $option['id'], '">', $option['vote_button'], ' ', $option['option'], '</label><br>'; |
1468 | + } |
|
1397 | 1469 | |
1398 | 1470 | echo ' |
1399 | 1471 | <input type="submit" value="', $txt['poll_vote'], '" class="button"> |
1400 | 1472 | <input type="hidden" name="poll" value="', $return['id'], '"> |
1401 | 1473 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
1402 | 1474 | </form>'; |
1475 | + } else { |
|
1476 | + echo $txt['poll_cannot_see']; |
|
1477 | + } |
|
1403 | 1478 | } |
1404 | - else |
|
1405 | - echo $txt['poll_cannot_see']; |
|
1406 | -} |
|
1407 | 1479 | |
1408 | 1480 | /** |
1409 | 1481 | * Shows the poll from the specified topic |
@@ -1417,13 +1489,15 @@ discard block |
||
1417 | 1489 | |
1418 | 1490 | $boardsAllowed = boardsAllowedTo('poll_view'); |
1419 | 1491 | |
1420 | - if (empty($boardsAllowed)) |
|
1421 | - return array(); |
|
1492 | + if (empty($boardsAllowed)) { |
|
1493 | + return array(); |
|
1494 | + } |
|
1422 | 1495 | |
1423 | - if ($topic === null && isset($_REQUEST['ssi_topic'])) |
|
1424 | - $topic = (int) $_REQUEST['ssi_topic']; |
|
1425 | - else |
|
1426 | - $topic = (int) $topic; |
|
1496 | + if ($topic === null && isset($_REQUEST['ssi_topic'])) { |
|
1497 | + $topic = (int) $_REQUEST['ssi_topic']; |
|
1498 | + } else { |
|
1499 | + $topic = (int) $topic; |
|
1500 | + } |
|
1427 | 1501 | |
1428 | 1502 | $request = $smcFunc['db_query']('', ' |
1429 | 1503 | SELECT |
@@ -1444,17 +1518,18 @@ discard block |
||
1444 | 1518 | ); |
1445 | 1519 | |
1446 | 1520 | // Either this topic has no poll, or the user cannot view it. |
1447 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1448 | - return array(); |
|
1521 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1522 | + return array(); |
|
1523 | + } |
|
1449 | 1524 | |
1450 | 1525 | $row = $smcFunc['db_fetch_assoc']($request); |
1451 | 1526 | $smcFunc['db_free_result']($request); |
1452 | 1527 | |
1453 | 1528 | // Check if they can vote. |
1454 | 1529 | $already_voted = false; |
1455 | - if (!empty($row['expire_time']) && $row['expire_time'] < time()) |
|
1456 | - $allow_vote = false; |
|
1457 | - elseif ($user_info['is_guest']) |
|
1530 | + if (!empty($row['expire_time']) && $row['expire_time'] < time()) { |
|
1531 | + $allow_vote = false; |
|
1532 | + } elseif ($user_info['is_guest']) |
|
1458 | 1533 | { |
1459 | 1534 | // There's a difference between "allowed to vote" and "already voted"... |
1460 | 1535 | $allow_vote = $row['guest_vote']; |
@@ -1464,10 +1539,9 @@ discard block |
||
1464 | 1539 | { |
1465 | 1540 | $already_voted = true; |
1466 | 1541 | } |
1467 | - } |
|
1468 | - elseif (!empty($row['voting_locked']) || !allowedTo('poll_vote', $row['id_board'])) |
|
1469 | - $allow_vote = false; |
|
1470 | - else |
|
1542 | + } elseif (!empty($row['voting_locked']) || !allowedTo('poll_vote', $row['id_board'])) { |
|
1543 | + $allow_vote = false; |
|
1544 | + } else |
|
1471 | 1545 | { |
1472 | 1546 | $request = $smcFunc['db_query']('', ' |
1473 | 1547 | SELECT id_member |
@@ -1549,8 +1623,9 @@ discard block |
||
1549 | 1623 | // If mods want to do somthing with this poll, let them do that now. |
1550 | 1624 | call_integration_hook('integrate_ssi_showPoll', array(&$return)); |
1551 | 1625 | |
1552 | - if ($output_method != 'echo') |
|
1553 | - return $return; |
|
1626 | + if ($output_method != 'echo') { |
|
1627 | + return $return; |
|
1628 | + } |
|
1554 | 1629 | |
1555 | 1630 | if ($return['allow_vote']) |
1556 | 1631 | { |
@@ -1559,17 +1634,17 @@ discard block |
||
1559 | 1634 | <strong>', $return['question'], '</strong><br> |
1560 | 1635 | ', !empty($return['allowed_warning']) ? $return['allowed_warning'] . '<br>' : ''; |
1561 | 1636 | |
1562 | - foreach ($return['options'] as $option) |
|
1563 | - echo ' |
|
1637 | + foreach ($return['options'] as $option) { |
|
1638 | + echo ' |
|
1564 | 1639 | <label for="', $option['id'], '">', $option['vote_button'], ' ', $option['option'], '</label><br>'; |
1640 | + } |
|
1565 | 1641 | |
1566 | 1642 | echo ' |
1567 | 1643 | <input type="submit" value="', $txt['poll_vote'], '" class="button"> |
1568 | 1644 | <input type="hidden" name="poll" value="', $return['id'], '"> |
1569 | 1645 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
1570 | 1646 | </form>'; |
1571 | - } |
|
1572 | - else |
|
1647 | + } else |
|
1573 | 1648 | { |
1574 | 1649 | echo ' |
1575 | 1650 | <div class="ssi_poll"> |
@@ -1649,27 +1724,32 @@ discard block |
||
1649 | 1724 | 'is_approved' => 1, |
1650 | 1725 | ) |
1651 | 1726 | ); |
1652 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1653 | - die; |
|
1727 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1728 | + die; |
|
1729 | + } |
|
1654 | 1730 | $row = $smcFunc['db_fetch_assoc']($request); |
1655 | 1731 | $smcFunc['db_free_result']($request); |
1656 | 1732 | |
1657 | - if (!empty($row['voting_locked']) || ($row['selected'] != -1 && !$user_info['is_guest']) || (!empty($row['expire_time']) && time() > $row['expire_time'])) |
|
1658 | - redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1733 | + if (!empty($row['voting_locked']) || ($row['selected'] != -1 && !$user_info['is_guest']) || (!empty($row['expire_time']) && time() > $row['expire_time'])) { |
|
1734 | + redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1735 | + } |
|
1659 | 1736 | |
1660 | 1737 | // Too many options checked? |
1661 | - if (count($_REQUEST['options']) > $row['max_votes']) |
|
1662 | - redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1738 | + if (count($_REQUEST['options']) > $row['max_votes']) { |
|
1739 | + redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1740 | + } |
|
1663 | 1741 | |
1664 | 1742 | // It's a guest who has already voted? |
1665 | 1743 | if ($user_info['is_guest']) |
1666 | 1744 | { |
1667 | 1745 | // Guest voting disabled? |
1668 | - if (!$row['guest_vote']) |
|
1669 | - redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1746 | + if (!$row['guest_vote']) { |
|
1747 | + redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1748 | + } |
|
1670 | 1749 | // Already voted? |
1671 | - elseif (isset($_COOKIE['guest_poll_vote']) && in_array($row['id_poll'], explode(',', $_COOKIE['guest_poll_vote']))) |
|
1672 | - redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1750 | + elseif (isset($_COOKIE['guest_poll_vote']) && in_array($row['id_poll'], explode(',', $_COOKIE['guest_poll_vote']))) { |
|
1751 | + redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1752 | + } |
|
1673 | 1753 | } |
1674 | 1754 | |
1675 | 1755 | $sOptions = array(); |
@@ -1723,11 +1803,13 @@ discard block |
||
1723 | 1803 | { |
1724 | 1804 | global $scripturl, $txt, $context; |
1725 | 1805 | |
1726 | - if (!allowedTo('search_posts')) |
|
1727 | - return; |
|
1806 | + if (!allowedTo('search_posts')) { |
|
1807 | + return; |
|
1808 | + } |
|
1728 | 1809 | |
1729 | - if ($output_method != 'echo') |
|
1730 | - return $scripturl . '?action=search'; |
|
1810 | + if ($output_method != 'echo') { |
|
1811 | + return $scripturl . '?action=search'; |
|
1812 | + } |
|
1731 | 1813 | |
1732 | 1814 | echo ' |
1733 | 1815 | <form action="', $scripturl, '?action=search2" method="post" accept-charset="', $context['character_set'], '"> |
@@ -1749,8 +1831,9 @@ discard block |
||
1749 | 1831 | // If mods want to do somthing with the news, let them do that now. Don't need to pass the news line itself, since it is already in $context. |
1750 | 1832 | call_integration_hook('integrate_ssi_news'); |
1751 | 1833 | |
1752 | - if ($output_method != 'echo') |
|
1753 | - return $context['random_news_line']; |
|
1834 | + if ($output_method != 'echo') { |
|
1835 | + return $context['random_news_line']; |
|
1836 | + } |
|
1754 | 1837 | |
1755 | 1838 | echo $context['random_news_line']; |
1756 | 1839 | } |
@@ -1764,8 +1847,9 @@ discard block |
||
1764 | 1847 | { |
1765 | 1848 | global $scripturl, $modSettings, $user_info; |
1766 | 1849 | |
1767 | - if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view') || !allowedTo('profile_view')) |
|
1768 | - return; |
|
1850 | + if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view') || !allowedTo('profile_view')) { |
|
1851 | + return; |
|
1852 | + } |
|
1769 | 1853 | |
1770 | 1854 | $eventOptions = array( |
1771 | 1855 | 'include_birthdays' => true, |
@@ -1776,13 +1860,15 @@ discard block |
||
1776 | 1860 | // The ssi_todaysCalendar variants all use the same hook and just pass on $eventOptions so the hooked code can distinguish different cases if necessary |
1777 | 1861 | call_integration_hook('integrate_ssi_calendar', array(&$return, $eventOptions)); |
1778 | 1862 | |
1779 | - if ($output_method != 'echo') |
|
1780 | - return $return['calendar_birthdays']; |
|
1863 | + if ($output_method != 'echo') { |
|
1864 | + return $return['calendar_birthdays']; |
|
1865 | + } |
|
1781 | 1866 | |
1782 | - foreach ($return['calendar_birthdays'] as $member) |
|
1783 | - echo ' |
|
1867 | + foreach ($return['calendar_birthdays'] as $member) { |
|
1868 | + echo ' |
|
1784 | 1869 | <a href="', $scripturl, '?action=profile;u=', $member['id'], '"><span class="fix_rtl_names">' . $member['name'] . '</span>' . (isset($member['age']) ? ' (' . $member['age'] . ')' : '') . '</a>' . (!$member['is_last'] ? ', ' : ''); |
1785 | -} |
|
1870 | + } |
|
1871 | + } |
|
1786 | 1872 | |
1787 | 1873 | /** |
1788 | 1874 | * Shows today's holidays. |
@@ -1793,8 +1879,9 @@ discard block |
||
1793 | 1879 | { |
1794 | 1880 | global $modSettings, $user_info; |
1795 | 1881 | |
1796 | - if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) |
|
1797 | - return; |
|
1882 | + if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) { |
|
1883 | + return; |
|
1884 | + } |
|
1798 | 1885 | |
1799 | 1886 | $eventOptions = array( |
1800 | 1887 | 'include_holidays' => true, |
@@ -1805,8 +1892,9 @@ discard block |
||
1805 | 1892 | // The ssi_todaysCalendar variants all use the same hook and just pass on $eventOptions so the hooked code can distinguish different cases if necessary |
1806 | 1893 | call_integration_hook('integrate_ssi_calendar', array(&$return, $eventOptions)); |
1807 | 1894 | |
1808 | - if ($output_method != 'echo') |
|
1809 | - return $return['calendar_holidays']; |
|
1895 | + if ($output_method != 'echo') { |
|
1896 | + return $return['calendar_holidays']; |
|
1897 | + } |
|
1810 | 1898 | |
1811 | 1899 | echo ' |
1812 | 1900 | ', implode(', ', $return['calendar_holidays']); |
@@ -1820,8 +1908,9 @@ discard block |
||
1820 | 1908 | { |
1821 | 1909 | global $modSettings, $user_info; |
1822 | 1910 | |
1823 | - if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) |
|
1824 | - return; |
|
1911 | + if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) { |
|
1912 | + return; |
|
1913 | + } |
|
1825 | 1914 | |
1826 | 1915 | $eventOptions = array( |
1827 | 1916 | 'include_events' => true, |
@@ -1832,14 +1921,16 @@ discard block |
||
1832 | 1921 | // The ssi_todaysCalendar variants all use the same hook and just pass on $eventOptions so the hooked code can distinguish different cases if necessary |
1833 | 1922 | call_integration_hook('integrate_ssi_calendar', array(&$return, $eventOptions)); |
1834 | 1923 | |
1835 | - if ($output_method != 'echo') |
|
1836 | - return $return['calendar_events']; |
|
1924 | + if ($output_method != 'echo') { |
|
1925 | + return $return['calendar_events']; |
|
1926 | + } |
|
1837 | 1927 | |
1838 | 1928 | foreach ($return['calendar_events'] as $event) |
1839 | 1929 | { |
1840 | - if ($event['can_edit']) |
|
1841 | - echo ' |
|
1930 | + if ($event['can_edit']) { |
|
1931 | + echo ' |
|
1842 | 1932 | <a href="' . $event['modify_href'] . '" style="color: #ff0000;">*</a> '; |
1933 | + } |
|
1843 | 1934 | echo ' |
1844 | 1935 | ' . $event['link'] . (!$event['is_last'] ? ', ' : ''); |
1845 | 1936 | } |
@@ -1854,8 +1945,9 @@ discard block |
||
1854 | 1945 | { |
1855 | 1946 | global $modSettings, $txt, $scripturl, $user_info; |
1856 | 1947 | |
1857 | - if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) |
|
1858 | - return; |
|
1948 | + if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) { |
|
1949 | + return; |
|
1950 | + } |
|
1859 | 1951 | |
1860 | 1952 | $eventOptions = array( |
1861 | 1953 | 'include_birthdays' => allowedTo('profile_view'), |
@@ -1868,19 +1960,22 @@ discard block |
||
1868 | 1960 | // The ssi_todaysCalendar variants all use the same hook and just pass on $eventOptions so the hooked code can distinguish different cases if necessary |
1869 | 1961 | call_integration_hook('integrate_ssi_calendar', array(&$return, $eventOptions)); |
1870 | 1962 | |
1871 | - if ($output_method != 'echo') |
|
1872 | - return $return; |
|
1963 | + if ($output_method != 'echo') { |
|
1964 | + return $return; |
|
1965 | + } |
|
1873 | 1966 | |
1874 | - if (!empty($return['calendar_holidays'])) |
|
1875 | - echo ' |
|
1967 | + if (!empty($return['calendar_holidays'])) { |
|
1968 | + echo ' |
|
1876 | 1969 | <span class="holiday">' . $txt['calendar_prompt'] . ' ' . implode(', ', $return['calendar_holidays']) . '<br></span>'; |
1970 | + } |
|
1877 | 1971 | if (!empty($return['calendar_birthdays'])) |
1878 | 1972 | { |
1879 | 1973 | echo ' |
1880 | 1974 | <span class="birthday">' . $txt['birthdays_upcoming'] . '</span> '; |
1881 | - foreach ($return['calendar_birthdays'] as $member) |
|
1882 | - echo ' |
|
1975 | + foreach ($return['calendar_birthdays'] as $member) { |
|
1976 | + echo ' |
|
1883 | 1977 | <a href="', $scripturl, '?action=profile;u=', $member['id'], '"><span class="fix_rtl_names">', $member['name'], '</span>', isset($member['age']) ? ' (' . $member['age'] . ')' : '', '</a>', !$member['is_last'] ? ', ' : ''; |
1978 | + } |
|
1884 | 1979 | echo ' |
1885 | 1980 | <br>'; |
1886 | 1981 | } |
@@ -1890,9 +1985,10 @@ discard block |
||
1890 | 1985 | <span class="event">' . $txt['events_upcoming'] . '</span> '; |
1891 | 1986 | foreach ($return['calendar_events'] as $event) |
1892 | 1987 | { |
1893 | - if ($event['can_edit']) |
|
1894 | - echo ' |
|
1988 | + if ($event['can_edit']) { |
|
1989 | + echo ' |
|
1895 | 1990 | <a href="' . $event['modify_href'] . '" style="color: #ff0000;">*</a> '; |
1991 | + } |
|
1896 | 1992 | echo ' |
1897 | 1993 | ' . $event['link'] . (!$event['is_last'] ? ', ' : ''); |
1898 | 1994 | } |
@@ -1916,25 +2012,29 @@ discard block |
||
1916 | 2012 | loadLanguage('Stats'); |
1917 | 2013 | |
1918 | 2014 | // Must be integers.... |
1919 | - if ($limit === null) |
|
1920 | - $limit = isset($_GET['limit']) ? (int) $_GET['limit'] : 5; |
|
1921 | - else |
|
1922 | - $limit = (int) $limit; |
|
1923 | - |
|
1924 | - if ($start === null) |
|
1925 | - $start = isset($_GET['start']) ? (int) $_GET['start'] : 0; |
|
1926 | - else |
|
1927 | - $start = (int) $start; |
|
1928 | - |
|
1929 | - if ($board !== null) |
|
1930 | - $board = (int) $board; |
|
1931 | - elseif (isset($_GET['board'])) |
|
1932 | - $board = (int) $_GET['board']; |
|
1933 | - |
|
1934 | - if ($length === null) |
|
1935 | - $length = isset($_GET['length']) ? (int) $_GET['length'] : 0; |
|
1936 | - else |
|
1937 | - $length = (int) $length; |
|
2015 | + if ($limit === null) { |
|
2016 | + $limit = isset($_GET['limit']) ? (int) $_GET['limit'] : 5; |
|
2017 | + } else { |
|
2018 | + $limit = (int) $limit; |
|
2019 | + } |
|
2020 | + |
|
2021 | + if ($start === null) { |
|
2022 | + $start = isset($_GET['start']) ? (int) $_GET['start'] : 0; |
|
2023 | + } else { |
|
2024 | + $start = (int) $start; |
|
2025 | + } |
|
2026 | + |
|
2027 | + if ($board !== null) { |
|
2028 | + $board = (int) $board; |
|
2029 | + } elseif (isset($_GET['board'])) { |
|
2030 | + $board = (int) $_GET['board']; |
|
2031 | + } |
|
2032 | + |
|
2033 | + if ($length === null) { |
|
2034 | + $length = isset($_GET['length']) ? (int) $_GET['length'] : 0; |
|
2035 | + } else { |
|
2036 | + $length = (int) $length; |
|
2037 | + } |
|
1938 | 2038 | |
1939 | 2039 | $limit = max(0, $limit); |
1940 | 2040 | $start = max(0, $start); |
@@ -1952,17 +2052,19 @@ discard block |
||
1952 | 2052 | ); |
1953 | 2053 | if ($smcFunc['db_num_rows']($request) == 0) |
1954 | 2054 | { |
1955 | - if ($output_method == 'echo') |
|
1956 | - die($txt['ssi_no_guests']); |
|
1957 | - else |
|
1958 | - return array(); |
|
2055 | + if ($output_method == 'echo') { |
|
2056 | + die($txt['ssi_no_guests']); |
|
2057 | + } else { |
|
2058 | + return array(); |
|
2059 | + } |
|
1959 | 2060 | } |
1960 | 2061 | list ($board) = $smcFunc['db_fetch_row']($request); |
1961 | 2062 | $smcFunc['db_free_result']($request); |
1962 | 2063 | |
1963 | 2064 | $icon_sources = array(); |
1964 | - foreach ($context['stable_icons'] as $icon) |
|
1965 | - $icon_sources[$icon] = 'images_url'; |
|
2065 | + foreach ($context['stable_icons'] as $icon) { |
|
2066 | + $icon_sources[$icon] = 'images_url'; |
|
2067 | + } |
|
1966 | 2068 | |
1967 | 2069 | if (!empty($modSettings['enable_likes'])) |
1968 | 2070 | { |
@@ -1985,12 +2087,14 @@ discard block |
||
1985 | 2087 | ) |
1986 | 2088 | ); |
1987 | 2089 | $posts = array(); |
1988 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1989 | - $posts[] = $row['id_first_msg']; |
|
2090 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2091 | + $posts[] = $row['id_first_msg']; |
|
2092 | + } |
|
1990 | 2093 | $smcFunc['db_free_result']($request); |
1991 | 2094 | |
1992 | - if (empty($posts)) |
|
1993 | - return array(); |
|
2095 | + if (empty($posts)) { |
|
2096 | + return array(); |
|
2097 | + } |
|
1994 | 2098 | |
1995 | 2099 | // Find the posts. |
1996 | 2100 | $request = $smcFunc['db_query']('', ' |
@@ -2020,24 +2124,28 @@ discard block |
||
2020 | 2124 | $last_space = strrpos($row['body'], ' '); |
2021 | 2125 | $last_open = strrpos($row['body'], '<'); |
2022 | 2126 | $last_close = strrpos($row['body'], '>'); |
2023 | - if (empty($last_space) || ($last_space == $last_open + 3 && (empty($last_close) || (!empty($last_close) && $last_close < $last_open))) || $last_space < $last_open || $last_open == $length - 6) |
|
2024 | - $cutoff = $last_open; |
|
2025 | - elseif (empty($last_close) || $last_close < $last_open) |
|
2026 | - $cutoff = $last_space; |
|
2127 | + if (empty($last_space) || ($last_space == $last_open + 3 && (empty($last_close) || (!empty($last_close) && $last_close < $last_open))) || $last_space < $last_open || $last_open == $length - 6) { |
|
2128 | + $cutoff = $last_open; |
|
2129 | + } elseif (empty($last_close) || $last_close < $last_open) { |
|
2130 | + $cutoff = $last_space; |
|
2131 | + } |
|
2027 | 2132 | |
2028 | - if ($cutoff !== false) |
|
2029 | - $row['body'] = $smcFunc['substr']($row['body'], 0, $cutoff); |
|
2133 | + if ($cutoff !== false) { |
|
2134 | + $row['body'] = $smcFunc['substr']($row['body'], 0, $cutoff); |
|
2135 | + } |
|
2030 | 2136 | $row['body'] .= '...'; |
2031 | 2137 | } |
2032 | 2138 | |
2033 | 2139 | $row['body'] = parse_bbc($row['body'], $row['smileys_enabled'], $row['id_msg']); |
2034 | 2140 | |
2035 | - if (!empty($recycle_board) && $row['id_board'] == $recycle_board) |
|
2036 | - $row['icon'] = 'recycled'; |
|
2141 | + if (!empty($recycle_board) && $row['id_board'] == $recycle_board) { |
|
2142 | + $row['icon'] = 'recycled'; |
|
2143 | + } |
|
2037 | 2144 | |
2038 | 2145 | // Check that this message icon is there... |
2039 | - if (!empty($modSettings['messageIconChecks_enable']) && !isset($icon_sources[$row['icon']])) |
|
2040 | - $icon_sources[$row['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
2146 | + if (!empty($modSettings['messageIconChecks_enable']) && !isset($icon_sources[$row['icon']])) { |
|
2147 | + $icon_sources[$row['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
2148 | + } |
|
2041 | 2149 | |
2042 | 2150 | censorText($row['subject']); |
2043 | 2151 | censorText($row['body']); |
@@ -2074,16 +2182,18 @@ discard block |
||
2074 | 2182 | } |
2075 | 2183 | $smcFunc['db_free_result']($request); |
2076 | 2184 | |
2077 | - if (empty($return)) |
|
2078 | - return $return; |
|
2185 | + if (empty($return)) { |
|
2186 | + return $return; |
|
2187 | + } |
|
2079 | 2188 | |
2080 | 2189 | $return[count($return) - 1]['is_last'] = true; |
2081 | 2190 | |
2082 | 2191 | // If mods want to do somthing with this list of posts, let them do that now. |
2083 | 2192 | call_integration_hook('integrate_ssi_boardNews', array(&$return)); |
2084 | 2193 | |
2085 | - if ($output_method != 'echo') |
|
2086 | - return $return; |
|
2194 | + if ($output_method != 'echo') { |
|
2195 | + return $return; |
|
2196 | + } |
|
2087 | 2197 | |
2088 | 2198 | foreach ($return as $news) |
2089 | 2199 | { |
@@ -2135,9 +2245,10 @@ discard block |
||
2135 | 2245 | echo ' |
2136 | 2246 | </div>'; |
2137 | 2247 | |
2138 | - if (!$news['is_last']) |
|
2139 | - echo ' |
|
2248 | + if (!$news['is_last']) { |
|
2249 | + echo ' |
|
2140 | 2250 | <hr>'; |
2251 | + } |
|
2141 | 2252 | } |
2142 | 2253 | } |
2143 | 2254 | |
@@ -2151,8 +2262,9 @@ discard block |
||
2151 | 2262 | { |
2152 | 2263 | global $user_info, $scripturl, $modSettings, $txt, $context, $smcFunc; |
2153 | 2264 | |
2154 | - if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) |
|
2155 | - return; |
|
2265 | + if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) { |
|
2266 | + return; |
|
2267 | + } |
|
2156 | 2268 | |
2157 | 2269 | // Find all events which are happening in the near future that the member can see. |
2158 | 2270 | $request = $smcFunc['db_query']('', ' |
@@ -2178,20 +2290,23 @@ discard block |
||
2178 | 2290 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
2179 | 2291 | { |
2180 | 2292 | // Check if we've already come by an event linked to this same topic with the same title... and don't display it if we have. |
2181 | - if (!empty($duplicates[$row['title'] . $row['id_topic']])) |
|
2182 | - continue; |
|
2293 | + if (!empty($duplicates[$row['title'] . $row['id_topic']])) { |
|
2294 | + continue; |
|
2295 | + } |
|
2183 | 2296 | |
2184 | 2297 | // Censor the title. |
2185 | 2298 | censorText($row['title']); |
2186 | 2299 | |
2187 | - if ($row['start_date'] < strftime('%Y-%m-%d', forum_time(false))) |
|
2188 | - $date = strftime('%Y-%m-%d', forum_time(false)); |
|
2189 | - else |
|
2190 | - $date = $row['start_date']; |
|
2300 | + if ($row['start_date'] < strftime('%Y-%m-%d', forum_time(false))) { |
|
2301 | + $date = strftime('%Y-%m-%d', forum_time(false)); |
|
2302 | + } else { |
|
2303 | + $date = $row['start_date']; |
|
2304 | + } |
|
2191 | 2305 | |
2192 | 2306 | // If the topic it is attached to is not approved then don't link it. |
2193 | - if (!empty($row['id_first_msg']) && !$row['approved']) |
|
2194 | - $row['id_board'] = $row['id_topic'] = $row['id_first_msg'] = 0; |
|
2307 | + if (!empty($row['id_first_msg']) && !$row['approved']) { |
|
2308 | + $row['id_board'] = $row['id_topic'] = $row['id_first_msg'] = 0; |
|
2309 | + } |
|
2195 | 2310 | |
2196 | 2311 | $allday = (empty($row['start_time']) || empty($row['end_time']) || empty($row['timezone']) || !in_array($row['timezone'], timezone_identifiers_list(DateTimeZone::ALL_WITH_BC))) ? true : false; |
2197 | 2312 | |
@@ -2217,24 +2332,27 @@ discard block |
||
2217 | 2332 | } |
2218 | 2333 | $smcFunc['db_free_result']($request); |
2219 | 2334 | |
2220 | - foreach ($return as $mday => $array) |
|
2221 | - $return[$mday][count($array) - 1]['is_last'] = true; |
|
2335 | + foreach ($return as $mday => $array) { |
|
2336 | + $return[$mday][count($array) - 1]['is_last'] = true; |
|
2337 | + } |
|
2222 | 2338 | |
2223 | 2339 | // If mods want to do somthing with this list of events, let them do that now. |
2224 | 2340 | call_integration_hook('integrate_ssi_recentEvents', array(&$return)); |
2225 | 2341 | |
2226 | - if ($output_method != 'echo' || empty($return)) |
|
2227 | - return $return; |
|
2342 | + if ($output_method != 'echo' || empty($return)) { |
|
2343 | + return $return; |
|
2344 | + } |
|
2228 | 2345 | |
2229 | 2346 | // Well the output method is echo. |
2230 | 2347 | echo ' |
2231 | 2348 | <span class="event">' . $txt['events'] . '</span> '; |
2232 | - foreach ($return as $mday => $array) |
|
2233 | - foreach ($array as $event) |
|
2349 | + foreach ($return as $mday => $array) { |
|
2350 | + foreach ($array as $event) |
|
2234 | 2351 | { |
2235 | 2352 | if ($event['can_edit']) |
2236 | 2353 | echo ' |
2237 | 2354 | <a href="' . $event['modify_href'] . '" style="color: #ff0000;">*</a> '; |
2355 | + } |
|
2238 | 2356 | |
2239 | 2357 | echo ' |
2240 | 2358 | ' . $event['link'] . (!$event['is_last'] ? ', ' : ''); |
@@ -2253,8 +2371,9 @@ discard block |
||
2253 | 2371 | global $smcFunc; |
2254 | 2372 | |
2255 | 2373 | // If $id is null, this was most likely called from a query string and should do nothing. |
2256 | - if ($id === null) |
|
2257 | - return; |
|
2374 | + if ($id === null) { |
|
2375 | + return; |
|
2376 | + } |
|
2258 | 2377 | |
2259 | 2378 | $request = $smcFunc['db_query']('', ' |
2260 | 2379 | SELECT passwd, member_name, is_activated |
@@ -2286,8 +2405,9 @@ discard block |
||
2286 | 2405 | $attachments_boards = boardsAllowedTo('view_attachments'); |
2287 | 2406 | |
2288 | 2407 | // No boards? Adios amigo. |
2289 | - if (empty($attachments_boards)) |
|
2290 | - return array(); |
|
2408 | + if (empty($attachments_boards)) { |
|
2409 | + return array(); |
|
2410 | + } |
|
2291 | 2411 | |
2292 | 2412 | // Is it an array? |
2293 | 2413 | $attachment_ext = (array) $attachment_ext; |
@@ -2371,8 +2491,9 @@ discard block |
||
2371 | 2491 | call_integration_hook('integrate_ssi_recentAttachments', array(&$attachments)); |
2372 | 2492 | |
2373 | 2493 | // So you just want an array? Here you can have it. |
2374 | - if ($output_method == 'array' || empty($attachments)) |
|
2375 | - return $attachments; |
|
2494 | + if ($output_method == 'array' || empty($attachments)) { |
|
2495 | + return $attachments; |
|
2496 | + } |
|
2376 | 2497 | |
2377 | 2498 | // Give them the default. |
2378 | 2499 | echo ' |
@@ -2383,14 +2504,15 @@ discard block |
||
2383 | 2504 | <th style="text-align: left; padding: 2">', $txt['downloads'], '</th> |
2384 | 2505 | <th style="text-align: left; padding: 2">', $txt['filesize'], '</th> |
2385 | 2506 | </tr>'; |
2386 | - foreach ($attachments as $attach) |
|
2387 | - echo ' |
|
2507 | + foreach ($attachments as $attach) { |
|
2508 | + echo ' |
|
2388 | 2509 | <tr> |
2389 | 2510 | <td>', $attach['file']['link'], '</td> |
2390 | 2511 | <td>', $attach['member']['link'], '</td> |
2391 | 2512 | <td style="text-align: center">', $attach['file']['downloads'], '</td> |
2392 | 2513 | <td>', $attach['file']['filesize'], '</td> |
2393 | 2514 | </tr>'; |
2515 | + } |
|
2394 | 2516 | echo ' |
2395 | 2517 | </table>'; |
2396 | 2518 | } |
@@ -15,8 +15,9 @@ discard block |
||
15 | 15 | * @version 2.1 Beta 4 |
16 | 16 | */ |
17 | 17 | |
18 | -if (!defined('SMF')) |
|
18 | +if (!defined('SMF')) { |
|
19 | 19 | die('No direct access...'); |
20 | +} |
|
20 | 21 | |
21 | 22 | /** |
22 | 23 | * This helps organize things... |
@@ -37,13 +38,14 @@ discard block |
||
37 | 38 | |
38 | 39 | loadLanguage('PersonalMessage+Drafts'); |
39 | 40 | |
40 | - if (!isset($_REQUEST['xml'])) |
|
41 | - loadTemplate('PersonalMessage'); |
|
41 | + if (!isset($_REQUEST['xml'])) { |
|
42 | + loadTemplate('PersonalMessage'); |
|
43 | + } |
|
42 | 44 | |
43 | 45 | // Load up the members maximum message capacity. |
44 | - if ($user_info['is_admin']) |
|
45 | - $context['message_limit'] = 0; |
|
46 | - elseif (($context['message_limit'] = cache_get_data('msgLimit:' . $user_info['id'], 360)) === null) |
|
46 | + if ($user_info['is_admin']) { |
|
47 | + $context['message_limit'] = 0; |
|
48 | + } elseif (($context['message_limit'] = cache_get_data('msgLimit:' . $user_info['id'], 360)) === null) |
|
47 | 49 | { |
48 | 50 | // @todo Why do we do this? It seems like if they have any limit we should use it. |
49 | 51 | $request = $smcFunc['db_query']('', ' |
@@ -78,8 +80,9 @@ discard block |
||
78 | 80 | } |
79 | 81 | |
80 | 82 | // a previous message was sent successfully? show a small indication. |
81 | - if (isset($_GET['done']) && ($_GET['done'] == 'sent')) |
|
82 | - $context['pm_sent'] = true; |
|
83 | + if (isset($_GET['done']) && ($_GET['done'] == 'sent')) { |
|
84 | + $context['pm_sent'] = true; |
|
85 | + } |
|
83 | 86 | |
84 | 87 | $context['labels'] = array(); |
85 | 88 | |
@@ -210,11 +213,11 @@ discard block |
||
210 | 213 | { |
211 | 214 | $_REQUEST['sa'] = ''; |
212 | 215 | MessageFolder(); |
213 | - } |
|
214 | - else |
|
216 | + } else |
|
215 | 217 | { |
216 | - if (!isset($_REQUEST['xml']) && $_REQUEST['sa'] != 'popup') |
|
217 | - messageIndexBar($_REQUEST['sa']); |
|
218 | + if (!isset($_REQUEST['xml']) && $_REQUEST['sa'] != 'popup') { |
|
219 | + messageIndexBar($_REQUEST['sa']); |
|
220 | + } |
|
218 | 221 | |
219 | 222 | call_helper($subActions[$_REQUEST['sa']]); |
220 | 223 | } |
@@ -291,16 +294,17 @@ discard block |
||
291 | 294 | ); |
292 | 295 | |
293 | 296 | // Handle labels. |
294 | - if (empty($context['currently_using_labels'])) |
|
295 | - unset($pm_areas['labels']); |
|
296 | - else |
|
297 | + if (empty($context['currently_using_labels'])) { |
|
298 | + unset($pm_areas['labels']); |
|
299 | + } else |
|
297 | 300 | { |
298 | 301 | // Note we send labels by id as it will have less problems in the querystring. |
299 | 302 | $unread_in_labels = 0; |
300 | 303 | foreach ($context['labels'] as $label) |
301 | 304 | { |
302 | - if ($label['id'] == -1) |
|
303 | - continue; |
|
305 | + if ($label['id'] == -1) { |
|
306 | + continue; |
|
307 | + } |
|
304 | 308 | |
305 | 309 | // Count the amount of unread items in labels. |
306 | 310 | $unread_in_labels += $label['unread_messages']; |
@@ -314,8 +318,9 @@ discard block |
||
314 | 318 | ); |
315 | 319 | } |
316 | 320 | |
317 | - if (!empty($unread_in_labels)) |
|
318 | - $pm_areas['labels']['title'] .= ' <span class="amt">' . $unread_in_labels . '</span>'; |
|
321 | + if (!empty($unread_in_labels)) { |
|
322 | + $pm_areas['labels']['title'] .= ' <span class="amt">' . $unread_in_labels . '</span>'; |
|
323 | + } |
|
319 | 324 | } |
320 | 325 | |
321 | 326 | $pm_areas['folders']['areas']['inbox']['unread_messages'] = &$context['labels'][-1]['unread_messages']; |
@@ -353,8 +358,9 @@ discard block |
||
353 | 358 | unset($pm_areas); |
354 | 359 | |
355 | 360 | // No menu means no access. |
356 | - if (!$pm_include_data && (!$user_info['is_guest'] || validateSession())) |
|
357 | - fatal_lang_error('no_access', false); |
|
361 | + if (!$pm_include_data && (!$user_info['is_guest'] || validateSession())) { |
|
362 | + fatal_lang_error('no_access', false); |
|
363 | + } |
|
358 | 364 | |
359 | 365 | // Make a note of the Unique ID for this menu. |
360 | 366 | $context['pm_menu_id'] = $context['max_menu_id']; |
@@ -365,9 +371,10 @@ discard block |
||
365 | 371 | $context['menu_item_selected'] = $current_area; |
366 | 372 | |
367 | 373 | // Set the template for this area and add the profile layer. |
368 | - if (!isset($_REQUEST['xml'])) |
|
369 | - $context['template_layers'][] = 'pm'; |
|
370 | -} |
|
374 | + if (!isset($_REQUEST['xml'])) { |
|
375 | + $context['template_layers'][] = 'pm'; |
|
376 | + } |
|
377 | + } |
|
371 | 378 | |
372 | 379 | /** |
373 | 380 | * The popup for when we ask for the popup from the user. |
@@ -399,8 +406,9 @@ discard block |
||
399 | 406 | ) |
400 | 407 | ); |
401 | 408 | $pms = array(); |
402 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
403 | - $pms[] = $row[0]; |
|
409 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
410 | + $pms[] = $row[0]; |
|
411 | + } |
|
404 | 412 | $smcFunc['db_free_result']($request); |
405 | 413 | |
406 | 414 | if (!empty($pms)) |
@@ -428,8 +436,9 @@ discard block |
||
428 | 436 | ); |
429 | 437 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
430 | 438 | { |
431 | - if (!empty($row['id_member_from'])) |
|
432 | - $senders[] = $row['id_member_from']; |
|
439 | + if (!empty($row['id_member_from'])) { |
|
440 | + $senders[] = $row['id_member_from']; |
|
441 | + } |
|
433 | 442 | |
434 | 443 | $row['replied_to_you'] = $row['id_pm'] != $row['id_pm_head']; |
435 | 444 | $row['time'] = timeformat($row['timestamp']); |
@@ -439,13 +448,15 @@ discard block |
||
439 | 448 | $smcFunc['db_free_result']($request); |
440 | 449 | |
441 | 450 | $senders = loadMemberData($senders); |
442 | - foreach ($senders as $member) |
|
443 | - loadMemberContext($member); |
|
451 | + foreach ($senders as $member) { |
|
452 | + loadMemberContext($member); |
|
453 | + } |
|
444 | 454 | |
445 | 455 | // Having loaded everyone, attach them to the PMs. |
446 | - foreach ($context['unread_pms'] as $id_pm => $details) |
|
447 | - if (!empty($memberContext[$details['id_member_from']])) |
|
456 | + foreach ($context['unread_pms'] as $id_pm => $details) { |
|
457 | + if (!empty($memberContext[$details['id_member_from']])) |
|
448 | 458 | $context['unread_pms'][$id_pm]['member'] = &$memberContext[$details['id_member_from']]; |
459 | + } |
|
449 | 460 | } |
450 | 461 | } |
451 | 462 | |
@@ -465,12 +476,13 @@ discard block |
||
465 | 476 | } |
466 | 477 | |
467 | 478 | // Make sure the starting location is valid. |
468 | - if (isset($_GET['start']) && $_GET['start'] != 'new') |
|
469 | - $_GET['start'] = (int) $_GET['start']; |
|
470 | - elseif (!isset($_GET['start']) && !empty($options['view_newest_pm_first'])) |
|
471 | - $_GET['start'] = 0; |
|
472 | - else |
|
473 | - $_GET['start'] = 'new'; |
|
479 | + if (isset($_GET['start']) && $_GET['start'] != 'new') { |
|
480 | + $_GET['start'] = (int) $_GET['start']; |
|
481 | + } elseif (!isset($_GET['start']) && !empty($options['view_newest_pm_first'])) { |
|
482 | + $_GET['start'] = 0; |
|
483 | + } else { |
|
484 | + $_GET['start'] = 'new'; |
|
485 | + } |
|
474 | 486 | |
475 | 487 | // Set up some basic theme stuff. |
476 | 488 | $context['from_or_to'] = $context['folder'] != 'sent' ? 'from' : 'to'; |
@@ -487,8 +499,7 @@ discard block |
||
487 | 499 | { |
488 | 500 | $labelQuery = ' |
489 | 501 | AND pmr.in_inbox = 1'; |
490 | - } |
|
491 | - elseif ($context['folder'] != 'sent') |
|
502 | + } elseif ($context['folder'] != 'sent') |
|
492 | 503 | { |
493 | 504 | $labelJoin = ' |
494 | 505 | INNER JOIN {db_prefix}pm_labeled_messages AS pl ON (pl.id_pm = pmr.id_pm)'; |
@@ -530,22 +541,24 @@ discard block |
||
530 | 541 | $txt['delete_all'] = str_replace('PMBOX', $pmbox, $txt['delete_all']); |
531 | 542 | |
532 | 543 | // Now, build the link tree! |
533 | - if ($context['current_label_id'] == -1) |
|
534 | - $context['linktree'][] = array( |
|
544 | + if ($context['current_label_id'] == -1) { |
|
545 | + $context['linktree'][] = array( |
|
535 | 546 | 'url' => $scripturl . '?action=pm;f=' . $context['folder'], |
536 | 547 | 'name' => $pmbox |
537 | 548 | ); |
549 | + } |
|
538 | 550 | |
539 | 551 | // Build it further for a label. |
540 | - if ($context['current_label_id'] != -1) |
|
541 | - $context['linktree'][] = array( |
|
552 | + if ($context['current_label_id'] != -1) { |
|
553 | + $context['linktree'][] = array( |
|
542 | 554 | 'url' => $scripturl . '?action=pm;f=' . $context['folder'] . ';l=' . $context['current_label_id'], |
543 | 555 | 'name' => $txt['pm_current_label'] . ': ' . $context['current_label'] |
544 | 556 | ); |
557 | + } |
|
545 | 558 | |
546 | 559 | // Figure out how many messages there are. |
547 | - if ($context['folder'] == 'sent') |
|
548 | - $request = $smcFunc['db_query']('', ' |
|
560 | + if ($context['folder'] == 'sent') { |
|
561 | + $request = $smcFunc['db_query']('', ' |
|
549 | 562 | SELECT COUNT(' . ($context['display_mode'] == 2 ? 'DISTINCT pm.id_pm_head' : '*') . ') |
550 | 563 | FROM {db_prefix}personal_messages AS pm |
551 | 564 | WHERE pm.id_member_from = {int:current_member} |
@@ -555,8 +568,8 @@ discard block |
||
555 | 568 | 'not_deleted' => 0, |
556 | 569 | ) |
557 | 570 | ); |
558 | - else |
|
559 | - $request = $smcFunc['db_query']('', ' |
|
571 | + } else { |
|
572 | + $request = $smcFunc['db_query']('', ' |
|
560 | 573 | SELECT COUNT(' . ($context['display_mode'] == 2 ? 'DISTINCT pm.id_pm_head' : '*') . ') |
561 | 574 | FROM {db_prefix}pm_recipients AS pmr' . ($context['display_mode'] == 2 ? ' |
562 | 575 | INNER JOIN {db_prefix}personal_messages AS pm ON (pm.id_pm = pmr.id_pm)' : '') . $labelJoin . ' |
@@ -567,6 +580,7 @@ discard block |
||
567 | 580 | 'not_deleted' => 0, |
568 | 581 | ) |
569 | 582 | ); |
583 | + } |
|
570 | 584 | list ($max_messages) = $smcFunc['db_fetch_row']($request); |
571 | 585 | $smcFunc['db_free_result']($request); |
572 | 586 | |
@@ -575,10 +589,11 @@ discard block |
||
575 | 589 | $maxPerPage = empty($modSettings['disableCustomPerPage']) && !empty($options['messages_per_page']) ? $options['messages_per_page'] : $modSettings['defaultMaxMessages']; |
576 | 590 | |
577 | 591 | // Start on the last page. |
578 | - if (!is_numeric($_GET['start']) || $_GET['start'] >= $max_messages) |
|
579 | - $_GET['start'] = ($max_messages - 1) - (($max_messages - 1) % $maxPerPage); |
|
580 | - elseif ($_GET['start'] < 0) |
|
581 | - $_GET['start'] = 0; |
|
592 | + if (!is_numeric($_GET['start']) || $_GET['start'] >= $max_messages) { |
|
593 | + $_GET['start'] = ($max_messages - 1) - (($max_messages - 1) % $maxPerPage); |
|
594 | + } elseif ($_GET['start'] < 0) { |
|
595 | + $_GET['start'] = 0; |
|
596 | + } |
|
582 | 597 | |
583 | 598 | // ... but wait - what if we want to start from a specific message? |
584 | 599 | if (isset($_GET['pmid'])) |
@@ -586,19 +601,21 @@ discard block |
||
586 | 601 | $pmID = (int) $_GET['pmid']; |
587 | 602 | |
588 | 603 | // Make sure you have access to this PM. |
589 | - if (!isAccessiblePM($pmID, $context['folder'] == 'sent' ? 'outbox' : 'inbox')) |
|
590 | - fatal_lang_error('no_access', false); |
|
604 | + if (!isAccessiblePM($pmID, $context['folder'] == 'sent' ? 'outbox' : 'inbox')) { |
|
605 | + fatal_lang_error('no_access', false); |
|
606 | + } |
|
591 | 607 | |
592 | 608 | $context['current_pm'] = $pmID; |
593 | 609 | |
594 | 610 | // With only one page of PM's we're gonna want page 1. |
595 | - if ($max_messages <= $maxPerPage) |
|
596 | - $_GET['start'] = 0; |
|
611 | + if ($max_messages <= $maxPerPage) { |
|
612 | + $_GET['start'] = 0; |
|
613 | + } |
|
597 | 614 | // If we pass kstart we assume we're in the right place. |
598 | 615 | elseif (!isset($_GET['kstart'])) |
599 | 616 | { |
600 | - if ($context['folder'] == 'sent') |
|
601 | - $request = $smcFunc['db_query']('', ' |
|
617 | + if ($context['folder'] == 'sent') { |
|
618 | + $request = $smcFunc['db_query']('', ' |
|
602 | 619 | SELECT COUNT(' . ($context['display_mode'] == 2 ? 'DISTINCT pm.id_pm_head' : '*') . ') |
603 | 620 | FROM {db_prefix}personal_messages |
604 | 621 | WHERE id_member_from = {int:current_member} |
@@ -610,8 +627,8 @@ discard block |
||
610 | 627 | 'id_pm' => $pmID, |
611 | 628 | ) |
612 | 629 | ); |
613 | - else |
|
614 | - $request = $smcFunc['db_query']('', ' |
|
630 | + } else { |
|
631 | + $request = $smcFunc['db_query']('', ' |
|
615 | 632 | SELECT COUNT(' . ($context['display_mode'] == 2 ? 'DISTINCT pm.id_pm_head' : '*') . ') |
616 | 633 | FROM {db_prefix}pm_recipients AS pmr' . ($context['display_mode'] == 2 ? ' |
617 | 634 | INNER JOIN {db_prefix}personal_messages AS pm ON (pm.id_pm = pmr.id_pm)' : '') . $labelJoin . ' |
@@ -624,6 +641,7 @@ discard block |
||
624 | 641 | 'id_pm' => $pmID, |
625 | 642 | ) |
626 | 643 | ); |
644 | + } |
|
627 | 645 | |
628 | 646 | list ($_GET['start']) = $smcFunc['db_fetch_row']($request); |
629 | 647 | $smcFunc['db_free_result']($request); |
@@ -638,8 +656,9 @@ discard block |
||
638 | 656 | { |
639 | 657 | $pmsg = (int) $_GET['pmsg']; |
640 | 658 | |
641 | - if (!isAccessiblePM($pmsg, $context['folder'] == 'sent' ? 'outbox' : 'inbox')) |
|
642 | - fatal_lang_error('no_access', false); |
|
659 | + if (!isAccessiblePM($pmsg, $context['folder'] == 'sent' ? 'outbox' : 'inbox')) { |
|
660 | + fatal_lang_error('no_access', false); |
|
661 | + } |
|
643 | 662 | } |
644 | 663 | |
645 | 664 | // Set up the page index. |
@@ -734,8 +753,9 @@ discard block |
||
734 | 753 | { |
735 | 754 | if (!isset($recipients[$row['id_pm']])) |
736 | 755 | { |
737 | - if (isset($row['id_member_from'])) |
|
738 | - $posters[$row['id_pm']] = $row['id_member_from']; |
|
756 | + if (isset($row['id_member_from'])) { |
|
757 | + $posters[$row['id_pm']] = $row['id_member_from']; |
|
758 | + } |
|
739 | 759 | $pms[$row['id_pm']] = $row['id_pm']; |
740 | 760 | $recipients[$row['id_pm']] = array( |
741 | 761 | 'to' => array(), |
@@ -744,29 +764,33 @@ discard block |
||
744 | 764 | } |
745 | 765 | |
746 | 766 | // Keep track of the last message so we know what the head is without another query! |
747 | - if ((empty($pmID) && (empty($options['view_newest_pm_first']) || !isset($lastData))) || empty($lastData) || (!empty($pmID) && $pmID == $row['id_pm'])) |
|
748 | - $lastData = array( |
|
767 | + if ((empty($pmID) && (empty($options['view_newest_pm_first']) || !isset($lastData))) || empty($lastData) || (!empty($pmID) && $pmID == $row['id_pm'])) { |
|
768 | + $lastData = array( |
|
749 | 769 | 'id' => $row['id_pm'], |
750 | 770 | 'head' => $row['id_pm_head'], |
751 | 771 | ); |
772 | + } |
|
752 | 773 | } |
753 | 774 | $smcFunc['db_free_result']($request); |
754 | 775 | |
755 | 776 | // Make sure that we have been given a correct head pm id! |
756 | - if ($context['display_mode'] == 2 && !empty($pmID) && $pmID != $lastData['id']) |
|
757 | - fatal_lang_error('no_access', false); |
|
777 | + if ($context['display_mode'] == 2 && !empty($pmID) && $pmID != $lastData['id']) { |
|
778 | + fatal_lang_error('no_access', false); |
|
779 | + } |
|
758 | 780 | |
759 | 781 | if (!empty($pms)) |
760 | 782 | { |
761 | 783 | // Select the correct current message. |
762 | - if (empty($pmID)) |
|
763 | - $context['current_pm'] = $lastData['id']; |
|
784 | + if (empty($pmID)) { |
|
785 | + $context['current_pm'] = $lastData['id']; |
|
786 | + } |
|
764 | 787 | |
765 | 788 | // This is a list of the pm's that are used for "full" display. |
766 | - if ($context['display_mode'] == 0) |
|
767 | - $display_pms = $pms; |
|
768 | - else |
|
769 | - $display_pms = array($context['current_pm']); |
|
789 | + if ($context['display_mode'] == 0) { |
|
790 | + $display_pms = $pms; |
|
791 | + } else { |
|
792 | + $display_pms = array($context['current_pm']); |
|
793 | + } |
|
770 | 794 | |
771 | 795 | // At this point we know the main id_pm's. But - if we are looking at conversations we need the others! |
772 | 796 | if ($context['display_mode'] == 2) |
@@ -788,16 +812,18 @@ discard block |
||
788 | 812 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
789 | 813 | { |
790 | 814 | // This is, frankly, a joke. We will put in a workaround for people sending to themselves - yawn! |
791 | - if ($context['folder'] == 'sent' && $row['id_member_from'] == $user_info['id'] && $row['deleted_by_sender'] == 1) |
|
792 | - continue; |
|
793 | - elseif ($row['id_member'] == $user_info['id'] & $row['deleted'] == 1) |
|
794 | - continue; |
|
815 | + if ($context['folder'] == 'sent' && $row['id_member_from'] == $user_info['id'] && $row['deleted_by_sender'] == 1) { |
|
816 | + continue; |
|
817 | + } elseif ($row['id_member'] == $user_info['id'] & $row['deleted'] == 1) { |
|
818 | + continue; |
|
819 | + } |
|
795 | 820 | |
796 | - if (!isset($recipients[$row['id_pm']])) |
|
797 | - $recipients[$row['id_pm']] = array( |
|
821 | + if (!isset($recipients[$row['id_pm']])) { |
|
822 | + $recipients[$row['id_pm']] = array( |
|
798 | 823 | 'to' => array(), |
799 | 824 | 'bcc' => array() |
800 | 825 | ); |
826 | + } |
|
801 | 827 | $display_pms[] = $row['id_pm']; |
802 | 828 | $posters[$row['id_pm']] = $row['id_member_from']; |
803 | 829 | } |
@@ -848,8 +874,9 @@ discard block |
||
848 | 874 | while ($row2 = $smcFunc['db_fetch_assoc']($request2)) |
849 | 875 | { |
850 | 876 | $l_id = $row2['id_label']; |
851 | - if (isset($context['labels'][$l_id])) |
|
852 | - $context['message_labels'][$row['id_pm']][$l_id] = array('id' => $l_id, 'name' => $context['labels'][$l_id]['name']); |
|
877 | + if (isset($context['labels'][$l_id])) { |
|
878 | + $context['message_labels'][$row['id_pm']][$l_id] = array('id' => $l_id, 'name' => $context['labels'][$l_id]['name']); |
|
879 | + } |
|
853 | 880 | } |
854 | 881 | |
855 | 882 | $smcFunc['db_free_result']($request2); |
@@ -866,9 +893,10 @@ discard block |
||
866 | 893 | // Make sure we don't load unnecessary data. |
867 | 894 | if ($context['display_mode'] == 1) |
868 | 895 | { |
869 | - foreach ($posters as $k => $v) |
|
870 | - if (!in_array($k, $display_pms)) |
|
896 | + foreach ($posters as $k => $v) { |
|
897 | + if (!in_array($k, $display_pms)) |
|
871 | 898 | unset($posters[$k]); |
899 | + } |
|
872 | 900 | } |
873 | 901 | |
874 | 902 | // Load any users.... |
@@ -879,8 +907,9 @@ discard block |
||
879 | 907 | { |
880 | 908 | // Get the order right. |
881 | 909 | $orderBy = array(); |
882 | - foreach (array_reverse($pms) as $pm) |
|
883 | - $orderBy[] = 'pm.id_pm = ' . $pm; |
|
910 | + foreach (array_reverse($pms) as $pm) { |
|
911 | + $orderBy[] = 'pm.id_pm = ' . $pm; |
|
912 | + } |
|
884 | 913 | |
885 | 914 | // Seperate query for these bits! |
886 | 915 | $subjects_request = $smcFunc['db_query']('', ' |
@@ -926,9 +955,9 @@ discard block |
||
926 | 955 | // Allow mods to add additional buttons here |
927 | 956 | call_integration_hook('integrate_conversation_buttons'); |
928 | 957 | } |
958 | + } else { |
|
959 | + $messages_request = false; |
|
929 | 960 | } |
930 | - else |
|
931 | - $messages_request = false; |
|
932 | 961 | |
933 | 962 | $context['can_send_pm'] = allowedTo('pm_send'); |
934 | 963 | $context['can_send_email'] = allowedTo('moderate_forum'); |
@@ -939,11 +968,13 @@ discard block |
||
939 | 968 | if ($context['folder'] != 'sent' && !empty($context['labels'][(int) $context['current_label_id']]['unread_messages'])) |
940 | 969 | { |
941 | 970 | // If the display mode is "old sk00l" do them all... |
942 | - if ($context['display_mode'] == 0) |
|
943 | - markMessages(null, $context['current_label_id']); |
|
971 | + if ($context['display_mode'] == 0) { |
|
972 | + markMessages(null, $context['current_label_id']); |
|
973 | + } |
|
944 | 974 | // Otherwise do just the current one! |
945 | - elseif (!empty($context['current_pm'])) |
|
946 | - markMessages($display_pms, $context['current_label_id']); |
|
975 | + elseif (!empty($context['current_pm'])) { |
|
976 | + markMessages($display_pms, $context['current_label_id']); |
|
977 | + } |
|
947 | 978 | } |
948 | 979 | } |
949 | 980 | |
@@ -961,8 +992,9 @@ discard block |
||
961 | 992 | |
962 | 993 | // Count the current message number.... |
963 | 994 | static $counter = null; |
964 | - if ($counter === null || $reset) |
|
965 | - $counter = $context['start']; |
|
995 | + if ($counter === null || $reset) { |
|
996 | + $counter = $context['start']; |
|
997 | + } |
|
966 | 998 | |
967 | 999 | static $temp_pm_selected = null; |
968 | 1000 | if ($temp_pm_selected === null) |
@@ -1007,19 +1039,22 @@ discard block |
||
1007 | 1039 | } |
1008 | 1040 | |
1009 | 1041 | // Bail if it's false, ie. no messages. |
1010 | - if ($messages_request == false) |
|
1011 | - return false; |
|
1042 | + if ($messages_request == false) { |
|
1043 | + return false; |
|
1044 | + } |
|
1012 | 1045 | |
1013 | 1046 | // Reset the data? |
1014 | - if ($reset == true) |
|
1015 | - return @$smcFunc['db_data_seek']($messages_request, 0); |
|
1047 | + if ($reset == true) { |
|
1048 | + return @$smcFunc['db_data_seek']($messages_request, 0); |
|
1049 | + } |
|
1016 | 1050 | |
1017 | 1051 | // Get the next one... bail if anything goes wrong. |
1018 | 1052 | $message = $smcFunc['db_fetch_assoc']($messages_request); |
1019 | 1053 | if (!$message) |
1020 | 1054 | { |
1021 | - if ($type != 'subject') |
|
1022 | - $smcFunc['db_free_result']($messages_request); |
|
1055 | + if ($type != 'subject') { |
|
1056 | + $smcFunc['db_free_result']($messages_request); |
|
1057 | + } |
|
1023 | 1058 | |
1024 | 1059 | return false; |
1025 | 1060 | } |
@@ -1039,8 +1074,7 @@ discard block |
||
1039 | 1074 | $memberContext[$message['id_member_from']]['email'] = ''; |
1040 | 1075 | $memberContext[$message['id_member_from']]['show_email'] = false; |
1041 | 1076 | $memberContext[$message['id_member_from']]['is_guest'] = true; |
1042 | - } |
|
1043 | - else |
|
1077 | + } else |
|
1044 | 1078 | { |
1045 | 1079 | $memberContext[$message['id_member_from']]['can_view_profile'] = allowedTo('profile_view') || ($message['id_member_from'] == $user_info['id'] && !$user_info['is_guest']); |
1046 | 1080 | $memberContext[$message['id_member_from']]['can_see_warning'] = !isset($context['disabled_fields']['warning_status']) && $memberContext[$message['id_member_from']]['warning_status'] && ($context['user']['can_mod'] || (!empty($modSettings['warning_show']) && ($modSettings['warning_show'] > 1 || $message['id_member_from'] == $user_info['id']))); |
@@ -1081,9 +1115,10 @@ discard block |
||
1081 | 1115 | $counter++; |
1082 | 1116 | |
1083 | 1117 | // Any custom profile fields? |
1084 | - if (!empty($memberContext[$message['id_member_from']]['custom_fields'])) |
|
1085 | - foreach ($memberContext[$message['id_member_from']]['custom_fields'] as $custom) |
|
1118 | + if (!empty($memberContext[$message['id_member_from']]['custom_fields'])) { |
|
1119 | + foreach ($memberContext[$message['id_member_from']]['custom_fields'] as $custom) |
|
1086 | 1120 | $output['custom_fields'][$context['cust_profile_fields_placement'][$custom['placement']]][] = $custom; |
1121 | + } |
|
1087 | 1122 | |
1088 | 1123 | call_integration_hook('integrate_prepare_pm_context', array(&$output, &$message, $counter)); |
1089 | 1124 | |
@@ -1107,22 +1142,28 @@ discard block |
||
1107 | 1142 | $context['search_params'][$k] = $v; |
1108 | 1143 | } |
1109 | 1144 | } |
1110 | - if (isset($_REQUEST['search'])) |
|
1111 | - $context['search_params']['search'] = un_htmlspecialchars($_REQUEST['search']); |
|
1145 | + if (isset($_REQUEST['search'])) { |
|
1146 | + $context['search_params']['search'] = un_htmlspecialchars($_REQUEST['search']); |
|
1147 | + } |
|
1112 | 1148 | |
1113 | - if (isset($context['search_params']['search'])) |
|
1114 | - $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']); |
|
1115 | - if (isset($context['search_params']['userspec'])) |
|
1116 | - $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']); |
|
1149 | + if (isset($context['search_params']['search'])) { |
|
1150 | + $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']); |
|
1151 | + } |
|
1152 | + if (isset($context['search_params']['userspec'])) { |
|
1153 | + $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']); |
|
1154 | + } |
|
1117 | 1155 | |
1118 | - if (!empty($context['search_params']['searchtype'])) |
|
1119 | - $context['search_params']['searchtype'] = 2; |
|
1156 | + if (!empty($context['search_params']['searchtype'])) { |
|
1157 | + $context['search_params']['searchtype'] = 2; |
|
1158 | + } |
|
1120 | 1159 | |
1121 | - if (!empty($context['search_params']['minage'])) |
|
1122 | - $context['search_params']['minage'] = (int) $context['search_params']['minage']; |
|
1160 | + if (!empty($context['search_params']['minage'])) { |
|
1161 | + $context['search_params']['minage'] = (int) $context['search_params']['minage']; |
|
1162 | + } |
|
1123 | 1163 | |
1124 | - if (!empty($context['search_params']['maxage'])) |
|
1125 | - $context['search_params']['maxage'] = (int) $context['search_params']['maxage']; |
|
1164 | + if (!empty($context['search_params']['maxage'])) { |
|
1165 | + $context['search_params']['maxage'] = (int) $context['search_params']['maxage']; |
|
1166 | + } |
|
1126 | 1167 | |
1127 | 1168 | $context['search_params']['subject_only'] = !empty($context['search_params']['subject_only']); |
1128 | 1169 | $context['search_params']['show_complete'] = !empty($context['search_params']['show_complete']); |
@@ -1149,8 +1190,9 @@ discard block |
||
1149 | 1190 | $context['search_errors']['messages'] = array(); |
1150 | 1191 | foreach ($context['search_errors'] as $search_error => $dummy) |
1151 | 1192 | { |
1152 | - if ($search_error == 'messages') |
|
1153 | - continue; |
|
1193 | + if ($search_error == 'messages') { |
|
1194 | + continue; |
|
1195 | + } |
|
1154 | 1196 | |
1155 | 1197 | $context['search_errors']['messages'][] = $txt['error_' . $search_error]; |
1156 | 1198 | } |
@@ -1172,8 +1214,9 @@ discard block |
||
1172 | 1214 | global $scripturl, $modSettings, $user_info, $context, $txt; |
1173 | 1215 | global $memberContext, $smcFunc; |
1174 | 1216 | |
1175 | - if (!empty($context['load_average']) && !empty($modSettings['loadavg_search']) && $context['load_average'] >= $modSettings['loadavg_search']) |
|
1176 | - fatal_lang_error('loadavg_search_disabled', false); |
|
1217 | + if (!empty($context['load_average']) && !empty($modSettings['loadavg_search']) && $context['load_average'] >= $modSettings['loadavg_search']) { |
|
1218 | + fatal_lang_error('loadavg_search_disabled', false); |
|
1219 | + } |
|
1177 | 1220 | |
1178 | 1221 | /** |
1179 | 1222 | * @todo For the moment force the folder to the inbox. |
@@ -1202,35 +1245,40 @@ discard block |
||
1202 | 1245 | $context['start'] = isset($_GET['start']) ? (int) $_GET['start'] : 0; |
1203 | 1246 | |
1204 | 1247 | // Store whether simple search was used (needed if the user wants to do another query). |
1205 | - if (!isset($search_params['advanced'])) |
|
1206 | - $search_params['advanced'] = empty($_REQUEST['advanced']) ? 0 : 1; |
|
1248 | + if (!isset($search_params['advanced'])) { |
|
1249 | + $search_params['advanced'] = empty($_REQUEST['advanced']) ? 0 : 1; |
|
1250 | + } |
|
1207 | 1251 | |
1208 | 1252 | // 1 => 'allwords' (default, don't set as param) / 2 => 'anywords'. |
1209 | - if (!empty($search_params['searchtype']) || (!empty($_REQUEST['searchtype']) && $_REQUEST['searchtype'] == 2)) |
|
1210 | - $search_params['searchtype'] = 2; |
|
1253 | + if (!empty($search_params['searchtype']) || (!empty($_REQUEST['searchtype']) && $_REQUEST['searchtype'] == 2)) { |
|
1254 | + $search_params['searchtype'] = 2; |
|
1255 | + } |
|
1211 | 1256 | |
1212 | 1257 | // Minimum age of messages. Default to zero (don't set param in that case). |
1213 | - if (!empty($search_params['minage']) || (!empty($_REQUEST['minage']) && $_REQUEST['minage'] > 0)) |
|
1214 | - $search_params['minage'] = !empty($search_params['minage']) ? (int) $search_params['minage'] : (int) $_REQUEST['minage']; |
|
1258 | + if (!empty($search_params['minage']) || (!empty($_REQUEST['minage']) && $_REQUEST['minage'] > 0)) { |
|
1259 | + $search_params['minage'] = !empty($search_params['minage']) ? (int) $search_params['minage'] : (int) $_REQUEST['minage']; |
|
1260 | + } |
|
1215 | 1261 | |
1216 | 1262 | // Maximum age of messages. Default to infinite (9999 days: param not set). |
1217 | - if (!empty($search_params['maxage']) || (!empty($_REQUEST['maxage']) && $_REQUEST['maxage'] != 9999)) |
|
1218 | - $search_params['maxage'] = !empty($search_params['maxage']) ? (int) $search_params['maxage'] : (int) $_REQUEST['maxage']; |
|
1263 | + if (!empty($search_params['maxage']) || (!empty($_REQUEST['maxage']) && $_REQUEST['maxage'] != 9999)) { |
|
1264 | + $search_params['maxage'] = !empty($search_params['maxage']) ? (int) $search_params['maxage'] : (int) $_REQUEST['maxage']; |
|
1265 | + } |
|
1219 | 1266 | |
1220 | 1267 | $search_params['subject_only'] = !empty($search_params['subject_only']) || !empty($_REQUEST['subject_only']); |
1221 | 1268 | $search_params['show_complete'] = !empty($search_params['show_complete']) || !empty($_REQUEST['show_complete']); |
1222 | 1269 | |
1223 | 1270 | // Default the user name to a wildcard matching every user (*). |
1224 | - if (!empty($search_params['user_spec']) || (!empty($_REQUEST['userspec']) && $_REQUEST['userspec'] != '*')) |
|
1225 | - $search_params['userspec'] = isset($search_params['userspec']) ? $search_params['userspec'] : $_REQUEST['userspec']; |
|
1271 | + if (!empty($search_params['user_spec']) || (!empty($_REQUEST['userspec']) && $_REQUEST['userspec'] != '*')) { |
|
1272 | + $search_params['userspec'] = isset($search_params['userspec']) ? $search_params['userspec'] : $_REQUEST['userspec']; |
|
1273 | + } |
|
1226 | 1274 | |
1227 | 1275 | // This will be full of all kinds of parameters! |
1228 | 1276 | $searchq_parameters = array(); |
1229 | 1277 | |
1230 | 1278 | // If there's no specific user, then don't mention it in the main query. |
1231 | - if (empty($search_params['userspec'])) |
|
1232 | - $userQuery = ''; |
|
1233 | - else |
|
1279 | + if (empty($search_params['userspec'])) { |
|
1280 | + $userQuery = ''; |
|
1281 | + } else |
|
1234 | 1282 | { |
1235 | 1283 | $userString = strtr($smcFunc['htmlspecialchars']($search_params['userspec'], ENT_QUOTES), array('"' => '"')); |
1236 | 1284 | $userString = strtr($userString, array('%' => '\%', '_' => '\_', '*' => '%', '?' => '_')); |
@@ -1242,8 +1290,9 @@ discard block |
||
1242 | 1290 | { |
1243 | 1291 | $possible_users[$k] = trim($possible_users[$k]); |
1244 | 1292 | |
1245 | - if (strlen($possible_users[$k]) == 0) |
|
1246 | - unset($possible_users[$k]); |
|
1293 | + if (strlen($possible_users[$k]) == 0) { |
|
1294 | + unset($possible_users[$k]); |
|
1295 | + } |
|
1247 | 1296 | } |
1248 | 1297 | |
1249 | 1298 | if (!empty($possible_users)) |
@@ -1255,8 +1304,9 @@ discard block |
||
1255 | 1304 | { |
1256 | 1305 | $where_params['name_' . $k] = $v; |
1257 | 1306 | $where_clause[] = '{raw:real_name} LIKE {string:name_' . $k . '}'; |
1258 | - if (!isset($where_params['real_name'])) |
|
1259 | - $where_params['real_name'] = $smcFunc['db_case_sensitive'] ? 'LOWER(real_name)' : 'real_name'; |
|
1307 | + if (!isset($where_params['real_name'])) { |
|
1308 | + $where_params['real_name'] = $smcFunc['db_case_sensitive'] ? 'LOWER(real_name)' : 'real_name'; |
|
1309 | + } |
|
1260 | 1310 | } |
1261 | 1311 | |
1262 | 1312 | // Who matches those criteria? |
@@ -1269,28 +1319,28 @@ discard block |
||
1269 | 1319 | ); |
1270 | 1320 | |
1271 | 1321 | // Simply do nothing if there're too many members matching the criteria. |
1272 | - if ($smcFunc['db_num_rows']($request) > $maxMembersToSearch) |
|
1273 | - $userQuery = ''; |
|
1274 | - elseif ($smcFunc['db_num_rows']($request) == 0) |
|
1322 | + if ($smcFunc['db_num_rows']($request) > $maxMembersToSearch) { |
|
1323 | + $userQuery = ''; |
|
1324 | + } elseif ($smcFunc['db_num_rows']($request) == 0) |
|
1275 | 1325 | { |
1276 | 1326 | $userQuery = 'AND pm.id_member_from = 0 AND ({raw:pm_from_name} LIKE {raw:guest_user_name_implode})'; |
1277 | 1327 | $searchq_parameters['guest_user_name_implode'] = '\'' . implode('\' OR ' . ($smcFunc['db_case_sensitive'] ? 'LOWER(pm.from_name)' : 'pm.from_name') . ' LIKE \'', $possible_users) . '\''; |
1278 | 1328 | $searchq_parameters['pm_from_name'] = $smcFunc['db_case_sensitive'] ? 'LOWER(pm.from_name)' : 'pm.from_name'; |
1279 | - } |
|
1280 | - else |
|
1329 | + } else |
|
1281 | 1330 | { |
1282 | 1331 | $memberlist = array(); |
1283 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1284 | - $memberlist[] = $row['id_member']; |
|
1332 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1333 | + $memberlist[] = $row['id_member']; |
|
1334 | + } |
|
1285 | 1335 | $userQuery = 'AND (pm.id_member_from IN ({array_int:member_list}) OR (pm.id_member_from = 0 AND ({raw:pm_from_name} LIKE {raw:guest_user_name_implode})))'; |
1286 | 1336 | $searchq_parameters['guest_user_name_implode'] = '\'' . implode('\' OR ' . ($smcFunc['db_case_sensitive'] ? 'LOWER(pm.from_name)' : 'pm.from_name') . ' LIKE \'', $possible_users) . '\''; |
1287 | 1337 | $searchq_parameters['member_list'] = $memberlist; |
1288 | 1338 | $searchq_parameters['pm_from_name'] = $smcFunc['db_case_sensitive'] ? 'LOWER(pm.from_name)' : 'pm.from_name'; |
1289 | 1339 | } |
1290 | 1340 | $smcFunc['db_free_result']($request); |
1341 | + } else { |
|
1342 | + $userQuery = ''; |
|
1291 | 1343 | } |
1292 | - else |
|
1293 | - $userQuery = ''; |
|
1294 | 1344 | } |
1295 | 1345 | |
1296 | 1346 | // Setup the sorting variables... |
@@ -1298,8 +1348,9 @@ discard block |
||
1298 | 1348 | $sort_columns = array( |
1299 | 1349 | 'pm.id_pm', |
1300 | 1350 | ); |
1301 | - if (empty($search_params['sort']) && !empty($_REQUEST['sort'])) |
|
1302 | - list ($search_params['sort'], $search_params['sort_dir']) = array_pad(explode('|', $_REQUEST['sort']), 2, ''); |
|
1351 | + if (empty($search_params['sort']) && !empty($_REQUEST['sort'])) { |
|
1352 | + list ($search_params['sort'], $search_params['sort_dir']) = array_pad(explode('|', $_REQUEST['sort']), 2, ''); |
|
1353 | + } |
|
1303 | 1354 | $search_params['sort'] = !empty($search_params['sort']) && in_array($search_params['sort'], $sort_columns) ? $search_params['sort'] : 'pm.id_pm'; |
1304 | 1355 | $search_params['sort_dir'] = !empty($search_params['sort_dir']) && $search_params['sort_dir'] == 'asc' ? 'asc' : 'desc'; |
1305 | 1356 | |
@@ -1309,24 +1360,27 @@ discard block |
||
1309 | 1360 | if ($context['folder'] == 'inbox' && !empty($search_params['advanced']) && $context['currently_using_labels']) |
1310 | 1361 | { |
1311 | 1362 | // Came here from pagination? Put them back into $_REQUEST for sanitization. |
1312 | - if (isset($search_params['labels'])) |
|
1313 | - $_REQUEST['searchlabel'] = explode(',', $search_params['labels']); |
|
1363 | + if (isset($search_params['labels'])) { |
|
1364 | + $_REQUEST['searchlabel'] = explode(',', $search_params['labels']); |
|
1365 | + } |
|
1314 | 1366 | |
1315 | 1367 | // Assuming we have some labels - make them all integers. |
1316 | 1368 | if (!empty($_REQUEST['searchlabel']) && is_array($_REQUEST['searchlabel'])) |
1317 | 1369 | { |
1318 | - foreach ($_REQUEST['searchlabel'] as $key => $id) |
|
1319 | - $_REQUEST['searchlabel'][$key] = (int) $id; |
|
1370 | + foreach ($_REQUEST['searchlabel'] as $key => $id) { |
|
1371 | + $_REQUEST['searchlabel'][$key] = (int) $id; |
|
1372 | + } |
|
1373 | + } else { |
|
1374 | + $_REQUEST['searchlabel'] = array(); |
|
1320 | 1375 | } |
1321 | - else |
|
1322 | - $_REQUEST['searchlabel'] = array(); |
|
1323 | 1376 | |
1324 | 1377 | // Now that everything is cleaned up a bit, make the labels a param. |
1325 | 1378 | $search_params['labels'] = implode(',', $_REQUEST['searchlabel']); |
1326 | 1379 | |
1327 | 1380 | // No labels selected? That must be an error! |
1328 | - if (empty($_REQUEST['searchlabel'])) |
|
1329 | - $context['search_errors']['no_labels_selected'] = true; |
|
1381 | + if (empty($_REQUEST['searchlabel'])) { |
|
1382 | + $context['search_errors']['no_labels_selected'] = true; |
|
1383 | + } |
|
1330 | 1384 | // Otherwise prepare the query! |
1331 | 1385 | elseif (count($_REQUEST['searchlabel']) != count($context['labels'])) |
1332 | 1386 | { |
@@ -1349,8 +1403,7 @@ discard block |
||
1349 | 1403 | // Not searching the inbox - PM must be labeled |
1350 | 1404 | $labelQuery = ' AND pml.id_label IN ({array_int:labels})'; |
1351 | 1405 | $labelJoin = ' INNER JOIN {db_prefix}pm_labeled_messages AS pml ON (pml.id_pm = pmr.id_pm)'; |
1352 | - } |
|
1353 | - else |
|
1406 | + } else |
|
1354 | 1407 | { |
1355 | 1408 | // Searching the inbox - PM doesn't have to be labeled |
1356 | 1409 | $labelQuery = ' AND (' . substr($labelQuery, 5) . ' OR pml.id_label IN ({array_int:labels}))'; |
@@ -1365,8 +1418,9 @@ discard block |
||
1365 | 1418 | // What are we actually searching for? |
1366 | 1419 | $search_params['search'] = !empty($search_params['search']) ? $search_params['search'] : (isset($_REQUEST['search']) ? $_REQUEST['search'] : ''); |
1367 | 1420 | // If we ain't got nothing - we should error! |
1368 | - if (!isset($search_params['search']) || $search_params['search'] == '') |
|
1369 | - $context['search_errors']['invalid_search_string'] = true; |
|
1421 | + if (!isset($search_params['search']) || $search_params['search'] == '') { |
|
1422 | + $context['search_errors']['invalid_search_string'] = true; |
|
1423 | + } |
|
1370 | 1424 | |
1371 | 1425 | // Extract phrase parts first (e.g. some words "this is a phrase" some more words.) |
1372 | 1426 | preg_match_all('~(?:^|\s)([-]?)"([^"]+)"(?:$|\s)~' . ($context['utf8'] ? 'u' : ''), $search_params['search'], $matches, PREG_PATTERN_ORDER); |
@@ -1379,12 +1433,14 @@ discard block |
||
1379 | 1433 | $excludedWords = array(); |
1380 | 1434 | |
1381 | 1435 | // .. first, we check for things like -"some words", but not "-some words". |
1382 | - foreach ($matches[1] as $index => $word) |
|
1383 | - if ($word == '-') |
|
1436 | + foreach ($matches[1] as $index => $word) { |
|
1437 | + if ($word == '-') |
|
1384 | 1438 | { |
1385 | 1439 | $word = $smcFunc['strtolower'](trim($searchArray[$index])); |
1386 | - if (strlen($word) > 0) |
|
1387 | - $excludedWords[] = $word; |
|
1440 | + } |
|
1441 | + if (strlen($word) > 0) { |
|
1442 | + $excludedWords[] = $word; |
|
1443 | + } |
|
1388 | 1444 | unset($searchArray[$index]); |
1389 | 1445 | } |
1390 | 1446 | |
@@ -1394,8 +1450,9 @@ discard block |
||
1394 | 1450 | if (strpos(trim($word), '-') === 0) |
1395 | 1451 | { |
1396 | 1452 | $word = substr($smcFunc['strtolower']($word), 1); |
1397 | - if (strlen($word) > 0) |
|
1398 | - $excludedWords[] = $word; |
|
1453 | + if (strlen($word) > 0) { |
|
1454 | + $excludedWords[] = $word; |
|
1455 | + } |
|
1399 | 1456 | unset($tempSearch[$index]); |
1400 | 1457 | } |
1401 | 1458 | } |
@@ -1406,9 +1463,9 @@ discard block |
||
1406 | 1463 | foreach ($searchArray as $index => $value) |
1407 | 1464 | { |
1408 | 1465 | $searchArray[$index] = $smcFunc['strtolower'](trim($value)); |
1409 | - if ($searchArray[$index] == '') |
|
1410 | - unset($searchArray[$index]); |
|
1411 | - else |
|
1466 | + if ($searchArray[$index] == '') { |
|
1467 | + unset($searchArray[$index]); |
|
1468 | + } else |
|
1412 | 1469 | { |
1413 | 1470 | // Sort out entities first. |
1414 | 1471 | $searchArray[$index] = $smcFunc['htmlspecialchars']($searchArray[$index]); |
@@ -1418,27 +1475,32 @@ discard block |
||
1418 | 1475 | |
1419 | 1476 | // Create an array of replacements for highlighting. |
1420 | 1477 | $context['mark'] = array(); |
1421 | - foreach ($searchArray as $word) |
|
1422 | - $context['mark'][$word] = '<strong class="highlight">' . $word . '</strong>'; |
|
1478 | + foreach ($searchArray as $word) { |
|
1479 | + $context['mark'][$word] = '<strong class="highlight">' . $word . '</strong>'; |
|
1480 | + } |
|
1423 | 1481 | |
1424 | 1482 | // This contains *everything* |
1425 | 1483 | $searchWords = array_merge($searchArray, $excludedWords); |
1426 | 1484 | |
1427 | 1485 | // Make sure at least one word is being searched for. |
1428 | - if (empty($searchArray)) |
|
1429 | - $context['search_errors']['invalid_search_string'] = true; |
|
1486 | + if (empty($searchArray)) { |
|
1487 | + $context['search_errors']['invalid_search_string'] = true; |
|
1488 | + } |
|
1430 | 1489 | |
1431 | 1490 | // Sort out the search query so the user can edit it - if they want. |
1432 | 1491 | $context['search_params'] = $search_params; |
1433 | - if (isset($context['search_params']['search'])) |
|
1434 | - $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']); |
|
1435 | - if (isset($context['search_params']['userspec'])) |
|
1436 | - $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']); |
|
1492 | + if (isset($context['search_params']['search'])) { |
|
1493 | + $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']); |
|
1494 | + } |
|
1495 | + if (isset($context['search_params']['userspec'])) { |
|
1496 | + $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']); |
|
1497 | + } |
|
1437 | 1498 | |
1438 | 1499 | // Now we have all the parameters, combine them together for pagination and the like... |
1439 | 1500 | $context['params'] = array(); |
1440 | - foreach ($search_params as $k => $v) |
|
1441 | - $context['params'][] = $k . '|\'|' . $v; |
|
1501 | + foreach ($search_params as $k => $v) { |
|
1502 | + $context['params'][] = $k . '|\'|' . $v; |
|
1503 | + } |
|
1442 | 1504 | $context['params'] = base64_encode(implode('|"|', $context['params'])); |
1443 | 1505 | |
1444 | 1506 | // Compile the subject query part. |
@@ -1446,26 +1508,31 @@ discard block |
||
1446 | 1508 | |
1447 | 1509 | foreach ($searchWords as $index => $word) |
1448 | 1510 | { |
1449 | - if ($word == '') |
|
1450 | - continue; |
|
1511 | + if ($word == '') { |
|
1512 | + continue; |
|
1513 | + } |
|
1451 | 1514 | |
1452 | - if ($search_params['subject_only']) |
|
1453 | - $andQueryParts[] = 'pm.subject' . (in_array($word, $excludedWords) ? ' NOT' : '') . ' LIKE {string:search_' . $index . '}'; |
|
1454 | - else |
|
1455 | - $andQueryParts[] = '(pm.subject' . (in_array($word, $excludedWords) ? ' NOT' : '') . ' LIKE {string:search_' . $index . '} ' . (in_array($word, $excludedWords) ? 'AND pm.body NOT' : 'OR pm.body') . ' LIKE {string:search_' . $index . '})'; |
|
1515 | + if ($search_params['subject_only']) { |
|
1516 | + $andQueryParts[] = 'pm.subject' . (in_array($word, $excludedWords) ? ' NOT' : '') . ' LIKE {string:search_' . $index . '}'; |
|
1517 | + } else { |
|
1518 | + $andQueryParts[] = '(pm.subject' . (in_array($word, $excludedWords) ? ' NOT' : '') . ' LIKE {string:search_' . $index . '} ' . (in_array($word, $excludedWords) ? 'AND pm.body NOT' : 'OR pm.body') . ' LIKE {string:search_' . $index . '})'; |
|
1519 | + } |
|
1456 | 1520 | $searchq_parameters['search_' . $index] = '%' . strtr($word, array('_' => '\\_', '%' => '\\%')) . '%'; |
1457 | 1521 | } |
1458 | 1522 | |
1459 | 1523 | $searchQuery = ' 1=1'; |
1460 | - if (!empty($andQueryParts)) |
|
1461 | - $searchQuery = implode(!empty($search_params['searchtype']) && $search_params['searchtype'] == 2 ? ' OR ' : ' AND ', $andQueryParts); |
|
1524 | + if (!empty($andQueryParts)) { |
|
1525 | + $searchQuery = implode(!empty($search_params['searchtype']) && $search_params['searchtype'] == 2 ? ' OR ' : ' AND ', $andQueryParts); |
|
1526 | + } |
|
1462 | 1527 | |
1463 | 1528 | // Age limits? |
1464 | 1529 | $timeQuery = ''; |
1465 | - if (!empty($search_params['minage'])) |
|
1466 | - $timeQuery .= ' AND pm.msgtime < ' . (time() - $search_params['minage'] * 86400); |
|
1467 | - if (!empty($search_params['maxage'])) |
|
1468 | - $timeQuery .= ' AND pm.msgtime > ' . (time() - $search_params['maxage'] * 86400); |
|
1530 | + if (!empty($search_params['minage'])) { |
|
1531 | + $timeQuery .= ' AND pm.msgtime < ' . (time() - $search_params['minage'] * 86400); |
|
1532 | + } |
|
1533 | + if (!empty($search_params['maxage'])) { |
|
1534 | + $timeQuery .= ' AND pm.msgtime > ' . (time() - $search_params['maxage'] * 86400); |
|
1535 | + } |
|
1469 | 1536 | |
1470 | 1537 | // If we have errors - return back to the first screen... |
1471 | 1538 | if (!empty($context['search_errors'])) |
@@ -1551,8 +1618,9 @@ discard block |
||
1551 | 1618 | ) |
1552 | 1619 | ); |
1553 | 1620 | $real_pm_ids = array(); |
1554 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1555 | - $real_pm_ids[$row['id_pm_head']] = $row['id_pm']; |
|
1621 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1622 | + $real_pm_ids[$row['id_pm_head']] = $row['id_pm']; |
|
1623 | + } |
|
1556 | 1624 | $smcFunc['db_free_result']($request); |
1557 | 1625 | } |
1558 | 1626 | |
@@ -1582,8 +1650,9 @@ discard block |
||
1582 | 1650 | ); |
1583 | 1651 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1584 | 1652 | { |
1585 | - if ($context['folder'] == 'sent' || empty($row['bcc'])) |
|
1586 | - $recipients[$row['id_pm']][empty($row['bcc']) ? 'to' : 'bcc'][] = empty($row['id_member_to']) ? $txt['guest_title'] : '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member_to'] . '">' . $row['to_name'] . '</a>'; |
|
1653 | + if ($context['folder'] == 'sent' || empty($row['bcc'])) { |
|
1654 | + $recipients[$row['id_pm']][empty($row['bcc']) ? 'to' : 'bcc'][] = empty($row['id_member_to']) ? $txt['guest_title'] : '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member_to'] . '">' . $row['to_name'] . '</a>'; |
|
1655 | + } |
|
1587 | 1656 | |
1588 | 1657 | if ($row['id_member_to'] == $user_info['id'] && $context['folder'] != 'sent') |
1589 | 1658 | { |
@@ -1604,12 +1673,14 @@ discard block |
||
1604 | 1673 | while ($row2 = $smcFunc['db_fetch_assoc']($request2)) |
1605 | 1674 | { |
1606 | 1675 | $l_id = $row2['id_label']; |
1607 | - if (isset($context['labels'][$l_id])) |
|
1608 | - $context['message_labels'][$row['id_pm']][$l_id] = array('id' => $l_id, 'name' => $context['labels'][$l_id]['name']); |
|
1676 | + if (isset($context['labels'][$l_id])) { |
|
1677 | + $context['message_labels'][$row['id_pm']][$l_id] = array('id' => $l_id, 'name' => $context['labels'][$l_id]['name']); |
|
1678 | + } |
|
1609 | 1679 | |
1610 | 1680 | // Here we find the first label on a message - for linking to posts in results |
1611 | - if (!isset($context['first_label'][$row['id_pm']]) && $row['in_inbox'] != 1) |
|
1612 | - $context['first_label'][$row['id_pm']] = $l_id; |
|
1681 | + if (!isset($context['first_label'][$row['id_pm']]) && $row['in_inbox'] != 1) { |
|
1682 | + $context['first_label'][$row['id_pm']] = $l_id; |
|
1683 | + } |
|
1613 | 1684 | } |
1614 | 1685 | |
1615 | 1686 | $smcFunc['db_free_result']($request2); |
@@ -1736,8 +1807,9 @@ discard block |
||
1736 | 1807 | list ($postCount) = $smcFunc['db_fetch_row']($request); |
1737 | 1808 | $smcFunc['db_free_result']($request); |
1738 | 1809 | |
1739 | - if (!empty($postCount) && $postCount >= $modSettings['pm_posts_per_hour']) |
|
1740 | - fatal_lang_error('pm_too_many_per_hour', true, array($modSettings['pm_posts_per_hour'])); |
|
1810 | + if (!empty($postCount) && $postCount >= $modSettings['pm_posts_per_hour']) { |
|
1811 | + fatal_lang_error('pm_too_many_per_hour', true, array($modSettings['pm_posts_per_hour'])); |
|
1812 | + } |
|
1741 | 1813 | } |
1742 | 1814 | |
1743 | 1815 | // Quoting/Replying to a message? |
@@ -1746,8 +1818,9 @@ discard block |
||
1746 | 1818 | $pmsg = (int) $_REQUEST['pmsg']; |
1747 | 1819 | |
1748 | 1820 | // Make sure this is yours. |
1749 | - if (!isAccessiblePM($pmsg)) |
|
1750 | - fatal_lang_error('no_access', false); |
|
1821 | + if (!isAccessiblePM($pmsg)) { |
|
1822 | + fatal_lang_error('no_access', false); |
|
1823 | + } |
|
1751 | 1824 | |
1752 | 1825 | // Work out whether this is one you've received? |
1753 | 1826 | $request = $smcFunc['db_query']('', ' |
@@ -1784,8 +1857,9 @@ discard block |
||
1784 | 1857 | 'id_pm' => $pmsg, |
1785 | 1858 | ) |
1786 | 1859 | ); |
1787 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1788 | - fatal_lang_error('pm_not_yours', false); |
|
1860 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1861 | + fatal_lang_error('pm_not_yours', false); |
|
1862 | + } |
|
1789 | 1863 | $row_quoted = $smcFunc['db_fetch_assoc']($request); |
1790 | 1864 | $smcFunc['db_free_result']($request); |
1791 | 1865 | |
@@ -1796,9 +1870,9 @@ discard block |
||
1796 | 1870 | // Add 'Re: ' to it.... |
1797 | 1871 | if (!isset($context['response_prefix']) && !($context['response_prefix'] = cache_get_data('response_prefix'))) |
1798 | 1872 | { |
1799 | - if ($language === $user_info['language']) |
|
1800 | - $context['response_prefix'] = $txt['response_prefix']; |
|
1801 | - else |
|
1873 | + if ($language === $user_info['language']) { |
|
1874 | + $context['response_prefix'] = $txt['response_prefix']; |
|
1875 | + } else |
|
1802 | 1876 | { |
1803 | 1877 | loadLanguage('index', $language, false); |
1804 | 1878 | $context['response_prefix'] = $txt['response_prefix']; |
@@ -1807,22 +1881,25 @@ discard block |
||
1807 | 1881 | cache_put_data('response_prefix', $context['response_prefix'], 600); |
1808 | 1882 | } |
1809 | 1883 | $form_subject = $row_quoted['subject']; |
1810 | - if ($context['reply'] && trim($context['response_prefix']) != '' && $smcFunc['strpos']($form_subject, trim($context['response_prefix'])) !== 0) |
|
1811 | - $form_subject = $context['response_prefix'] . $form_subject; |
|
1884 | + if ($context['reply'] && trim($context['response_prefix']) != '' && $smcFunc['strpos']($form_subject, trim($context['response_prefix'])) !== 0) { |
|
1885 | + $form_subject = $context['response_prefix'] . $form_subject; |
|
1886 | + } |
|
1812 | 1887 | |
1813 | 1888 | if (isset($_REQUEST['quote'])) |
1814 | 1889 | { |
1815 | 1890 | // Remove any nested quotes and <br>... |
1816 | 1891 | $form_message = preg_replace('~<br ?/?' . '>~i', "\n", $row_quoted['body']); |
1817 | - if (!empty($modSettings['removeNestedQuotes'])) |
|
1818 | - $form_message = preg_replace(array('~\n?\[quote.*?\].+?\[/quote\]\n?~is', '~^\n~', '~\[/quote\]~'), '', $form_message); |
|
1819 | - if (empty($row_quoted['id_member'])) |
|
1820 | - $form_message = '[quote author="' . $row_quoted['real_name'] . '"]' . "\n" . $form_message . "\n" . '[/quote]'; |
|
1821 | - else |
|
1822 | - $form_message = '[quote author=' . $row_quoted['real_name'] . ' link=action=profile;u=' . $row_quoted['id_member'] . ' date=' . $row_quoted['msgtime'] . ']' . "\n" . $form_message . "\n" . '[/quote]'; |
|
1892 | + if (!empty($modSettings['removeNestedQuotes'])) { |
|
1893 | + $form_message = preg_replace(array('~\n?\[quote.*?\].+?\[/quote\]\n?~is', '~^\n~', '~\[/quote\]~'), '', $form_message); |
|
1894 | + } |
|
1895 | + if (empty($row_quoted['id_member'])) { |
|
1896 | + $form_message = '[quote author="' . $row_quoted['real_name'] . '"]' . "\n" . $form_message . "\n" . '[/quote]'; |
|
1897 | + } else { |
|
1898 | + $form_message = '[quote author=' . $row_quoted['real_name'] . ' link=action=profile;u=' . $row_quoted['id_member'] . ' date=' . $row_quoted['msgtime'] . ']' . "\n" . $form_message . "\n" . '[/quote]'; |
|
1899 | + } |
|
1900 | + } else { |
|
1901 | + $form_message = ''; |
|
1823 | 1902 | } |
1824 | - else |
|
1825 | - $form_message = ''; |
|
1826 | 1903 | |
1827 | 1904 | // Do the BBC thang on the message. |
1828 | 1905 | $row_quoted['body'] = parse_bbc($row_quoted['body'], true, 'pm' . $row_quoted['id_pm']); |
@@ -1843,8 +1920,7 @@ discard block |
||
1843 | 1920 | 'timestamp' => forum_time(true, $row_quoted['msgtime']), |
1844 | 1921 | 'body' => $row_quoted['body'] |
1845 | 1922 | ); |
1846 | - } |
|
1847 | - else |
|
1923 | + } else |
|
1848 | 1924 | { |
1849 | 1925 | $context['quoted_message'] = false; |
1850 | 1926 | $form_subject = ''; |
@@ -1863,11 +1939,12 @@ discard block |
||
1863 | 1939 | if ($_REQUEST['u'] == 'all' && isset($row_quoted)) |
1864 | 1940 | { |
1865 | 1941 | // Firstly, to reply to all we clearly already have $row_quoted - so have the original member from. |
1866 | - if ($row_quoted['id_member'] != $user_info['id']) |
|
1867 | - $context['recipients']['to'][] = array( |
|
1942 | + if ($row_quoted['id_member'] != $user_info['id']) { |
|
1943 | + $context['recipients']['to'][] = array( |
|
1868 | 1944 | 'id' => $row_quoted['id_member'], |
1869 | 1945 | 'name' => $smcFunc['htmlspecialchars']($row_quoted['real_name']), |
1870 | 1946 | ); |
1947 | + } |
|
1871 | 1948 | |
1872 | 1949 | // Now to get the others. |
1873 | 1950 | $request = $smcFunc['db_query']('', ' |
@@ -1883,18 +1960,19 @@ discard block |
||
1883 | 1960 | 'not_bcc' => 0, |
1884 | 1961 | ) |
1885 | 1962 | ); |
1886 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1887 | - $context['recipients']['to'][] = array( |
|
1963 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1964 | + $context['recipients']['to'][] = array( |
|
1888 | 1965 | 'id' => $row['id_member'], |
1889 | 1966 | 'name' => $row['real_name'], |
1890 | 1967 | ); |
1968 | + } |
|
1891 | 1969 | $smcFunc['db_free_result']($request); |
1892 | - } |
|
1893 | - else |
|
1970 | + } else |
|
1894 | 1971 | { |
1895 | 1972 | $_REQUEST['u'] = explode(',', $_REQUEST['u']); |
1896 | - foreach ($_REQUEST['u'] as $key => $uID) |
|
1897 | - $_REQUEST['u'][$key] = (int) $uID; |
|
1973 | + foreach ($_REQUEST['u'] as $key => $uID) { |
|
1974 | + $_REQUEST['u'][$key] = (int) $uID; |
|
1975 | + } |
|
1898 | 1976 | |
1899 | 1977 | $_REQUEST['u'] = array_unique($_REQUEST['u']); |
1900 | 1978 | |
@@ -1908,22 +1986,24 @@ discard block |
||
1908 | 1986 | 'limit' => count($_REQUEST['u']), |
1909 | 1987 | ) |
1910 | 1988 | ); |
1911 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1912 | - $context['recipients']['to'][] = array( |
|
1989 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1990 | + $context['recipients']['to'][] = array( |
|
1913 | 1991 | 'id' => $row['id_member'], |
1914 | 1992 | 'name' => $row['real_name'], |
1915 | 1993 | ); |
1994 | + } |
|
1916 | 1995 | $smcFunc['db_free_result']($request); |
1917 | 1996 | } |
1918 | 1997 | |
1919 | 1998 | // Get a literal name list in case the user has JavaScript disabled. |
1920 | 1999 | $names = array(); |
1921 | - foreach ($context['recipients']['to'] as $to) |
|
1922 | - $names[] = $to['name']; |
|
2000 | + foreach ($context['recipients']['to'] as $to) { |
|
2001 | + $names[] = $to['name']; |
|
2002 | + } |
|
1923 | 2003 | $context['to_value'] = empty($names) ? '' : '"' . implode('", "', $names) . '"'; |
2004 | + } else { |
|
2005 | + $context['to_value'] = ''; |
|
1924 | 2006 | } |
1925 | - else |
|
1926 | - $context['to_value'] = ''; |
|
1927 | 2007 | |
1928 | 2008 | // Set the defaults... |
1929 | 2009 | $context['subject'] = $form_subject; |
@@ -1993,8 +2073,9 @@ discard block |
||
1993 | 2073 | |
1994 | 2074 | // validate with loadMemberData() |
1995 | 2075 | $memberResult = loadMemberData($user_info['id'], false); |
1996 | - if (!$memberResult) |
|
1997 | - fatal_lang_error('not_a_user', false); |
|
2076 | + if (!$memberResult) { |
|
2077 | + fatal_lang_error('not_a_user', false); |
|
2078 | + } |
|
1998 | 2079 | list ($memID) = $memberResult; |
1999 | 2080 | |
2000 | 2081 | // drafts is where the functions reside |
@@ -2020,9 +2101,9 @@ discard block |
||
2020 | 2101 | $context['sub_template'] = 'send'; |
2021 | 2102 | loadJavaScriptFile('PersonalMessage.js', array('defer' => false, 'minimize' => true), 'smf_pms'); |
2022 | 2103 | loadJavaScriptFile('suggest.js', array('defer' => false, 'minimize' => true), 'smf_suggest'); |
2104 | + } else { |
|
2105 | + $context['sub_template'] = 'pm'; |
|
2023 | 2106 | } |
2024 | - else |
|
2025 | - $context['sub_template'] = 'pm'; |
|
2026 | 2107 | |
2027 | 2108 | $context['page_title'] = $txt['send_message']; |
2028 | 2109 | |
@@ -2083,10 +2164,11 @@ discard block |
||
2083 | 2164 | ); |
2084 | 2165 | if ($smcFunc['db_num_rows']($request) == 0) |
2085 | 2166 | { |
2086 | - if (!isset($_REQUEST['xml'])) |
|
2087 | - fatal_lang_error('pm_not_yours', false); |
|
2088 | - else |
|
2089 | - $error_types[] = 'pm_not_yours'; |
|
2167 | + if (!isset($_REQUEST['xml'])) { |
|
2168 | + fatal_lang_error('pm_not_yours', false); |
|
2169 | + } else { |
|
2170 | + $error_types[] = 'pm_not_yours'; |
|
2171 | + } |
|
2090 | 2172 | } |
2091 | 2173 | $row_quoted = $smcFunc['db_fetch_assoc']($request); |
2092 | 2174 | $smcFunc['db_free_result']($request); |
@@ -2133,14 +2215,16 @@ discard block |
||
2133 | 2215 | $context['post_error'][$error_type] = true; |
2134 | 2216 | if (isset($txt['error_' . $error_type])) |
2135 | 2217 | { |
2136 | - if ($error_type == 'long_message') |
|
2137 | - $txt['error_' . $error_type] = sprintf($txt['error_' . $error_type], $modSettings['max_messageLength']); |
|
2218 | + if ($error_type == 'long_message') { |
|
2219 | + $txt['error_' . $error_type] = sprintf($txt['error_' . $error_type], $modSettings['max_messageLength']); |
|
2220 | + } |
|
2138 | 2221 | $context['post_error']['messages'][] = $txt['error_' . $error_type]; |
2139 | 2222 | } |
2140 | 2223 | |
2141 | 2224 | // If it's not a minor error flag it as such. |
2142 | - if (!in_array($error_type, array('new_reply', 'not_approved', 'new_replies', 'old_topic', 'need_qr_verification', 'no_subject'))) |
|
2143 | - $context['error_type'] = 'serious'; |
|
2225 | + if (!in_array($error_type, array('new_reply', 'not_approved', 'new_replies', 'old_topic', 'need_qr_verification', 'no_subject'))) { |
|
2226 | + $context['error_type'] = 'serious'; |
|
2227 | + } |
|
2144 | 2228 | } |
2145 | 2229 | |
2146 | 2230 | // We need to load the editor once more. |
@@ -2198,8 +2282,9 @@ discard block |
||
2198 | 2282 | require_once($sourcedir . '/Subs-Auth.php'); |
2199 | 2283 | |
2200 | 2284 | // PM Drafts enabled and needed? |
2201 | - if ($context['drafts_pm_save'] && (isset($_POST['save_draft']) || isset($_POST['id_pm_draft']))) |
|
2202 | - require_once($sourcedir . '/Drafts.php'); |
|
2285 | + if ($context['drafts_pm_save'] && (isset($_POST['save_draft']) || isset($_POST['id_pm_draft']))) { |
|
2286 | + require_once($sourcedir . '/Drafts.php'); |
|
2287 | + } |
|
2203 | 2288 | |
2204 | 2289 | loadLanguage('PersonalMessage', '', false); |
2205 | 2290 | |
@@ -2229,24 +2314,27 @@ discard block |
||
2229 | 2314 | |
2230 | 2315 | if (!empty($postCount) && $postCount >= $modSettings['pm_posts_per_hour']) |
2231 | 2316 | { |
2232 | - if (!isset($_REQUEST['xml'])) |
|
2233 | - fatal_lang_error('pm_too_many_per_hour', true, array($modSettings['pm_posts_per_hour'])); |
|
2234 | - else |
|
2235 | - $post_errors[] = 'pm_too_many_per_hour'; |
|
2317 | + if (!isset($_REQUEST['xml'])) { |
|
2318 | + fatal_lang_error('pm_too_many_per_hour', true, array($modSettings['pm_posts_per_hour'])); |
|
2319 | + } else { |
|
2320 | + $post_errors[] = 'pm_too_many_per_hour'; |
|
2321 | + } |
|
2236 | 2322 | } |
2237 | 2323 | } |
2238 | 2324 | |
2239 | 2325 | // If your session timed out, show an error, but do allow to re-submit. |
2240 | - if (!isset($_REQUEST['xml']) && checkSession('post', '', false) != '') |
|
2241 | - $post_errors[] = 'session_timeout'; |
|
2326 | + if (!isset($_REQUEST['xml']) && checkSession('post', '', false) != '') { |
|
2327 | + $post_errors[] = 'session_timeout'; |
|
2328 | + } |
|
2242 | 2329 | |
2243 | 2330 | $_REQUEST['subject'] = isset($_REQUEST['subject']) ? trim($_REQUEST['subject']) : ''; |
2244 | 2331 | $_REQUEST['to'] = empty($_POST['to']) ? (empty($_GET['to']) ? '' : $_GET['to']) : $_POST['to']; |
2245 | 2332 | $_REQUEST['bcc'] = empty($_POST['bcc']) ? (empty($_GET['bcc']) ? '' : $_GET['bcc']) : $_POST['bcc']; |
2246 | 2333 | |
2247 | 2334 | // Route the input from the 'u' parameter to the 'to'-list. |
2248 | - if (!empty($_POST['u'])) |
|
2249 | - $_POST['recipient_to'] = explode(',', $_POST['u']); |
|
2335 | + if (!empty($_POST['u'])) { |
|
2336 | + $_POST['recipient_to'] = explode(',', $_POST['u']); |
|
2337 | + } |
|
2250 | 2338 | |
2251 | 2339 | // Construct the list of recipients. |
2252 | 2340 | $recipientList = array(); |
@@ -2258,8 +2346,9 @@ discard block |
||
2258 | 2346 | $recipientList[$recipientType] = array(); |
2259 | 2347 | if (!empty($_POST['recipient_' . $recipientType]) && is_array($_POST['recipient_' . $recipientType])) |
2260 | 2348 | { |
2261 | - foreach ($_POST['recipient_' . $recipientType] as $recipient) |
|
2262 | - $recipientList[$recipientType][] = (int) $recipient; |
|
2349 | + foreach ($_POST['recipient_' . $recipientType] as $recipient) { |
|
2350 | + $recipientList[$recipientType][] = (int) $recipient; |
|
2351 | + } |
|
2263 | 2352 | } |
2264 | 2353 | |
2265 | 2354 | // Are there also literal names set? |
@@ -2273,10 +2362,11 @@ discard block |
||
2273 | 2362 | |
2274 | 2363 | foreach ($namedRecipientList[$recipientType] as $index => $recipient) |
2275 | 2364 | { |
2276 | - if (strlen(trim($recipient)) > 0) |
|
2277 | - $namedRecipientList[$recipientType][$index] = $smcFunc['htmlspecialchars']($smcFunc['strtolower'](trim($recipient))); |
|
2278 | - else |
|
2279 | - unset($namedRecipientList[$recipientType][$index]); |
|
2365 | + if (strlen(trim($recipient)) > 0) { |
|
2366 | + $namedRecipientList[$recipientType][$index] = $smcFunc['htmlspecialchars']($smcFunc['strtolower'](trim($recipient))); |
|
2367 | + } else { |
|
2368 | + unset($namedRecipientList[$recipientType][$index]); |
|
2369 | + } |
|
2280 | 2370 | } |
2281 | 2371 | |
2282 | 2372 | if (!empty($namedRecipientList[$recipientType])) |
@@ -2306,8 +2396,9 @@ discard block |
||
2306 | 2396 | } |
2307 | 2397 | |
2308 | 2398 | // Selected a recipient to be deleted? Remove them now. |
2309 | - if (!empty($_POST['delete_recipient'])) |
|
2310 | - $recipientList[$recipientType] = array_diff($recipientList[$recipientType], array((int) $_POST['delete_recipient'])); |
|
2399 | + if (!empty($_POST['delete_recipient'])) { |
|
2400 | + $recipientList[$recipientType] = array_diff($recipientList[$recipientType], array((int) $_POST['delete_recipient'])); |
|
2401 | + } |
|
2311 | 2402 | |
2312 | 2403 | // Make sure we don't include the same name twice |
2313 | 2404 | $recipientList[$recipientType] = array_unique($recipientList[$recipientType]); |
@@ -2317,8 +2408,9 @@ discard block |
||
2317 | 2408 | $is_recipient_change = !empty($_POST['delete_recipient']) || !empty($_POST['to_submit']) || !empty($_POST['bcc_submit']); |
2318 | 2409 | |
2319 | 2410 | // Check if there's at least one recipient. |
2320 | - if (empty($recipientList['to']) && empty($recipientList['bcc'])) |
|
2321 | - $post_errors[] = 'no_to'; |
|
2411 | + if (empty($recipientList['to']) && empty($recipientList['bcc'])) { |
|
2412 | + $post_errors[] = 'no_to'; |
|
2413 | + } |
|
2322 | 2414 | |
2323 | 2415 | // Make sure that we remove the members who did get it from the screen. |
2324 | 2416 | if (!$is_recipient_change) |
@@ -2332,28 +2424,31 @@ discard block |
||
2332 | 2424 | // Since we already have a post error, remove the previous one. |
2333 | 2425 | $post_errors = array_diff($post_errors, array('no_to')); |
2334 | 2426 | |
2335 | - foreach ($namesNotFound[$recipientType] as $name) |
|
2336 | - $context['send_log']['failed'][] = sprintf($txt['pm_error_user_not_found'], $name); |
|
2427 | + foreach ($namesNotFound[$recipientType] as $name) { |
|
2428 | + $context['send_log']['failed'][] = sprintf($txt['pm_error_user_not_found'], $name); |
|
2429 | + } |
|
2337 | 2430 | } |
2338 | 2431 | } |
2339 | 2432 | } |
2340 | 2433 | |
2341 | 2434 | // Did they make any mistakes? |
2342 | - if ($_REQUEST['subject'] == '') |
|
2343 | - $post_errors[] = 'no_subject'; |
|
2344 | - if (!isset($_REQUEST['message']) || $_REQUEST['message'] == '') |
|
2345 | - $post_errors[] = 'no_message'; |
|
2346 | - elseif (!empty($modSettings['max_messageLength']) && $smcFunc['strlen']($_REQUEST['message']) > $modSettings['max_messageLength']) |
|
2347 | - $post_errors[] = 'long_message'; |
|
2348 | - else |
|
2435 | + if ($_REQUEST['subject'] == '') { |
|
2436 | + $post_errors[] = 'no_subject'; |
|
2437 | + } |
|
2438 | + if (!isset($_REQUEST['message']) || $_REQUEST['message'] == '') { |
|
2439 | + $post_errors[] = 'no_message'; |
|
2440 | + } elseif (!empty($modSettings['max_messageLength']) && $smcFunc['strlen']($_REQUEST['message']) > $modSettings['max_messageLength']) { |
|
2441 | + $post_errors[] = 'long_message'; |
|
2442 | + } else |
|
2349 | 2443 | { |
2350 | 2444 | // Preparse the message. |
2351 | 2445 | $message = $_REQUEST['message']; |
2352 | 2446 | preparsecode($message); |
2353 | 2447 | |
2354 | 2448 | // Make sure there's still some content left without the tags. |
2355 | - if ($smcFunc['htmltrim'](strip_tags(parse_bbc($smcFunc['htmlspecialchars']($message, ENT_QUOTES), false), '<img>')) === '' && (!allowedTo('admin_forum') || strpos($message, '[html]') === false)) |
|
2356 | - $post_errors[] = 'no_message'; |
|
2449 | + if ($smcFunc['htmltrim'](strip_tags(parse_bbc($smcFunc['htmlspecialchars']($message, ENT_QUOTES), false), '<img>')) === '' && (!allowedTo('admin_forum') || strpos($message, '[html]') === false)) { |
|
2450 | + $post_errors[] = 'no_message'; |
|
2451 | + } |
|
2357 | 2452 | } |
2358 | 2453 | |
2359 | 2454 | // Wrong verification code? |
@@ -2365,13 +2460,15 @@ discard block |
||
2365 | 2460 | ); |
2366 | 2461 | $context['require_verification'] = create_control_verification($verificationOptions, true); |
2367 | 2462 | |
2368 | - if (is_array($context['require_verification'])) |
|
2369 | - $post_errors = array_merge($post_errors, $context['require_verification']); |
|
2463 | + if (is_array($context['require_verification'])) { |
|
2464 | + $post_errors = array_merge($post_errors, $context['require_verification']); |
|
2465 | + } |
|
2370 | 2466 | } |
2371 | 2467 | |
2372 | 2468 | // If they did, give a chance to make ammends. |
2373 | - if (!empty($post_errors) && !$is_recipient_change && !isset($_REQUEST['preview']) && !isset($_REQUEST['xml'])) |
|
2374 | - return messagePostError($post_errors, $namedRecipientList, $recipientList); |
|
2469 | + if (!empty($post_errors) && !$is_recipient_change && !isset($_REQUEST['preview']) && !isset($_REQUEST['xml'])) { |
|
2470 | + return messagePostError($post_errors, $namedRecipientList, $recipientList); |
|
2471 | + } |
|
2375 | 2472 | |
2376 | 2473 | // Want to take a second glance before you send? |
2377 | 2474 | if (isset($_REQUEST['preview'])) |
@@ -2402,8 +2499,9 @@ discard block |
||
2402 | 2499 | foreach ($namesNotFound as $recipientType => $names) |
2403 | 2500 | { |
2404 | 2501 | $post_errors[] = 'bad_' . $recipientType; |
2405 | - foreach ($names as $name) |
|
2406 | - $context['send_log']['failed'][] = sprintf($txt['pm_error_user_not_found'], $name); |
|
2502 | + foreach ($names as $name) { |
|
2503 | + $context['send_log']['failed'][] = sprintf($txt['pm_error_user_not_found'], $name); |
|
2504 | + } |
|
2407 | 2505 | } |
2408 | 2506 | |
2409 | 2507 | return messagePostError(array(), $namedRecipientList, $recipientList); |
@@ -2433,13 +2531,14 @@ discard block |
||
2433 | 2531 | checkSubmitOnce('check'); |
2434 | 2532 | |
2435 | 2533 | // Do the actual sending of the PM. |
2436 | - if (!empty($recipientList['to']) || !empty($recipientList['bcc'])) |
|
2437 | - $context['send_log'] = sendpm($recipientList, $_REQUEST['subject'], $_REQUEST['message'], true, null, !empty($_REQUEST['pm_head']) ? (int) $_REQUEST['pm_head'] : 0); |
|
2438 | - else |
|
2439 | - $context['send_log'] = array( |
|
2534 | + if (!empty($recipientList['to']) || !empty($recipientList['bcc'])) { |
|
2535 | + $context['send_log'] = sendpm($recipientList, $_REQUEST['subject'], $_REQUEST['message'], true, null, !empty($_REQUEST['pm_head']) ? (int) $_REQUEST['pm_head'] : 0); |
|
2536 | + } else { |
|
2537 | + $context['send_log'] = array( |
|
2440 | 2538 | 'sent' => array(), |
2441 | 2539 | 'failed' => array() |
2442 | 2540 | ); |
2541 | + } |
|
2443 | 2542 | |
2444 | 2543 | // Mark the message as "replied to". |
2445 | 2544 | if (!empty($context['send_log']['sent']) && !empty($_REQUEST['replied_to']) && isset($_REQUEST['f']) && $_REQUEST['f'] == 'inbox') |
@@ -2457,11 +2556,12 @@ discard block |
||
2457 | 2556 | } |
2458 | 2557 | |
2459 | 2558 | // If one or more of the recipient were invalid, go back to the post screen with the failed usernames. |
2460 | - if (!empty($context['send_log']['failed'])) |
|
2461 | - return messagePostError($post_errors, $namesNotFound, array( |
|
2559 | + if (!empty($context['send_log']['failed'])) { |
|
2560 | + return messagePostError($post_errors, $namesNotFound, array( |
|
2462 | 2561 | 'to' => array_intersect($recipientList['to'], $context['send_log']['failed']), |
2463 | 2562 | 'bcc' => array_intersect($recipientList['bcc'], $context['send_log']['failed']) |
2464 | 2563 | )); |
2564 | + } |
|
2465 | 2565 | |
2466 | 2566 | // Message sent successfully? |
2467 | 2567 | if (!empty($context['send_log']) && empty($context['send_log']['failed'])) |
@@ -2469,8 +2569,9 @@ discard block |
||
2469 | 2569 | $context['current_label_redirect'] = $context['current_label_redirect'] . ';done=sent'; |
2470 | 2570 | |
2471 | 2571 | // If we had a PM draft for this one, then its time to remove it since it was just sent |
2472 | - if ($context['drafts_pm_save'] && !empty($_POST['id_pm_draft'])) |
|
2473 | - DeleteDraft($_POST['id_pm_draft']); |
|
2572 | + if ($context['drafts_pm_save'] && !empty($_POST['id_pm_draft'])) { |
|
2573 | + DeleteDraft($_POST['id_pm_draft']); |
|
2574 | + } |
|
2474 | 2575 | } |
2475 | 2576 | |
2476 | 2577 | // Go back to the where they sent from, if possible... |
@@ -2485,24 +2586,28 @@ discard block |
||
2485 | 2586 | |
2486 | 2587 | checkSession('request'); |
2487 | 2588 | |
2488 | - if (isset($_REQUEST['del_selected'])) |
|
2489 | - $_REQUEST['pm_action'] = 'delete'; |
|
2589 | + if (isset($_REQUEST['del_selected'])) { |
|
2590 | + $_REQUEST['pm_action'] = 'delete'; |
|
2591 | + } |
|
2490 | 2592 | |
2491 | 2593 | if (isset($_REQUEST['pm_action']) && $_REQUEST['pm_action'] != '' && !empty($_REQUEST['pms']) && is_array($_REQUEST['pms'])) |
2492 | 2594 | { |
2493 | - foreach ($_REQUEST['pms'] as $pm) |
|
2494 | - $_REQUEST['pm_actions'][(int) $pm] = $_REQUEST['pm_action']; |
|
2595 | + foreach ($_REQUEST['pms'] as $pm) { |
|
2596 | + $_REQUEST['pm_actions'][(int) $pm] = $_REQUEST['pm_action']; |
|
2597 | + } |
|
2495 | 2598 | } |
2496 | 2599 | |
2497 | - if (empty($_REQUEST['pm_actions'])) |
|
2498 | - redirectexit($context['current_label_redirect']); |
|
2600 | + if (empty($_REQUEST['pm_actions'])) { |
|
2601 | + redirectexit($context['current_label_redirect']); |
|
2602 | + } |
|
2499 | 2603 | |
2500 | 2604 | // If we are in conversation, we may need to apply this to every message in the conversation. |
2501 | 2605 | if ($context['display_mode'] == 2 && isset($_REQUEST['conversation'])) |
2502 | 2606 | { |
2503 | 2607 | $id_pms = array(); |
2504 | - foreach ($_REQUEST['pm_actions'] as $pm => $dummy) |
|
2505 | - $id_pms[] = (int) $pm; |
|
2608 | + foreach ($_REQUEST['pm_actions'] as $pm => $dummy) { |
|
2609 | + $id_pms[] = (int) $pm; |
|
2610 | + } |
|
2506 | 2611 | |
2507 | 2612 | $request = $smcFunc['db_query']('', ' |
2508 | 2613 | SELECT id_pm_head, id_pm |
@@ -2513,8 +2618,9 @@ discard block |
||
2513 | 2618 | ) |
2514 | 2619 | ); |
2515 | 2620 | $pm_heads = array(); |
2516 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2517 | - $pm_heads[$row['id_pm_head']] = $row['id_pm']; |
|
2621 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2622 | + $pm_heads[$row['id_pm_head']] = $row['id_pm']; |
|
2623 | + } |
|
2518 | 2624 | $smcFunc['db_free_result']($request); |
2519 | 2625 | |
2520 | 2626 | $request = $smcFunc['db_query']('', ' |
@@ -2528,8 +2634,9 @@ discard block |
||
2528 | 2634 | // Copy the action from the single to PM to the others. |
2529 | 2635 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
2530 | 2636 | { |
2531 | - if (isset($pm_heads[$row['id_pm_head']]) && isset($_REQUEST['pm_actions'][$pm_heads[$row['id_pm_head']]])) |
|
2532 | - $_REQUEST['pm_actions'][$row['id_pm']] = $_REQUEST['pm_actions'][$pm_heads[$row['id_pm_head']]]; |
|
2637 | + if (isset($pm_heads[$row['id_pm_head']]) && isset($_REQUEST['pm_actions'][$pm_heads[$row['id_pm_head']]])) { |
|
2638 | + $_REQUEST['pm_actions'][$row['id_pm']] = $_REQUEST['pm_actions'][$pm_heads[$row['id_pm_head']]]; |
|
2639 | + } |
|
2533 | 2640 | } |
2534 | 2641 | $smcFunc['db_free_result']($request); |
2535 | 2642 | } |
@@ -2540,22 +2647,21 @@ discard block |
||
2540 | 2647 | $labels = array(); |
2541 | 2648 | foreach ($_REQUEST['pm_actions'] as $pm => $action) |
2542 | 2649 | { |
2543 | - if ($action === 'delete') |
|
2544 | - $to_delete[] = (int) $pm; |
|
2545 | - else |
|
2650 | + if ($action === 'delete') { |
|
2651 | + $to_delete[] = (int) $pm; |
|
2652 | + } else |
|
2546 | 2653 | { |
2547 | 2654 | if (substr($action, 0, 4) == 'add_') |
2548 | 2655 | { |
2549 | 2656 | $type = 'add'; |
2550 | 2657 | $action = substr($action, 4); |
2551 | - } |
|
2552 | - elseif (substr($action, 0, 4) == 'rem_') |
|
2658 | + } elseif (substr($action, 0, 4) == 'rem_') |
|
2553 | 2659 | { |
2554 | 2660 | $type = 'rem'; |
2555 | 2661 | $action = substr($action, 4); |
2662 | + } else { |
|
2663 | + $type = 'unk'; |
|
2556 | 2664 | } |
2557 | - else |
|
2558 | - $type = 'unk'; |
|
2559 | 2665 | |
2560 | 2666 | if ($action == '-1' || (int) $action > 0) |
2561 | 2667 | { |
@@ -2566,8 +2672,9 @@ discard block |
||
2566 | 2672 | } |
2567 | 2673 | |
2568 | 2674 | // Deleting, it looks like? |
2569 | - if (!empty($to_delete)) |
|
2570 | - deleteMessages($to_delete, $context['display_mode'] == 2 ? null : $context['folder']); |
|
2675 | + if (!empty($to_delete)) { |
|
2676 | + deleteMessages($to_delete, $context['display_mode'] == 2 ? null : $context['folder']); |
|
2677 | + } |
|
2571 | 2678 | |
2572 | 2679 | // Are we labeling anything? |
2573 | 2680 | if (!empty($to_label) && $context['folder'] == 'inbox') |
@@ -2633,8 +2740,7 @@ discard block |
||
2633 | 2740 | } |
2634 | 2741 | |
2635 | 2742 | $smcFunc['db_free_result']($request2); |
2636 | - } |
|
2637 | - elseif ($type == 'rem') |
|
2743 | + } elseif ($type == 'rem') |
|
2638 | 2744 | { |
2639 | 2745 | // If we're removing from the inbox, see if we have at least one other label. |
2640 | 2746 | // This query is faster than the one above |
@@ -2666,21 +2772,25 @@ discard block |
||
2666 | 2772 | if ($to_label[$row['id_pm']] != '-1') |
2667 | 2773 | { |
2668 | 2774 | // If this label is in the list and we're not adding it, remove it |
2669 | - if (array_key_exists($to_label[$row['id_pm']], $labels) && $type !== 'add') |
|
2670 | - unset($labels[$to_label[$row['id_pm']]]); |
|
2671 | - else if ($type !== 'rem') |
|
2672 | - $labels[$to_label[$row['id_pm']]] = $to_label[$row['id_pm']]; |
|
2775 | + if (array_key_exists($to_label[$row['id_pm']], $labels) && $type !== 'add') { |
|
2776 | + unset($labels[$to_label[$row['id_pm']]]); |
|
2777 | + } else if ($type !== 'rem') { |
|
2778 | + $labels[$to_label[$row['id_pm']]] = $to_label[$row['id_pm']]; |
|
2779 | + } |
|
2673 | 2780 | } |
2674 | 2781 | |
2675 | 2782 | // Removing all labels or just removing the inbox label |
2676 | - if ($type == 'rem' && empty($labels)) |
|
2677 | - $in_inbox = (empty($context['can_remove_inbox']) ? 1 : 0); |
|
2783 | + if ($type == 'rem' && empty($labels)) { |
|
2784 | + $in_inbox = (empty($context['can_remove_inbox']) ? 1 : 0); |
|
2785 | + } |
|
2678 | 2786 | // Adding new labels, but removing inbox and applying new ones |
2679 | - elseif ($type == 'add' && !empty($options['pm_remove_inbox_label']) && !empty($labels)) |
|
2680 | - $in_inbox = 0; |
|
2787 | + elseif ($type == 'add' && !empty($options['pm_remove_inbox_label']) && !empty($labels)) { |
|
2788 | + $in_inbox = 0; |
|
2789 | + } |
|
2681 | 2790 | // Just adding it to the inbox |
2682 | - else |
|
2683 | - $in_inbox = 1; |
|
2791 | + else { |
|
2792 | + $in_inbox = 1; |
|
2793 | + } |
|
2684 | 2794 | |
2685 | 2795 | // Are we adding it to or removing it from the inbox? |
2686 | 2796 | if ($in_inbox != $row['in_inbox']) |
@@ -2722,8 +2832,9 @@ discard block |
||
2722 | 2832 | if (!empty($labels_to_apply)) |
2723 | 2833 | { |
2724 | 2834 | $inserts = array(); |
2725 | - foreach ($labels_to_apply as $label) |
|
2726 | - $inserts[] = array($row['id_pm'], $label); |
|
2835 | + foreach ($labels_to_apply as $label) { |
|
2836 | + $inserts[] = array($row['id_pm'], $label); |
|
2837 | + } |
|
2727 | 2838 | |
2728 | 2839 | $smcFunc['db_insert']('', |
2729 | 2840 | '{db_prefix}pm_labeled_messages', |
@@ -2767,11 +2878,13 @@ discard block |
||
2767 | 2878 | checkSession('get'); |
2768 | 2879 | |
2769 | 2880 | // If all then delete all messages the user has. |
2770 | - if ($_REQUEST['f'] == 'all') |
|
2771 | - deleteMessages(null, null); |
|
2881 | + if ($_REQUEST['f'] == 'all') { |
|
2882 | + deleteMessages(null, null); |
|
2883 | + } |
|
2772 | 2884 | // Otherwise just the selected folder. |
2773 | - else |
|
2774 | - deleteMessages(null, $_REQUEST['f'] != 'sent' ? 'inbox' : 'sent'); |
|
2885 | + else { |
|
2886 | + deleteMessages(null, $_REQUEST['f'] != 'sent' ? 'inbox' : 'sent'); |
|
2887 | + } |
|
2775 | 2888 | |
2776 | 2889 | // Done... all gone. |
2777 | 2890 | redirectexit($context['current_label_redirect']); |
@@ -2808,8 +2921,9 @@ discard block |
||
2808 | 2921 | 'msgtime' => $deleteTime, |
2809 | 2922 | ) |
2810 | 2923 | ); |
2811 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
2812 | - $toDelete[] = $row[0]; |
|
2924 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
2925 | + $toDelete[] = $row[0]; |
|
2926 | + } |
|
2813 | 2927 | $smcFunc['db_free_result']($request); |
2814 | 2928 | |
2815 | 2929 | // Select all messages in their inbox older than $deleteTime. |
@@ -2826,8 +2940,9 @@ discard block |
||
2826 | 2940 | 'msgtime' => $deleteTime, |
2827 | 2941 | ) |
2828 | 2942 | ); |
2829 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2830 | - $toDelete[] = $row['id_pm']; |
|
2943 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2944 | + $toDelete[] = $row['id_pm']; |
|
2945 | + } |
|
2831 | 2946 | $smcFunc['db_free_result']($request); |
2832 | 2947 | |
2833 | 2948 | // Delete the actual messages. |
@@ -2858,26 +2973,29 @@ discard block |
||
2858 | 2973 | { |
2859 | 2974 | global $user_info, $smcFunc; |
2860 | 2975 | |
2861 | - if ($owner === null) |
|
2862 | - $owner = array($user_info['id']); |
|
2863 | - elseif (empty($owner)) |
|
2864 | - return; |
|
2865 | - elseif (!is_array($owner)) |
|
2866 | - $owner = array($owner); |
|
2976 | + if ($owner === null) { |
|
2977 | + $owner = array($user_info['id']); |
|
2978 | + } elseif (empty($owner)) { |
|
2979 | + return; |
|
2980 | + } elseif (!is_array($owner)) { |
|
2981 | + $owner = array($owner); |
|
2982 | + } |
|
2867 | 2983 | |
2868 | 2984 | if ($personal_messages !== null) |
2869 | 2985 | { |
2870 | - if (empty($personal_messages) || !is_array($personal_messages)) |
|
2871 | - return; |
|
2986 | + if (empty($personal_messages) || !is_array($personal_messages)) { |
|
2987 | + return; |
|
2988 | + } |
|
2872 | 2989 | |
2873 | - foreach ($personal_messages as $index => $delete_id) |
|
2874 | - $personal_messages[$index] = (int) $delete_id; |
|
2990 | + foreach ($personal_messages as $index => $delete_id) { |
|
2991 | + $personal_messages[$index] = (int) $delete_id; |
|
2992 | + } |
|
2875 | 2993 | |
2876 | 2994 | $where = ' |
2877 | 2995 | AND id_pm IN ({array_int:pm_list})'; |
2996 | + } else { |
|
2997 | + $where = ''; |
|
2878 | 2998 | } |
2879 | - else |
|
2880 | - $where = ''; |
|
2881 | 2999 | |
2882 | 3000 | if ($folder == 'sent' || $folder === null) |
2883 | 3001 | { |
@@ -2912,17 +3030,19 @@ discard block |
||
2912 | 3030 | // ...And update the statistics accordingly - now including unread messages!. |
2913 | 3031 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
2914 | 3032 | { |
2915 | - if ($row['is_read']) |
|
2916 | - updateMemberData($row['id_member'], array('instant_messages' => $where == '' ? 0 : 'instant_messages - ' . $row['num_deleted_messages'])); |
|
2917 | - else |
|
2918 | - updateMemberData($row['id_member'], array('instant_messages' => $where == '' ? 0 : 'instant_messages - ' . $row['num_deleted_messages'], 'unread_messages' => $where == '' ? 0 : 'unread_messages - ' . $row['num_deleted_messages'])); |
|
3033 | + if ($row['is_read']) { |
|
3034 | + updateMemberData($row['id_member'], array('instant_messages' => $where == '' ? 0 : 'instant_messages - ' . $row['num_deleted_messages'])); |
|
3035 | + } else { |
|
3036 | + updateMemberData($row['id_member'], array('instant_messages' => $where == '' ? 0 : 'instant_messages - ' . $row['num_deleted_messages'], 'unread_messages' => $where == '' ? 0 : 'unread_messages - ' . $row['num_deleted_messages'])); |
|
3037 | + } |
|
2919 | 3038 | |
2920 | 3039 | // If this is the current member we need to make their message count correct. |
2921 | 3040 | if ($user_info['id'] == $row['id_member']) |
2922 | 3041 | { |
2923 | 3042 | $user_info['messages'] -= $row['num_deleted_messages']; |
2924 | - if (!($row['is_read'])) |
|
2925 | - $user_info['unread_messages'] -= $row['num_deleted_messages']; |
|
3043 | + if (!($row['is_read'])) { |
|
3044 | + $user_info['unread_messages'] -= $row['num_deleted_messages']; |
|
3045 | + } |
|
2926 | 3046 | } |
2927 | 3047 | } |
2928 | 3048 | $smcFunc['db_free_result']($request); |
@@ -2990,8 +3110,9 @@ discard block |
||
2990 | 3110 | ) |
2991 | 3111 | ); |
2992 | 3112 | $remove_pms = array(); |
2993 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2994 | - $remove_pms[] = $row['sender']; |
|
3113 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
3114 | + $remove_pms[] = $row['sender']; |
|
3115 | + } |
|
2995 | 3116 | $smcFunc['db_free_result']($request); |
2996 | 3117 | |
2997 | 3118 | if (!empty($remove_pms)) |
@@ -3036,8 +3157,9 @@ discard block |
||
3036 | 3157 | { |
3037 | 3158 | global $user_info, $context, $smcFunc; |
3038 | 3159 | |
3039 | - if ($owner === null) |
|
3040 | - $owner = $user_info['id']; |
|
3160 | + if ($owner === null) { |
|
3161 | + $owner = $user_info['id']; |
|
3162 | + } |
|
3041 | 3163 | |
3042 | 3164 | $in_inbox = ''; |
3043 | 3165 | |
@@ -3061,8 +3183,7 @@ discard block |
||
3061 | 3183 | } |
3062 | 3184 | |
3063 | 3185 | $smcFunc['db_free_result']($get_messages); |
3064 | - } |
|
3065 | - elseif ($label = '-1') |
|
3186 | + } elseif ($label = '-1') |
|
3066 | 3187 | { |
3067 | 3188 | // Marking all PMs in your inbox read |
3068 | 3189 | $in_inbox = ' |
@@ -3087,8 +3208,9 @@ discard block |
||
3087 | 3208 | { |
3088 | 3209 | if ($owner == $user_info['id']) |
3089 | 3210 | { |
3090 | - foreach ($context['labels'] as $label) |
|
3091 | - $context['labels'][(int) $label['id']]['unread_messages'] = 0; |
|
3211 | + foreach ($context['labels'] as $label) { |
|
3212 | + $context['labels'][(int) $label['id']]['unread_messages'] = 0; |
|
3213 | + } |
|
3092 | 3214 | } |
3093 | 3215 | |
3094 | 3216 | $result = $smcFunc['db_query']('', ' |
@@ -3108,8 +3230,9 @@ discard block |
||
3108 | 3230 | { |
3109 | 3231 | $total_unread += $row['num']; |
3110 | 3232 | |
3111 | - if ($owner != $user_info['id'] || empty($row['id_pm'])) |
|
3112 | - continue; |
|
3233 | + if ($owner != $user_info['id'] || empty($row['id_pm'])) { |
|
3234 | + continue; |
|
3235 | + } |
|
3113 | 3236 | |
3114 | 3237 | $this_labels = array(); |
3115 | 3238 | |
@@ -3133,11 +3256,13 @@ discard block |
||
3133 | 3256 | |
3134 | 3257 | $smcFunc['db_free_result']($result2); |
3135 | 3258 | |
3136 | - foreach ($this_labels as $this_label) |
|
3137 | - $context['labels'][$this_label]['unread_messages'] += $row['num']; |
|
3259 | + foreach ($this_labels as $this_label) { |
|
3260 | + $context['labels'][$this_label]['unread_messages'] += $row['num']; |
|
3261 | + } |
|
3138 | 3262 | |
3139 | - if ($row['in_inbox'] == 1) |
|
3140 | - $context['labels'][-1]['unread_messages'] += $row['num']; |
|
3263 | + if ($row['in_inbox'] == 1) { |
|
3264 | + $context['labels'][-1]['unread_messages'] += $row['num']; |
|
3265 | + } |
|
3141 | 3266 | } |
3142 | 3267 | $smcFunc['db_free_result']($result); |
3143 | 3268 | |
@@ -3146,8 +3271,9 @@ discard block |
||
3146 | 3271 | updateMemberData($owner, array('unread_messages' => $total_unread)); |
3147 | 3272 | |
3148 | 3273 | // If it was for the current member, reflect this in the $user_info array too. |
3149 | - if ($owner == $user_info['id']) |
|
3150 | - $user_info['unread_messages'] = $total_unread; |
|
3274 | + if ($owner == $user_info['id']) { |
|
3275 | + $user_info['unread_messages'] = $total_unread; |
|
3276 | + } |
|
3151 | 3277 | } |
3152 | 3278 | } |
3153 | 3279 | |
@@ -3175,8 +3301,9 @@ discard block |
||
3175 | 3301 | // Add all existing labels to the array to save, slashing them as necessary... |
3176 | 3302 | foreach ($context['labels'] as $label) |
3177 | 3303 | { |
3178 | - if ($label['id'] != -1) |
|
3179 | - $the_labels[$label['id']] = $label['name']; |
|
3304 | + if ($label['id'] != -1) { |
|
3305 | + $the_labels[$label['id']] = $label['name']; |
|
3306 | + } |
|
3180 | 3307 | } |
3181 | 3308 | |
3182 | 3309 | if (isset($_POST[$context['session_var']])) |
@@ -3195,8 +3322,9 @@ discard block |
||
3195 | 3322 | { |
3196 | 3323 | $_POST['label'] = strtr($smcFunc['htmlspecialchars'](trim($_POST['label'])), array(',' => ',')); |
3197 | 3324 | |
3198 | - if ($smcFunc['strlen']($_POST['label']) > 30) |
|
3199 | - $_POST['label'] = $smcFunc['substr']($_POST['label'], 0, 30); |
|
3325 | + if ($smcFunc['strlen']($_POST['label']) > 30) { |
|
3326 | + $_POST['label'] = $smcFunc['substr']($_POST['label'], 0, 30); |
|
3327 | + } |
|
3200 | 3328 | if ($_POST['label'] != '') |
3201 | 3329 | { |
3202 | 3330 | $the_labels[] = $_POST['label']; |
@@ -3217,24 +3345,25 @@ discard block |
||
3217 | 3345 | { |
3218 | 3346 | foreach ($the_labels as $id => $name) |
3219 | 3347 | { |
3220 | - if ($id == -1) |
|
3221 | - continue; |
|
3222 | - elseif (isset($_POST['label_name'][$id])) |
|
3348 | + if ($id == -1) { |
|
3349 | + continue; |
|
3350 | + } elseif (isset($_POST['label_name'][$id])) |
|
3223 | 3351 | { |
3224 | 3352 | $_POST['label_name'][$id] = trim(strtr($smcFunc['htmlspecialchars']($_POST['label_name'][$id]), array(',' => ','))); |
3225 | 3353 | |
3226 | - if ($smcFunc['strlen']($_POST['label_name'][$id]) > 30) |
|
3227 | - $_POST['label_name'][$id] = $smcFunc['substr']($_POST['label_name'][$id], 0, 30); |
|
3354 | + if ($smcFunc['strlen']($_POST['label_name'][$id]) > 30) { |
|
3355 | + $_POST['label_name'][$id] = $smcFunc['substr']($_POST['label_name'][$id], 0, 30); |
|
3356 | + } |
|
3228 | 3357 | if ($_POST['label_name'][$id] != '') |
3229 | 3358 | { |
3230 | 3359 | // Changing the name of this label? |
3231 | - if ($the_labels[$id] != $_POST['label_name'][$id]) |
|
3232 | - $label_updates[$id] = $_POST['label_name'][$id]; |
|
3360 | + if ($the_labels[$id] != $_POST['label_name'][$id]) { |
|
3361 | + $label_updates[$id] = $_POST['label_name'][$id]; |
|
3362 | + } |
|
3233 | 3363 | |
3234 | 3364 | $the_labels[(int) $id] = $_POST['label_name'][$id]; |
3235 | 3365 | |
3236 | - } |
|
3237 | - else |
|
3366 | + } else |
|
3238 | 3367 | { |
3239 | 3368 | unset($the_labels[(int) $id]); |
3240 | 3369 | $labels_to_remove[] = $id; |
@@ -3248,8 +3377,9 @@ discard block |
||
3248 | 3377 | if (!empty($labels_to_add)) |
3249 | 3378 | { |
3250 | 3379 | $inserts = array(); |
3251 | - foreach ($labels_to_add AS $label) |
|
3252 | - $inserts[] = array($user_info['id'], $label); |
|
3380 | + foreach ($labels_to_add AS $label) { |
|
3381 | + $inserts[] = array($user_info['id'], $label); |
|
3382 | + } |
|
3253 | 3383 | |
3254 | 3384 | $smcFunc['db_insert']('', '{db_prefix}pm_labels', array('id_member' => 'int', 'name' => 'string-30'), $inserts, array()); |
3255 | 3385 | } |
@@ -3339,8 +3469,9 @@ discard block |
||
3339 | 3469 | // Each action... |
3340 | 3470 | foreach ($rule['actions'] as $k2 => $action) |
3341 | 3471 | { |
3342 | - if ($action['t'] != 'lab' || !in_array($action['v'], $labels_to_remove)) |
|
3343 | - continue; |
|
3472 | + if ($action['t'] != 'lab' || !in_array($action['v'], $labels_to_remove)) { |
|
3473 | + continue; |
|
3474 | + } |
|
3344 | 3475 | |
3345 | 3476 | $rule_changes[] = $rule['id']; |
3346 | 3477 | |
@@ -3355,8 +3486,8 @@ discard block |
||
3355 | 3486 | { |
3356 | 3487 | $rule_changes = array_unique($rule_changes); |
3357 | 3488 | // Update/delete as appropriate. |
3358 | - foreach ($rule_changes as $k => $id) |
|
3359 | - if (!empty($context['rules'][$id]['actions'])) |
|
3489 | + foreach ($rule_changes as $k => $id) { |
|
3490 | + if (!empty($context['rules'][$id]['actions'])) |
|
3360 | 3491 | { |
3361 | 3492 | $smcFunc['db_query']('', ' |
3362 | 3493 | UPDATE {db_prefix}pm_rules |
@@ -3369,12 +3500,13 @@ discard block |
||
3369 | 3500 | 'actions' => $smcFunc['json_encode']($context['rules'][$id]['actions']), |
3370 | 3501 | ) |
3371 | 3502 | ); |
3503 | + } |
|
3372 | 3504 | unset($rule_changes[$k]); |
3373 | 3505 | } |
3374 | 3506 | |
3375 | 3507 | // Anything left here means it's lost all actions... |
3376 | - if (!empty($rule_changes)) |
|
3377 | - $smcFunc['db_query']('', ' |
|
3508 | + if (!empty($rule_changes)) { |
|
3509 | + $smcFunc['db_query']('', ' |
|
3378 | 3510 | DELETE FROM {db_prefix}pm_rules |
3379 | 3511 | WHERE id_rule IN ({array_int:rule_list}) |
3380 | 3512 | AND id_member = {int:current_member}', |
@@ -3383,6 +3515,7 @@ discard block |
||
3383 | 3515 | 'rule_list' => $rule_changes, |
3384 | 3516 | ) |
3385 | 3517 | ); |
3518 | + } |
|
3386 | 3519 | } |
3387 | 3520 | |
3388 | 3521 | // Make sure we're not caching this! |
@@ -3452,8 +3585,9 @@ discard block |
||
3452 | 3585 | // Save the fields. |
3453 | 3586 | saveProfileFields(); |
3454 | 3587 | |
3455 | - if (!empty($profile_vars)) |
|
3456 | - updateMemberData($user_info['id'], $profile_vars); |
|
3588 | + if (!empty($profile_vars)) { |
|
3589 | + updateMemberData($user_info['id'], $profile_vars); |
|
3590 | + } |
|
3457 | 3591 | } |
3458 | 3592 | |
3459 | 3593 | setupProfileContext( |
@@ -3478,13 +3612,15 @@ discard block |
||
3478 | 3612 | global $user_info, $language, $modSettings, $smcFunc; |
3479 | 3613 | |
3480 | 3614 | // Check that this feature is even enabled! |
3481 | - if (empty($modSettings['enableReportPM']) || empty($_REQUEST['pmsg'])) |
|
3482 | - fatal_lang_error('no_access', false); |
|
3615 | + if (empty($modSettings['enableReportPM']) || empty($_REQUEST['pmsg'])) { |
|
3616 | + fatal_lang_error('no_access', false); |
|
3617 | + } |
|
3483 | 3618 | |
3484 | 3619 | $pmsg = (int) $_REQUEST['pmsg']; |
3485 | 3620 | |
3486 | - if (!isAccessiblePM($pmsg, 'inbox')) |
|
3487 | - fatal_lang_error('no_access', false); |
|
3621 | + if (!isAccessiblePM($pmsg, 'inbox')) { |
|
3622 | + fatal_lang_error('no_access', false); |
|
3623 | + } |
|
3488 | 3624 | |
3489 | 3625 | $context['pm_id'] = $pmsg; |
3490 | 3626 | $context['page_title'] = $txt['pm_report_title']; |
@@ -3506,8 +3642,9 @@ discard block |
||
3506 | 3642 | ) |
3507 | 3643 | ); |
3508 | 3644 | $context['admins'] = array(); |
3509 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
3510 | - $context['admins'][$row['id_member']] = $row['real_name']; |
|
3645 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
3646 | + $context['admins'][$row['id_member']] = $row['real_name']; |
|
3647 | + } |
|
3511 | 3648 | $smcFunc['db_free_result']($request); |
3512 | 3649 | |
3513 | 3650 | // How many admins in total? |
@@ -3536,8 +3673,9 @@ discard block |
||
3536 | 3673 | ) |
3537 | 3674 | ); |
3538 | 3675 | // Can only be a hacker here! |
3539 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
3540 | - fatal_lang_error('no_access', false); |
|
3676 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
3677 | + fatal_lang_error('no_access', false); |
|
3678 | + } |
|
3541 | 3679 | list ($subject, $body, $time, $memberFromID, $memberFromName) = $smcFunc['db_fetch_row']($request); |
3542 | 3680 | $smcFunc['db_free_result']($request); |
3543 | 3681 | |
@@ -3561,15 +3699,17 @@ discard block |
||
3561 | 3699 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
3562 | 3700 | { |
3563 | 3701 | // If it's hidden still don't reveal their names - privacy after all ;) |
3564 | - if ($row['bcc']) |
|
3565 | - $hidden_recipients++; |
|
3566 | - else |
|
3567 | - $recipients[] = '[url=' . $scripturl . '?action=profile;u=' . $row['id_member_to'] . ']' . $row['to_name'] . '[/url]'; |
|
3702 | + if ($row['bcc']) { |
|
3703 | + $hidden_recipients++; |
|
3704 | + } else { |
|
3705 | + $recipients[] = '[url=' . $scripturl . '?action=profile;u=' . $row['id_member_to'] . ']' . $row['to_name'] . '[/url]'; |
|
3706 | + } |
|
3568 | 3707 | } |
3569 | 3708 | $smcFunc['db_free_result']($request); |
3570 | 3709 | |
3571 | - if ($hidden_recipients) |
|
3572 | - $recipients[] = sprintf($txt['pm_report_pm_hidden'], $hidden_recipients); |
|
3710 | + if ($hidden_recipients) { |
|
3711 | + $recipients[] = sprintf($txt['pm_report_pm_hidden'], $hidden_recipients); |
|
3712 | + } |
|
3573 | 3713 | |
3574 | 3714 | // Now let's get out and loop through the admins. |
3575 | 3715 | $request = $smcFunc['db_query']('', ' |
@@ -3585,8 +3725,9 @@ discard block |
||
3585 | 3725 | ); |
3586 | 3726 | |
3587 | 3727 | // Maybe we shouldn't advertise this? |
3588 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
3589 | - fatal_lang_error('no_access', false); |
|
3728 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
3729 | + fatal_lang_error('no_access', false); |
|
3730 | + } |
|
3590 | 3731 | |
3591 | 3732 | $memberFromName = un_htmlspecialchars($memberFromName); |
3592 | 3733 | |
@@ -3605,8 +3746,9 @@ discard block |
||
3605 | 3746 | // Make the body. |
3606 | 3747 | $report_body = str_replace(array('{REPORTER}', '{SENDER}'), array(un_htmlspecialchars($user_info['name']), $memberFromName), $txt['pm_report_pm_user_sent']); |
3607 | 3748 | $report_body .= "\n" . '[b]' . $_POST['reason'] . '[/b]' . "\n\n"; |
3608 | - if (!empty($recipients)) |
|
3609 | - $report_body .= $txt['pm_report_pm_other_recipients'] . ' ' . implode(', ', $recipients) . "\n\n"; |
|
3749 | + if (!empty($recipients)) { |
|
3750 | + $report_body .= $txt['pm_report_pm_other_recipients'] . ' ' . implode(', ', $recipients) . "\n\n"; |
|
3751 | + } |
|
3610 | 3752 | $report_body .= $txt['pm_report_pm_unedited_below'] . "\n" . '[quote author=' . (empty($memberFromID) ? '"' . $memberFromName . '"' : $memberFromName . ' link=action=profile;u=' . $memberFromID . ' date=' . $time) . ']' . "\n" . un_htmlspecialchars($body) . '[/quote]'; |
3611 | 3753 | |
3612 | 3754 | // Plonk it in the array ;) |
@@ -3626,12 +3768,14 @@ discard block |
||
3626 | 3768 | $smcFunc['db_free_result']($request); |
3627 | 3769 | |
3628 | 3770 | // Send a different email for each language. |
3629 | - foreach ($messagesToSend as $lang => $message) |
|
3630 | - sendpm($message['recipients'], $message['subject'], $message['body']); |
|
3771 | + foreach ($messagesToSend as $lang => $message) { |
|
3772 | + sendpm($message['recipients'], $message['subject'], $message['body']); |
|
3773 | + } |
|
3631 | 3774 | |
3632 | 3775 | // Give the user their own language back! |
3633 | - if (!empty($modSettings['userLanguage'])) |
|
3634 | - loadLanguage('PersonalMessage', '', false); |
|
3776 | + if (!empty($modSettings['userLanguage'])) { |
|
3777 | + loadLanguage('PersonalMessage', '', false); |
|
3778 | + } |
|
3635 | 3779 | |
3636 | 3780 | // Leave them with a template. |
3637 | 3781 | $context['sub_template'] = 'report_message_complete'; |
@@ -3677,8 +3821,9 @@ discard block |
||
3677 | 3821 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
3678 | 3822 | { |
3679 | 3823 | // Hide hidden groups! |
3680 | - if ($row['hidden'] && !$row['can_moderate'] && !allowedTo('manage_membergroups')) |
|
3681 | - continue; |
|
3824 | + if ($row['hidden'] && !$row['can_moderate'] && !allowedTo('manage_membergroups')) { |
|
3825 | + continue; |
|
3826 | + } |
|
3682 | 3827 | |
3683 | 3828 | $context['groups'][$row['id_group']] = $row['group_name']; |
3684 | 3829 | } |
@@ -3704,9 +3849,10 @@ discard block |
||
3704 | 3849 | $context['rule'] = $context['rules'][$context['rid']]; |
3705 | 3850 | $members = array(); |
3706 | 3851 | // Need to get member names! |
3707 | - foreach ($context['rule']['criteria'] as $k => $criteria) |
|
3708 | - if ($criteria['t'] == 'mid' && !empty($criteria['v'])) |
|
3852 | + foreach ($context['rule']['criteria'] as $k => $criteria) { |
|
3853 | + if ($criteria['t'] == 'mid' && !empty($criteria['v'])) |
|
3709 | 3854 | $members[(int) $criteria['v']] = $k; |
3855 | + } |
|
3710 | 3856 | |
3711 | 3857 | if (!empty($members)) |
3712 | 3858 | { |
@@ -3718,19 +3864,20 @@ discard block |
||
3718 | 3864 | 'member_list' => array_keys($members), |
3719 | 3865 | ) |
3720 | 3866 | ); |
3721 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
3722 | - $context['rule']['criteria'][$members[$row['id_member']]]['v'] = $row['member_name']; |
|
3867 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
3868 | + $context['rule']['criteria'][$members[$row['id_member']]]['v'] = $row['member_name']; |
|
3869 | + } |
|
3723 | 3870 | $smcFunc['db_free_result']($request); |
3724 | 3871 | } |
3725 | - } |
|
3726 | - else |
|
3727 | - $context['rule'] = array( |
|
3872 | + } else { |
|
3873 | + $context['rule'] = array( |
|
3728 | 3874 | 'id' => '', |
3729 | 3875 | 'name' => '', |
3730 | 3876 | 'criteria' => array(), |
3731 | 3877 | 'actions' => array(), |
3732 | 3878 | 'logic' => 'and', |
3733 | 3879 | ); |
3880 | + } |
|
3734 | 3881 | } |
3735 | 3882 | // Saving? |
3736 | 3883 | elseif (isset($_GET['save'])) |
@@ -3740,22 +3887,25 @@ discard block |
||
3740 | 3887 | |
3741 | 3888 | // Name is easy! |
3742 | 3889 | $ruleName = $smcFunc['htmlspecialchars'](trim($_POST['rule_name'])); |
3743 | - if (empty($ruleName)) |
|
3744 | - fatal_lang_error('pm_rule_no_name', false); |
|
3890 | + if (empty($ruleName)) { |
|
3891 | + fatal_lang_error('pm_rule_no_name', false); |
|
3892 | + } |
|
3745 | 3893 | |
3746 | 3894 | // Sanity check... |
3747 | - if (empty($_POST['ruletype']) || empty($_POST['acttype'])) |
|
3748 | - fatal_lang_error('pm_rule_no_criteria', false); |
|
3895 | + if (empty($_POST['ruletype']) || empty($_POST['acttype'])) { |
|
3896 | + fatal_lang_error('pm_rule_no_criteria', false); |
|
3897 | + } |
|
3749 | 3898 | |
3750 | 3899 | // Let's do the criteria first - it's also hardest! |
3751 | 3900 | $criteria = array(); |
3752 | 3901 | foreach ($_POST['ruletype'] as $ind => $type) |
3753 | 3902 | { |
3754 | 3903 | // Check everything is here... |
3755 | - if ($type == 'gid' && (!isset($_POST['ruledefgroup'][$ind]) || !isset($context['groups'][$_POST['ruledefgroup'][$ind]]))) |
|
3756 | - continue; |
|
3757 | - elseif ($type != 'bud' && !isset($_POST['ruledef'][$ind])) |
|
3758 | - continue; |
|
3904 | + if ($type == 'gid' && (!isset($_POST['ruledefgroup'][$ind]) || !isset($context['groups'][$_POST['ruledefgroup'][$ind]]))) { |
|
3905 | + continue; |
|
3906 | + } elseif ($type != 'bud' && !isset($_POST['ruledef'][$ind])) { |
|
3907 | + continue; |
|
3908 | + } |
|
3759 | 3909 | |
3760 | 3910 | // Members need to be found. |
3761 | 3911 | if ($type == 'mid') |
@@ -3779,13 +3929,13 @@ discard block |
||
3779 | 3929 | $smcFunc['db_free_result']($request); |
3780 | 3930 | |
3781 | 3931 | $criteria[] = array('t' => 'mid', 'v' => $memID); |
3932 | + } elseif ($type == 'bud') { |
|
3933 | + $criteria[] = array('t' => 'bud', 'v' => 1); |
|
3934 | + } elseif ($type == 'gid') { |
|
3935 | + $criteria[] = array('t' => 'gid', 'v' => (int) $_POST['ruledefgroup'][$ind]); |
|
3936 | + } elseif (in_array($type, array('sub', 'msg')) && trim($_POST['ruledef'][$ind]) != '') { |
|
3937 | + $criteria[] = array('t' => $type, 'v' => $smcFunc['htmlspecialchars'](trim($_POST['ruledef'][$ind]))); |
|
3782 | 3938 | } |
3783 | - elseif ($type == 'bud') |
|
3784 | - $criteria[] = array('t' => 'bud', 'v' => 1); |
|
3785 | - elseif ($type == 'gid') |
|
3786 | - $criteria[] = array('t' => 'gid', 'v' => (int) $_POST['ruledefgroup'][$ind]); |
|
3787 | - elseif (in_array($type, array('sub', 'msg')) && trim($_POST['ruledef'][$ind]) != '') |
|
3788 | - $criteria[] = array('t' => $type, 'v' => $smcFunc['htmlspecialchars'](trim($_POST['ruledef'][$ind]))); |
|
3789 | 3939 | } |
3790 | 3940 | |
3791 | 3941 | // Also do the actions! |
@@ -3795,26 +3945,29 @@ discard block |
||
3795 | 3945 | foreach ($_POST['acttype'] as $ind => $type) |
3796 | 3946 | { |
3797 | 3947 | // Picking a valid label? |
3798 | - if ($type == 'lab' && (!isset($_POST['labdef'][$ind]) || !isset($context['labels'][$_POST['labdef'][$ind]]))) |
|
3799 | - continue; |
|
3948 | + if ($type == 'lab' && (!isset($_POST['labdef'][$ind]) || !isset($context['labels'][$_POST['labdef'][$ind]]))) { |
|
3949 | + continue; |
|
3950 | + } |
|
3800 | 3951 | |
3801 | 3952 | // Record what we're doing. |
3802 | - if ($type == 'del') |
|
3803 | - $doDelete = 1; |
|
3804 | - elseif ($type == 'lab') |
|
3805 | - $actions[] = array('t' => 'lab', 'v' => (int) $_POST['labdef'][$ind]); |
|
3953 | + if ($type == 'del') { |
|
3954 | + $doDelete = 1; |
|
3955 | + } elseif ($type == 'lab') { |
|
3956 | + $actions[] = array('t' => 'lab', 'v' => (int) $_POST['labdef'][$ind]); |
|
3957 | + } |
|
3806 | 3958 | } |
3807 | 3959 | |
3808 | - if (empty($criteria) || (empty($actions) && !$doDelete)) |
|
3809 | - fatal_lang_error('pm_rule_no_criteria', false); |
|
3960 | + if (empty($criteria) || (empty($actions) && !$doDelete)) { |
|
3961 | + fatal_lang_error('pm_rule_no_criteria', false); |
|
3962 | + } |
|
3810 | 3963 | |
3811 | 3964 | // What are we storing? |
3812 | 3965 | $criteria = $smcFunc['json_encode']($criteria); |
3813 | 3966 | $actions = $smcFunc['json_encode']($actions); |
3814 | 3967 | |
3815 | 3968 | // Create the rule? |
3816 | - if (empty($context['rid'])) |
|
3817 | - $smcFunc['db_insert']('', |
|
3969 | + if (empty($context['rid'])) { |
|
3970 | + $smcFunc['db_insert']('', |
|
3818 | 3971 | '{db_prefix}pm_rules', |
3819 | 3972 | array( |
3820 | 3973 | 'id_member' => 'int', 'rule_name' => 'string', 'criteria' => 'string', 'actions' => 'string', |
@@ -3825,8 +3978,8 @@ discard block |
||
3825 | 3978 | ), |
3826 | 3979 | array('id_rule') |
3827 | 3980 | ); |
3828 | - else |
|
3829 | - $smcFunc['db_query']('', ' |
|
3981 | + } else { |
|
3982 | + $smcFunc['db_query']('', ' |
|
3830 | 3983 | UPDATE {db_prefix}pm_rules |
3831 | 3984 | SET rule_name = {string:rule_name}, criteria = {string:criteria}, actions = {string:actions}, |
3832 | 3985 | delete_pm = {int:delete_pm}, is_or = {int:is_or} |
@@ -3842,6 +3995,7 @@ discard block |
||
3842 | 3995 | 'actions' => $actions, |
3843 | 3996 | ) |
3844 | 3997 | ); |
3998 | + } |
|
3845 | 3999 | |
3846 | 4000 | redirectexit('action=pm;sa=manrules'); |
3847 | 4001 | } |
@@ -3850,11 +4004,12 @@ discard block |
||
3850 | 4004 | { |
3851 | 4005 | checkSession(); |
3852 | 4006 | $toDelete = array(); |
3853 | - foreach ($_POST['delrule'] as $k => $v) |
|
3854 | - $toDelete[] = (int) $k; |
|
4007 | + foreach ($_POST['delrule'] as $k => $v) { |
|
4008 | + $toDelete[] = (int) $k; |
|
4009 | + } |
|
3855 | 4010 | |
3856 | - if (!empty($toDelete)) |
|
3857 | - $smcFunc['db_query']('', ' |
|
4011 | + if (!empty($toDelete)) { |
|
4012 | + $smcFunc['db_query']('', ' |
|
3858 | 4013 | DELETE FROM {db_prefix}pm_rules |
3859 | 4014 | WHERE id_rule IN ({array_int:delete_list}) |
3860 | 4015 | AND id_member = {int:current_member}', |
@@ -3863,6 +4018,7 @@ discard block |
||
3863 | 4018 | 'delete_list' => $toDelete, |
3864 | 4019 | ) |
3865 | 4020 | ); |
4021 | + } |
|
3866 | 4022 | |
3867 | 4023 | redirectexit('action=pm;sa=manrules'); |
3868 | 4024 | } |
@@ -3881,8 +4037,9 @@ discard block |
||
3881 | 4037 | loadRules(); |
3882 | 4038 | |
3883 | 4039 | // No rules? |
3884 | - if (empty($context['rules'])) |
|
3885 | - return; |
|
4040 | + if (empty($context['rules'])) { |
|
4041 | + return; |
|
4042 | + } |
|
3886 | 4043 | |
3887 | 4044 | // Just unread ones? |
3888 | 4045 | $ruleQuery = $all_messages ? '' : ' AND pmr.is_new = 1'; |
@@ -3912,8 +4069,9 @@ discard block |
||
3912 | 4069 | // Loop through all the criteria hoping to make a match. |
3913 | 4070 | foreach ($rule['criteria'] as $criterium) |
3914 | 4071 | { |
3915 | - if (($criterium['t'] == 'mid' && $criterium['v'] == $row['id_member_from']) || ($criterium['t'] == 'gid' && $criterium['v'] == $row['id_group']) || ($criterium['t'] == 'sub' && strpos($row['subject'], $criterium['v']) !== false) || ($criterium['t'] == 'msg' && strpos($row['body'], $criterium['v']) !== false)) |
|
3916 | - $match = true; |
|
4072 | + if (($criterium['t'] == 'mid' && $criterium['v'] == $row['id_member_from']) || ($criterium['t'] == 'gid' && $criterium['v'] == $row['id_group']) || ($criterium['t'] == 'sub' && strpos($row['subject'], $criterium['v']) !== false) || ($criterium['t'] == 'msg' && strpos($row['body'], $criterium['v']) !== false)) { |
|
4073 | + $match = true; |
|
4074 | + } |
|
3917 | 4075 | // If we're adding and one criteria don't match then we stop! |
3918 | 4076 | elseif ($rule['logic'] == 'and') |
3919 | 4077 | { |
@@ -3925,17 +4083,18 @@ discard block |
||
3925 | 4083 | // If we have a match the rule must be true - act! |
3926 | 4084 | if ($match) |
3927 | 4085 | { |
3928 | - if ($rule['delete']) |
|
3929 | - $actions['deletes'][] = $row['id_pm']; |
|
3930 | - else |
|
4086 | + if ($rule['delete']) { |
|
4087 | + $actions['deletes'][] = $row['id_pm']; |
|
4088 | + } else |
|
3931 | 4089 | { |
3932 | 4090 | foreach ($rule['actions'] as $ruleAction) |
3933 | 4091 | { |
3934 | 4092 | if ($ruleAction['t'] == 'lab') |
3935 | 4093 | { |
3936 | 4094 | // Get a basic pot started! |
3937 | - if (!isset($actions['labels'][$row['id_pm']])) |
|
3938 | - $actions['labels'][$row['id_pm']] = array(); |
|
4095 | + if (!isset($actions['labels'][$row['id_pm']])) { |
|
4096 | + $actions['labels'][$row['id_pm']] = array(); |
|
4097 | + } |
|
3939 | 4098 | $actions['labels'][$row['id_pm']][] = $ruleAction['v']; |
3940 | 4099 | } |
3941 | 4100 | } |
@@ -3946,8 +4105,9 @@ discard block |
||
3946 | 4105 | $smcFunc['db_free_result']($request); |
3947 | 4106 | |
3948 | 4107 | // Deletes are easy! |
3949 | - if (!empty($actions['deletes'])) |
|
3950 | - deleteMessages($actions['deletes']); |
|
4108 | + if (!empty($actions['deletes'])) { |
|
4109 | + deleteMessages($actions['deletes']); |
|
4110 | + } |
|
3951 | 4111 | |
3952 | 4112 | // Relabel? |
3953 | 4113 | if (!empty($actions['labels'])) |
@@ -3974,8 +4134,7 @@ discard block |
||
3974 | 4134 | 'current_member' => $user_info['id'], |
3975 | 4135 | ) |
3976 | 4136 | ); |
3977 | - } |
|
3978 | - else |
|
4137 | + } else |
|
3979 | 4138 | { |
3980 | 4139 | $realLabels[] = $label['id']; |
3981 | 4140 | } |
@@ -3984,8 +4143,9 @@ discard block |
||
3984 | 4143 | |
3985 | 4144 | $inserts = array(); |
3986 | 4145 | // Now we insert the label info |
3987 | - foreach ($realLabels as $a_label) |
|
3988 | - $inserts[] = array($pm, $a_label); |
|
4146 | + foreach ($realLabels as $a_label) { |
|
4147 | + $inserts[] = array($pm, $a_label); |
|
4148 | + } |
|
3989 | 4149 | |
3990 | 4150 | $smcFunc['db_insert']('ignore', |
3991 | 4151 | '{db_prefix}pm_labeled_messages', |
@@ -4006,8 +4166,9 @@ discard block |
||
4006 | 4166 | { |
4007 | 4167 | global $user_info, $context, $smcFunc; |
4008 | 4168 | |
4009 | - if (isset($context['rules']) && !$reload) |
|
4010 | - return; |
|
4169 | + if (isset($context['rules']) && !$reload) { |
|
4170 | + return; |
|
4171 | + } |
|
4011 | 4172 | |
4012 | 4173 | $request = $smcFunc['db_query']('', ' |
4013 | 4174 | SELECT |
@@ -4031,8 +4192,9 @@ discard block |
||
4031 | 4192 | 'logic' => $row['is_or'] ? 'or' : 'and', |
4032 | 4193 | ); |
4033 | 4194 | |
4034 | - if ($row['delete_pm']) |
|
4035 | - $context['rules'][$row['id_rule']]['actions'][] = array('t' => 'del', 'v' => 1); |
|
4195 | + if ($row['delete_pm']) { |
|
4196 | + $context['rules'][$row['id_rule']]['actions'][] = array('t' => 'del', 'v' => 1); |
|
4197 | + } |
|
4036 | 4198 | } |
4037 | 4199 | $smcFunc['db_free_result']($request); |
4038 | 4200 | } |
@@ -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 | * The central part of the board - topic display. |
@@ -34,8 +35,9 @@ discard block |
||
34 | 35 | global $messages_request, $language, $smcFunc; |
35 | 36 | |
36 | 37 | // What are you gonna display if these are empty?! |
37 | - if (empty($topic)) |
|
38 | - fatal_lang_error('no_board', false); |
|
38 | + if (empty($topic)) { |
|
39 | + fatal_lang_error('no_board', false); |
|
40 | + } |
|
39 | 41 | |
40 | 42 | // Load the proper template. |
41 | 43 | loadTemplate('Display'); |
@@ -52,15 +54,17 @@ discard block |
||
52 | 54 | $context['messages_per_page'] = empty($modSettings['disableCustomPerPage']) && !empty($options['messages_per_page']) ? $options['messages_per_page'] : $modSettings['defaultMaxMessages']; |
53 | 55 | |
54 | 56 | // Let's do some work on what to search index. |
55 | - if (count($_GET) > 2) |
|
56 | - foreach ($_GET as $k => $v) |
|
57 | + if (count($_GET) > 2) { |
|
58 | + foreach ($_GET as $k => $v) |
|
57 | 59 | { |
58 | 60 | if (!in_array($k, array('topic', 'board', 'start', session_name()))) |
59 | 61 | $context['robot_no_index'] = true; |
62 | + } |
|
60 | 63 | } |
61 | 64 | |
62 | - if (!empty($_REQUEST['start']) && (!is_numeric($_REQUEST['start']) || $_REQUEST['start'] % $context['messages_per_page'] != 0)) |
|
63 | - $context['robot_no_index'] = true; |
|
65 | + if (!empty($_REQUEST['start']) && (!is_numeric($_REQUEST['start']) || $_REQUEST['start'] % $context['messages_per_page'] != 0)) { |
|
66 | + $context['robot_no_index'] = true; |
|
67 | + } |
|
64 | 68 | |
65 | 69 | // Find the previous or next topic. Make a fuss if there are no more. |
66 | 70 | if (isset($_REQUEST['prev_next']) && ($_REQUEST['prev_next'] == 'prev' || $_REQUEST['prev_next'] == 'next')) |
@@ -172,8 +176,9 @@ discard block |
||
172 | 176 | $topic_parameters |
173 | 177 | ); |
174 | 178 | |
175 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
176 | - fatal_lang_error('not_a_topic', false, 404); |
|
179 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
180 | + fatal_lang_error('not_a_topic', false, 404); |
|
181 | + } |
|
177 | 182 | $context['topicinfo'] = $smcFunc['db_fetch_assoc']($request); |
178 | 183 | $smcFunc['db_free_result']($request); |
179 | 184 | |
@@ -210,8 +215,9 @@ discard block |
||
210 | 215 | $context['topic_unwatched'] = isset($context['topicinfo']['unwatched']) ? $context['topicinfo']['unwatched'] : 0; |
211 | 216 | |
212 | 217 | // Add up unapproved replies to get real number of replies... |
213 | - if ($modSettings['postmod_active'] && $approve_posts) |
|
214 | - $context['real_num_replies'] += $context['topicinfo']['unapproved_posts'] - ($context['topicinfo']['approved'] ? 0 : 1); |
|
218 | + if ($modSettings['postmod_active'] && $approve_posts) { |
|
219 | + $context['real_num_replies'] += $context['topicinfo']['unapproved_posts'] - ($context['topicinfo']['approved'] ? 0 : 1); |
|
220 | + } |
|
215 | 221 | |
216 | 222 | // If this topic has unapproved posts, we need to work out how many posts the user can see, for page indexing. |
217 | 223 | if ($modSettings['postmod_active'] && $context['topicinfo']['unapproved_posts'] && !$user_info['is_guest'] && !$approve_posts) |
@@ -231,11 +237,11 @@ discard block |
||
231 | 237 | $smcFunc['db_free_result']($request); |
232 | 238 | |
233 | 239 | $context['total_visible_posts'] = $context['num_replies'] + $myUnapprovedPosts + ($context['topicinfo']['approved'] ? 1 : 0); |
240 | + } elseif ($user_info['is_guest']) { |
|
241 | + $context['total_visible_posts'] = $context['num_replies'] + ($context['topicinfo']['approved'] ? 1 : 0); |
|
242 | + } else { |
|
243 | + $context['total_visible_posts'] = $context['num_replies'] + $context['topicinfo']['unapproved_posts'] + ($context['topicinfo']['approved'] ? 1 : 0); |
|
234 | 244 | } |
235 | - elseif ($user_info['is_guest']) |
|
236 | - $context['total_visible_posts'] = $context['num_replies'] + ($context['topicinfo']['approved'] ? 1 : 0); |
|
237 | - else |
|
238 | - $context['total_visible_posts'] = $context['num_replies'] + $context['topicinfo']['unapproved_posts'] + ($context['topicinfo']['approved'] ? 1 : 0); |
|
239 | 245 | |
240 | 246 | // The start isn't a number; it's information about what to do, where to go. |
241 | 247 | if (!is_numeric($_REQUEST['start'])) |
@@ -248,8 +254,7 @@ discard block |
||
248 | 254 | { |
249 | 255 | $context['start_from'] = $context['total_visible_posts'] - 1; |
250 | 256 | $_REQUEST['start'] = empty($options['view_newest_first']) ? $context['start_from'] : 0; |
251 | - } |
|
252 | - else |
|
257 | + } else |
|
253 | 258 | { |
254 | 259 | // Find the earliest unread message in the topic. (the use of topics here is just for both tables.) |
255 | 260 | $request = $smcFunc['db_query']('', ' |
@@ -277,9 +282,9 @@ discard block |
||
277 | 282 | if (substr($_REQUEST['start'], 0, 4) == 'from') |
278 | 283 | { |
279 | 284 | $timestamp = (int) substr($_REQUEST['start'], 4); |
280 | - if ($timestamp === 0) |
|
281 | - $_REQUEST['start'] = 0; |
|
282 | - else |
|
285 | + if ($timestamp === 0) { |
|
286 | + $_REQUEST['start'] = 0; |
|
287 | + } else |
|
283 | 288 | { |
284 | 289 | // Find the number of messages posted before said time... |
285 | 290 | $request = $smcFunc['db_query']('', ' |
@@ -307,11 +312,11 @@ discard block |
||
307 | 312 | elseif (substr($_REQUEST['start'], 0, 3) == 'msg') |
308 | 313 | { |
309 | 314 | $virtual_msg = (int) substr($_REQUEST['start'], 3); |
310 | - if (!$context['topicinfo']['unapproved_posts'] && $virtual_msg >= $context['topicinfo']['id_last_msg']) |
|
311 | - $context['start_from'] = $context['total_visible_posts'] - 1; |
|
312 | - elseif (!$context['topicinfo']['unapproved_posts'] && $virtual_msg <= $context['topicinfo']['id_first_msg']) |
|
313 | - $context['start_from'] = 0; |
|
314 | - else |
|
315 | + if (!$context['topicinfo']['unapproved_posts'] && $virtual_msg >= $context['topicinfo']['id_last_msg']) { |
|
316 | + $context['start_from'] = $context['total_visible_posts'] - 1; |
|
317 | + } elseif (!$context['topicinfo']['unapproved_posts'] && $virtual_msg <= $context['topicinfo']['id_first_msg']) { |
|
318 | + $context['start_from'] = 0; |
|
319 | + } else |
|
315 | 320 | { |
316 | 321 | // Find the start value for that message...... |
317 | 322 | $request = $smcFunc['db_query']('', ' |
@@ -394,21 +399,25 @@ discard block |
||
394 | 399 | ); |
395 | 400 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
396 | 401 | { |
397 | - if (empty($row['id_member'])) |
|
398 | - continue; |
|
402 | + if (empty($row['id_member'])) { |
|
403 | + continue; |
|
404 | + } |
|
399 | 405 | |
400 | - if (!empty($row['online_color'])) |
|
401 | - $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '" style="color: ' . $row['online_color'] . ';">' . $row['real_name'] . '</a>'; |
|
402 | - else |
|
403 | - $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
406 | + if (!empty($row['online_color'])) { |
|
407 | + $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '" style="color: ' . $row['online_color'] . ';">' . $row['real_name'] . '</a>'; |
|
408 | + } else { |
|
409 | + $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
410 | + } |
|
404 | 411 | |
405 | 412 | $is_buddy = in_array($row['id_member'], $user_info['buddies']); |
406 | - if ($is_buddy) |
|
407 | - $link = '<strong>' . $link . '</strong>'; |
|
413 | + if ($is_buddy) { |
|
414 | + $link = '<strong>' . $link . '</strong>'; |
|
415 | + } |
|
408 | 416 | |
409 | 417 | // Add them both to the list and to the more detailed list. |
410 | - if (!empty($row['show_online']) || allowedTo('moderate_forum')) |
|
411 | - $context['view_members_list'][$row['log_time'] . $row['member_name']] = empty($row['show_online']) ? '<em>' . $link . '</em>' : $link; |
|
418 | + if (!empty($row['show_online']) || allowedTo('moderate_forum')) { |
|
419 | + $context['view_members_list'][$row['log_time'] . $row['member_name']] = empty($row['show_online']) ? '<em>' . $link . '</em>' : $link; |
|
420 | + } |
|
412 | 421 | $context['view_members'][$row['log_time'] . $row['member_name']] = array( |
413 | 422 | 'id' => $row['id_member'], |
414 | 423 | 'username' => $row['member_name'], |
@@ -420,8 +429,9 @@ discard block |
||
420 | 429 | 'hidden' => empty($row['show_online']), |
421 | 430 | ); |
422 | 431 | |
423 | - if (empty($row['show_online'])) |
|
424 | - $context['view_num_hidden']++; |
|
432 | + if (empty($row['show_online'])) { |
|
433 | + $context['view_num_hidden']++; |
|
434 | + } |
|
425 | 435 | } |
426 | 436 | |
427 | 437 | // The number of guests is equal to the rows minus the ones we actually used ;). |
@@ -435,11 +445,13 @@ discard block |
||
435 | 445 | |
436 | 446 | // If all is set, but not allowed... just unset it. |
437 | 447 | $can_show_all = !empty($modSettings['enableAllMessages']) && $context['total_visible_posts'] > $context['messages_per_page'] && $context['total_visible_posts'] < $modSettings['enableAllMessages']; |
438 | - if (isset($_REQUEST['all']) && !$can_show_all) |
|
439 | - unset($_REQUEST['all']); |
|
448 | + if (isset($_REQUEST['all']) && !$can_show_all) { |
|
449 | + unset($_REQUEST['all']); |
|
450 | + } |
|
440 | 451 | // Otherwise, it must be allowed... so pretend start was -1. |
441 | - elseif (isset($_REQUEST['all'])) |
|
442 | - $_REQUEST['start'] = -1; |
|
452 | + elseif (isset($_REQUEST['all'])) { |
|
453 | + $_REQUEST['start'] = -1; |
|
454 | + } |
|
443 | 455 | |
444 | 456 | // Construct the page index, allowing for the .START method... |
445 | 457 | $context['page_index'] = constructPageIndex($scripturl . '?topic=' . $topic . '.%1$d', $_REQUEST['start'], $context['total_visible_posts'], $context['messages_per_page'], true); |
@@ -476,8 +488,9 @@ discard block |
||
476 | 488 | $_REQUEST['start'] = 0; |
477 | 489 | } |
478 | 490 | // They aren't using it, but the *option* is there, at least. |
479 | - else |
|
480 | - $context['page_index'] .= ' <a href="' . $scripturl . '?topic=' . $topic . '.0;all">' . $txt['all'] . '</a> '; |
|
491 | + else { |
|
492 | + $context['page_index'] .= ' <a href="' . $scripturl . '?topic=' . $topic . '.0;all">' . $txt['all'] . '</a> '; |
|
493 | + } |
|
481 | 494 | } |
482 | 495 | |
483 | 496 | // Build the link tree. |
@@ -493,14 +506,16 @@ discard block |
||
493 | 506 | if (!empty($board_info['moderators'])) |
494 | 507 | { |
495 | 508 | // Add a link for each moderator... |
496 | - foreach ($board_info['moderators'] as $mod) |
|
497 | - $context['link_moderators'][] = '<a href="' . $scripturl . '?action=profile;u=' . $mod['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod['name'] . '</a>'; |
|
509 | + foreach ($board_info['moderators'] as $mod) { |
|
510 | + $context['link_moderators'][] = '<a href="' . $scripturl . '?action=profile;u=' . $mod['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod['name'] . '</a>'; |
|
511 | + } |
|
498 | 512 | } |
499 | 513 | if (!empty($board_info['moderator_groups'])) |
500 | 514 | { |
501 | 515 | // Add a link for each moderator group as well... |
502 | - foreach ($board_info['moderator_groups'] as $mod_group) |
|
503 | - $context['link_moderators'][] = '<a href="' . $scripturl . '?action=groups;sa=viewmemberes;group=' . $mod_group['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod_group['name'] . '</a>'; |
|
516 | + foreach ($board_info['moderator_groups'] as $mod_group) { |
|
517 | + $context['link_moderators'][] = '<a href="' . $scripturl . '?action=groups;sa=viewmemberes;group=' . $mod_group['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod_group['name'] . '</a>'; |
|
518 | + } |
|
504 | 519 | } |
505 | 520 | |
506 | 521 | if (!empty($context['link_moderators'])) |
@@ -531,9 +546,9 @@ discard block |
||
531 | 546 | // For quick reply we need a response prefix in the default forum language. |
532 | 547 | if (!isset($context['response_prefix']) && !($context['response_prefix'] = cache_get_data('response_prefix', 600))) |
533 | 548 | { |
534 | - if ($language === $user_info['language']) |
|
535 | - $context['response_prefix'] = $txt['response_prefix']; |
|
536 | - else |
|
549 | + if ($language === $user_info['language']) { |
|
550 | + $context['response_prefix'] = $txt['response_prefix']; |
|
551 | + } else |
|
537 | 552 | { |
538 | 553 | loadLanguage('index', $language, false); |
539 | 554 | $context['response_prefix'] = $txt['response_prefix']; |
@@ -565,8 +580,9 @@ discard block |
||
565 | 580 | list($start, $end, $allday, $span, $tz, $tz_abbrev) = buildEventDatetimes($row); |
566 | 581 | |
567 | 582 | // Sanity check |
568 | - if (!empty($start['error_count']) || !empty($start['warning_count']) || !empty($end['error_count']) || !empty($end['warning_count'])) |
|
569 | - continue; |
|
583 | + if (!empty($start['error_count']) || !empty($start['warning_count']) || !empty($end['error_count']) || !empty($end['warning_count'])) { |
|
584 | + continue; |
|
585 | + } |
|
570 | 586 | |
571 | 587 | $linked_calendar_event = array( |
572 | 588 | 'id' => $row['id_event'], |
@@ -615,8 +631,9 @@ discard block |
||
615 | 631 | } |
616 | 632 | $smcFunc['db_free_result']($request); |
617 | 633 | |
618 | - if (!empty($context['linked_calendar_events'])) |
|
619 | - $context['linked_calendar_events'][count($context['linked_calendar_events']) - 1]['is_last'] = true; |
|
634 | + if (!empty($context['linked_calendar_events'])) { |
|
635 | + $context['linked_calendar_events'][count($context['linked_calendar_events']) - 1]['is_last'] = true; |
|
636 | + } |
|
620 | 637 | } |
621 | 638 | |
622 | 639 | // Create the poll info if it exists. |
@@ -679,8 +696,9 @@ discard block |
||
679 | 696 | $smcFunc['db_free_result']($request); |
680 | 697 | |
681 | 698 | // Got we multi choice? |
682 | - if ($pollinfo['max_votes'] > 1) |
|
683 | - $realtotal = $pollinfo['total']; |
|
699 | + if ($pollinfo['max_votes'] > 1) { |
|
700 | + $realtotal = $pollinfo['total']; |
|
701 | + } |
|
684 | 702 | |
685 | 703 | // If this is a guest we need to do our best to work out if they have voted, and what they voted for. |
686 | 704 | if ($user_info['is_guest'] && $pollinfo['guest_vote'] && allowedTo('poll_vote')) |
@@ -693,20 +711,21 @@ discard block |
||
693 | 711 | foreach ($guestinfo as $i => $guestvoted) |
694 | 712 | { |
695 | 713 | $guestvoted = explode(',', $guestvoted); |
696 | - if ($guestvoted[0] == $context['topicinfo']['id_poll']) |
|
697 | - break; |
|
714 | + if ($guestvoted[0] == $context['topicinfo']['id_poll']) { |
|
715 | + break; |
|
716 | + } |
|
698 | 717 | } |
699 | 718 | // Has the poll been reset since guest voted? |
700 | 719 | if ($pollinfo['reset_poll'] > $guestvoted[1]) |
701 | 720 | { |
702 | 721 | // Remove the poll info from the cookie to allow guest to vote again |
703 | 722 | unset($guestinfo[$i]); |
704 | - if (!empty($guestinfo)) |
|
705 | - $_COOKIE['guest_poll_vote'] = ';' . implode(';', $guestinfo); |
|
706 | - else |
|
707 | - unset($_COOKIE['guest_poll_vote']); |
|
708 | - } |
|
709 | - else |
|
723 | + if (!empty($guestinfo)) { |
|
724 | + $_COOKIE['guest_poll_vote'] = ';' . implode(';', $guestinfo); |
|
725 | + } else { |
|
726 | + unset($_COOKIE['guest_poll_vote']); |
|
727 | + } |
|
728 | + } else |
|
710 | 729 | { |
711 | 730 | // What did they vote for? |
712 | 731 | unset($guestvoted[0], $guestvoted[1]); |
@@ -820,23 +839,29 @@ discard block |
||
820 | 839 | // Build the poll moderation button array. |
821 | 840 | $context['poll_buttons'] = array(); |
822 | 841 | |
823 | - if ($context['allow_return_vote']) |
|
824 | - $context['poll_buttons']['vote'] = array('text' => 'poll_return_vote', 'image' => 'poll_options.png', 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start']); |
|
842 | + if ($context['allow_return_vote']) { |
|
843 | + $context['poll_buttons']['vote'] = array('text' => 'poll_return_vote', 'image' => 'poll_options.png', 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start']); |
|
844 | + } |
|
825 | 845 | |
826 | - if ($context['show_view_results_button']) |
|
827 | - $context['poll_buttons']['results'] = array('text' => 'poll_results', 'image' => 'poll_results.png', 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start'] . ';viewresults'); |
|
846 | + if ($context['show_view_results_button']) { |
|
847 | + $context['poll_buttons']['results'] = array('text' => 'poll_results', 'image' => 'poll_results.png', 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start'] . ';viewresults'); |
|
848 | + } |
|
828 | 849 | |
829 | - if ($context['allow_change_vote']) |
|
830 | - $context['poll_buttons']['change_vote'] = array('text' => 'poll_change_vote', 'image' => 'poll_change_vote.png', 'url' => $scripturl . '?action=vote;topic=' . $context['current_topic'] . '.' . $context['start'] . ';poll=' . $context['poll']['id'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
850 | + if ($context['allow_change_vote']) { |
|
851 | + $context['poll_buttons']['change_vote'] = array('text' => 'poll_change_vote', 'image' => 'poll_change_vote.png', 'url' => $scripturl . '?action=vote;topic=' . $context['current_topic'] . '.' . $context['start'] . ';poll=' . $context['poll']['id'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
852 | + } |
|
831 | 853 | |
832 | - if ($context['allow_lock_poll']) |
|
833 | - $context['poll_buttons']['lock'] = array('text' => (!$context['poll']['is_locked'] ? 'poll_lock' : 'poll_unlock'), 'image' => 'poll_lock.png', 'url' => $scripturl . '?action=lockvoting;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
854 | + if ($context['allow_lock_poll']) { |
|
855 | + $context['poll_buttons']['lock'] = array('text' => (!$context['poll']['is_locked'] ? 'poll_lock' : 'poll_unlock'), 'image' => 'poll_lock.png', 'url' => $scripturl . '?action=lockvoting;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
856 | + } |
|
834 | 857 | |
835 | - if ($context['allow_edit_poll']) |
|
836 | - $context['poll_buttons']['edit'] = array('text' => 'poll_edit', 'image' => 'poll_edit.png', 'url' => $scripturl . '?action=editpoll;topic=' . $context['current_topic'] . '.' . $context['start']); |
|
858 | + if ($context['allow_edit_poll']) { |
|
859 | + $context['poll_buttons']['edit'] = array('text' => 'poll_edit', 'image' => 'poll_edit.png', 'url' => $scripturl . '?action=editpoll;topic=' . $context['current_topic'] . '.' . $context['start']); |
|
860 | + } |
|
837 | 861 | |
838 | - if ($context['can_remove_poll']) |
|
839 | - $context['poll_buttons']['remove_poll'] = array('text' => 'poll_remove', 'image' => 'admin_remove_poll.png', 'custom' => 'data-confirm="' . $txt['poll_remove_warn'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=removepoll;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
862 | + if ($context['can_remove_poll']) { |
|
863 | + $context['poll_buttons']['remove_poll'] = array('text' => 'poll_remove', 'image' => 'admin_remove_poll.png', 'custom' => 'data-confirm="' . $txt['poll_remove_warn'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=removepoll;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
864 | + } |
|
840 | 865 | |
841 | 866 | // Allow mods to add additional buttons here |
842 | 867 | call_integration_hook('integrate_poll_buttons'); |
@@ -872,9 +897,9 @@ discard block |
||
872 | 897 | { |
873 | 898 | $start_char = 'C'; |
874 | 899 | $page_id = $ascending ? $context['topicinfo']['id_first_msg'] : $context['topicinfo']['id_last_msg']; |
900 | + } else { |
|
901 | + $start_char = null; |
|
875 | 902 | } |
876 | - else |
|
877 | - $start_char = null; |
|
878 | 903 | |
879 | 904 | $limit = $context['messages_per_page']; |
880 | 905 | |
@@ -888,17 +913,17 @@ discard block |
||
888 | 913 | { |
889 | 914 | $ascending_seek = true; |
890 | 915 | $page_operator = $ascending ? '>=' : '<='; |
891 | - } |
|
892 | - else |
|
916 | + } else |
|
893 | 917 | { |
894 | 918 | $ascending_seek = false; |
895 | 919 | $page_operator = $ascending ? '<=' : '>='; |
896 | 920 | } |
897 | 921 | |
898 | - if ($start_char === 'C') |
|
899 | - $limit_seek = $limit; |
|
900 | - else |
|
901 | - $limit_seek = $limit + 1; |
|
922 | + if ($start_char === 'C') { |
|
923 | + $limit_seek = $limit; |
|
924 | + } else { |
|
925 | + $limit_seek = $limit + 1; |
|
926 | + } |
|
902 | 927 | |
903 | 928 | $request = $smcFunc['db_query']('', ' |
904 | 929 | SELECT id_msg, id_member, approved |
@@ -921,21 +946,23 @@ discard block |
||
921 | 946 | $found_msg = false; |
922 | 947 | |
923 | 948 | // Fallback |
924 | - if ($smcFunc['db_num_rows']($request) < 1) |
|
925 | - unset($start_char); |
|
926 | - else |
|
949 | + if ($smcFunc['db_num_rows']($request) < 1) { |
|
950 | + unset($start_char); |
|
951 | + } else |
|
927 | 952 | { |
928 | 953 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
929 | 954 | { |
930 | 955 | // Check if the start msg is in our result |
931 | - if ($row['id_msg'] == $page_id) |
|
932 | - $found_msg = true; |
|
956 | + if ($row['id_msg'] == $page_id) { |
|
957 | + $found_msg = true; |
|
958 | + } |
|
933 | 959 | |
934 | 960 | // Skip the the start msg if we not in mode C |
935 | 961 | if ($start_char === 'C' || $row['id_msg'] != $page_id) |
936 | 962 | { |
937 | - if (!empty($row['id_member'])) |
|
938 | - $all_posters[$row['id_msg']] = $row['id_member']; |
|
963 | + if (!empty($row['id_member'])) { |
|
964 | + $all_posters[$row['id_msg']] = $row['id_member']; |
|
965 | + } |
|
939 | 966 | |
940 | 967 | $messages[] = $row['id_msg']; |
941 | 968 | } |
@@ -951,8 +978,9 @@ discard block |
||
951 | 978 | } |
952 | 979 | |
953 | 980 | // Before Page bring in the right order |
954 | - if (!empty($start_char) && $start_char === 'L') |
|
955 | - krsort($messages); |
|
981 | + if (!empty($start_char) && $start_char === 'L') { |
|
982 | + krsort($messages); |
|
983 | + } |
|
956 | 984 | } |
957 | 985 | |
958 | 986 | // Jump to page |
@@ -987,14 +1015,16 @@ discard block |
||
987 | 1015 | |
988 | 1016 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
989 | 1017 | { |
990 | - if (!empty($row['id_member'])) |
|
991 | - $all_posters[$row['id_msg']] = $row['id_member']; |
|
1018 | + if (!empty($row['id_member'])) { |
|
1019 | + $all_posters[$row['id_msg']] = $row['id_member']; |
|
1020 | + } |
|
992 | 1021 | $messages[] = $row['id_msg']; |
993 | 1022 | } |
994 | 1023 | |
995 | 1024 | // Sort the messages into the correct display order |
996 | - if (!$ascending) |
|
997 | - sort($messages); |
|
1025 | + if (!$ascending) { |
|
1026 | + sort($messages); |
|
1027 | + } |
|
998 | 1028 | } |
999 | 1029 | |
1000 | 1030 | // Remember the paging data for next time |
@@ -1014,8 +1044,9 @@ discard block |
||
1014 | 1044 | if (!$user_info['is_guest'] && !empty($messages)) |
1015 | 1045 | { |
1016 | 1046 | $mark_at_msg = max($messages); |
1017 | - if ($mark_at_msg >= $context['topicinfo']['id_last_msg']) |
|
1018 | - $mark_at_msg = $modSettings['maxMsgID']; |
|
1047 | + if ($mark_at_msg >= $context['topicinfo']['id_last_msg']) { |
|
1048 | + $mark_at_msg = $modSettings['maxMsgID']; |
|
1049 | + } |
|
1019 | 1050 | if ($mark_at_msg >= $context['topicinfo']['new_from']) |
1020 | 1051 | { |
1021 | 1052 | $smcFunc['db_insert']($context['topicinfo']['new_from'] == 0 ? 'ignore' : 'replace', |
@@ -1047,8 +1078,9 @@ discard block |
||
1047 | 1078 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1048 | 1079 | { |
1049 | 1080 | // Find if this topic is marked for notification... |
1050 | - if (!empty($row['id_topic'])) |
|
1051 | - $context['is_marked_notify'] = true; |
|
1081 | + if (!empty($row['id_topic'])) { |
|
1082 | + $context['is_marked_notify'] = true; |
|
1083 | + } |
|
1052 | 1084 | |
1053 | 1085 | // Only do this once, but mark the notifications as "not sent yet" for next time. |
1054 | 1086 | if (!empty($row['sent']) && $do_once) |
@@ -1070,8 +1102,9 @@ discard block |
||
1070 | 1102 | } |
1071 | 1103 | |
1072 | 1104 | // Have we recently cached the number of new topics in this board, and it's still a lot? |
1073 | - if (isset($_REQUEST['topicseen']) && isset($_SESSION['topicseen_cache'][$board]) && $_SESSION['topicseen_cache'][$board] > 5) |
|
1074 | - $_SESSION['topicseen_cache'][$board]--; |
|
1105 | + if (isset($_REQUEST['topicseen']) && isset($_SESSION['topicseen_cache'][$board]) && $_SESSION['topicseen_cache'][$board] > 5) { |
|
1106 | + $_SESSION['topicseen_cache'][$board]--; |
|
1107 | + } |
|
1075 | 1108 | // Mark board as seen if this is the only new topic. |
1076 | 1109 | elseif (isset($_REQUEST['topicseen'])) |
1077 | 1110 | { |
@@ -1095,14 +1128,16 @@ discard block |
||
1095 | 1128 | $smcFunc['db_free_result']($request); |
1096 | 1129 | |
1097 | 1130 | // If there're no real new topics in this board, mark the board as seen. |
1098 | - if (empty($numNewTopics)) |
|
1099 | - $_REQUEST['boardseen'] = true; |
|
1100 | - else |
|
1101 | - $_SESSION['topicseen_cache'][$board] = $numNewTopics; |
|
1131 | + if (empty($numNewTopics)) { |
|
1132 | + $_REQUEST['boardseen'] = true; |
|
1133 | + } else { |
|
1134 | + $_SESSION['topicseen_cache'][$board] = $numNewTopics; |
|
1135 | + } |
|
1102 | 1136 | } |
1103 | 1137 | // Probably one less topic - maybe not, but even if we decrease this too fast it will only make us look more often. |
1104 | - elseif (isset($_SESSION['topicseen_cache'][$board])) |
|
1105 | - $_SESSION['topicseen_cache'][$board]--; |
|
1138 | + elseif (isset($_SESSION['topicseen_cache'][$board])) { |
|
1139 | + $_SESSION['topicseen_cache'][$board]--; |
|
1140 | + } |
|
1106 | 1141 | |
1107 | 1142 | // Mark board as seen if we came using last post link from BoardIndex. (or other places...) |
1108 | 1143 | if (isset($_REQUEST['boardseen'])) |
@@ -1159,23 +1194,26 @@ discard block |
||
1159 | 1194 | $temp = array(); |
1160 | 1195 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1161 | 1196 | { |
1162 | - if (!$row['approved'] && $modSettings['postmod_active'] && !allowedTo('approve_posts') && (!isset($all_posters[$row['id_msg']]) || $all_posters[$row['id_msg']] != $user_info['id'])) |
|
1163 | - continue; |
|
1197 | + if (!$row['approved'] && $modSettings['postmod_active'] && !allowedTo('approve_posts') && (!isset($all_posters[$row['id_msg']]) || $all_posters[$row['id_msg']] != $user_info['id'])) { |
|
1198 | + continue; |
|
1199 | + } |
|
1164 | 1200 | |
1165 | 1201 | $temp[$row['id_attach']] = $row; |
1166 | 1202 | $temp[$row['id_attach']]['topic'] = $topic; |
1167 | 1203 | $temp[$row['id_attach']]['board'] = $board; |
1168 | 1204 | |
1169 | - if (!isset($context['loaded_attachments'][$row['id_msg']])) |
|
1170 | - $context['loaded_attachments'][$row['id_msg']] = array(); |
|
1205 | + if (!isset($context['loaded_attachments'][$row['id_msg']])) { |
|
1206 | + $context['loaded_attachments'][$row['id_msg']] = array(); |
|
1207 | + } |
|
1171 | 1208 | } |
1172 | 1209 | $smcFunc['db_free_result']($request); |
1173 | 1210 | |
1174 | 1211 | // This is better than sorting it with the query... |
1175 | 1212 | ksort($temp); |
1176 | 1213 | |
1177 | - foreach ($temp as $row) |
|
1178 | - $context['loaded_attachments'][$row['id_msg']][] = $row; |
|
1214 | + foreach ($temp as $row) { |
|
1215 | + $context['loaded_attachments'][$row['id_msg']][] = $row; |
|
1216 | + } |
|
1179 | 1217 | } |
1180 | 1218 | |
1181 | 1219 | $msg_parameters = array( |
@@ -1202,21 +1240,23 @@ discard block |
||
1202 | 1240 | ); |
1203 | 1241 | |
1204 | 1242 | // And the likes |
1205 | - if (!empty($modSettings['enable_likes'])) |
|
1206 | - $context['my_likes'] = $context['user']['is_guest'] ? array() : prepareLikesContext($topic); |
|
1243 | + if (!empty($modSettings['enable_likes'])) { |
|
1244 | + $context['my_likes'] = $context['user']['is_guest'] ? array() : prepareLikesContext($topic); |
|
1245 | + } |
|
1207 | 1246 | |
1208 | 1247 | // Go to the last message if the given time is beyond the time of the last message. |
1209 | - if (isset($context['start_from']) && $context['start_from'] >= $context['topicinfo']['num_replies']) |
|
1210 | - $context['start_from'] = $context['topicinfo']['num_replies']; |
|
1248 | + if (isset($context['start_from']) && $context['start_from'] >= $context['topicinfo']['num_replies']) { |
|
1249 | + $context['start_from'] = $context['topicinfo']['num_replies']; |
|
1250 | + } |
|
1211 | 1251 | |
1212 | 1252 | // Since the anchor information is needed on the top of the page we load these variables beforehand. |
1213 | 1253 | $context['first_message'] = isset($messages[$firstIndex]) ? $messages[$firstIndex] : $messages[0]; |
1214 | - if (empty($options['view_newest_first'])) |
|
1215 | - $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $context['start_from']; |
|
1216 | - else |
|
1217 | - $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $context['topicinfo']['num_replies'] - $context['start_from']; |
|
1218 | - } |
|
1219 | - else |
|
1254 | + if (empty($options['view_newest_first'])) { |
|
1255 | + $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $context['start_from']; |
|
1256 | + } else { |
|
1257 | + $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $context['topicinfo']['num_replies'] - $context['start_from']; |
|
1258 | + } |
|
1259 | + } else |
|
1220 | 1260 | { |
1221 | 1261 | $messages_request = false; |
1222 | 1262 | $context['first_message'] = 0; |
@@ -1251,8 +1291,9 @@ discard block |
||
1251 | 1291 | 'can_restore_msg' => 'move_any', |
1252 | 1292 | 'can_like' => 'likes_like', |
1253 | 1293 | ); |
1254 | - foreach ($common_permissions as $contextual => $perm) |
|
1255 | - $context[$contextual] = allowedTo($perm); |
|
1294 | + foreach ($common_permissions as $contextual => $perm) { |
|
1295 | + $context[$contextual] = allowedTo($perm); |
|
1296 | + } |
|
1256 | 1297 | |
1257 | 1298 | // Permissions with _any/_own versions. $context[YYY] => ZZZ_any/_own. |
1258 | 1299 | $anyown_permissions = array( |
@@ -1265,8 +1306,9 @@ discard block |
||
1265 | 1306 | 'can_reply_unapproved' => 'post_unapproved_replies', |
1266 | 1307 | 'can_view_warning' => 'profile_warning', |
1267 | 1308 | ); |
1268 | - foreach ($anyown_permissions as $contextual => $perm) |
|
1269 | - $context[$contextual] = allowedTo($perm . '_any') || ($context['user']['started'] && allowedTo($perm . '_own')); |
|
1309 | + foreach ($anyown_permissions as $contextual => $perm) { |
|
1310 | + $context[$contextual] = allowedTo($perm . '_any') || ($context['user']['started'] && allowedTo($perm . '_own')); |
|
1311 | + } |
|
1270 | 1312 | |
1271 | 1313 | if (!$user_info['is_admin'] && $context['can_move'] && !$modSettings['topic_move_any']) |
1272 | 1314 | { |
@@ -1312,8 +1354,9 @@ discard block |
||
1312 | 1354 | // Check if the draft functions are enabled and that they have permission to use them (for quick reply.) |
1313 | 1355 | $context['drafts_save'] = !empty($modSettings['drafts_post_enabled']) && allowedTo('post_draft') && $context['can_reply']; |
1314 | 1356 | $context['drafts_autosave'] = !empty($context['drafts_save']) && !empty($modSettings['drafts_autosave_enabled']); |
1315 | - if (!empty($context['drafts_save'])) |
|
1316 | - loadLanguage('Drafts'); |
|
1357 | + if (!empty($context['drafts_save'])) { |
|
1358 | + loadLanguage('Drafts'); |
|
1359 | + } |
|
1317 | 1360 | |
1318 | 1361 | // When was the last time this topic was replied to? Should we warn them about it? |
1319 | 1362 | if (!empty($modSettings['oldTopicDays']) && ($context['can_reply'] || $context['can_reply_unapproved']) && empty($context['topicinfo']['is_sticky'])) |
@@ -1374,26 +1417,31 @@ discard block |
||
1374 | 1417 | // Message icons - customized icons are off? |
1375 | 1418 | $context['icons'] = getMessageIcons($board); |
1376 | 1419 | |
1377 | - if (!empty($context['icons'])) |
|
1378 | - $context['icons'][count($context['icons']) - 1]['is_last'] = true; |
|
1420 | + if (!empty($context['icons'])) { |
|
1421 | + $context['icons'][count($context['icons']) - 1]['is_last'] = true; |
|
1422 | + } |
|
1379 | 1423 | |
1380 | 1424 | // Build the normal button array. |
1381 | 1425 | $context['normal_buttons'] = array(); |
1382 | 1426 | |
1383 | - if ($context['can_reply']) |
|
1384 | - $context['normal_buttons']['reply'] = array('text' => 'reply', 'image' => 'reply.png', 'url' => $scripturl . '?action=post;topic=' . $context['current_topic'] . '.' . $context['start'] . ';last_msg=' . $context['topic_last_message'], 'active' => true); |
|
1427 | + if ($context['can_reply']) { |
|
1428 | + $context['normal_buttons']['reply'] = array('text' => 'reply', 'image' => 'reply.png', 'url' => $scripturl . '?action=post;topic=' . $context['current_topic'] . '.' . $context['start'] . ';last_msg=' . $context['topic_last_message'], 'active' => true); |
|
1429 | + } |
|
1385 | 1430 | |
1386 | - if ($context['can_add_poll']) |
|
1387 | - $context['normal_buttons']['add_poll'] = array('text' => 'add_poll', 'image' => 'add_poll.png', 'url' => $scripturl . '?action=editpoll;add;topic=' . $context['current_topic'] . '.' . $context['start']); |
|
1431 | + if ($context['can_add_poll']) { |
|
1432 | + $context['normal_buttons']['add_poll'] = array('text' => 'add_poll', 'image' => 'add_poll.png', 'url' => $scripturl . '?action=editpoll;add;topic=' . $context['current_topic'] . '.' . $context['start']); |
|
1433 | + } |
|
1388 | 1434 | |
1389 | - if ($context['can_mark_unread']) |
|
1390 | - $context['normal_buttons']['mark_unread'] = array('text' => 'mark_unread', 'image' => 'markunread.png', 'url' => $scripturl . '?action=markasread;sa=topic;t=' . $context['mark_unread_time'] . ';topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1435 | + if ($context['can_mark_unread']) { |
|
1436 | + $context['normal_buttons']['mark_unread'] = array('text' => 'mark_unread', 'image' => 'markunread.png', 'url' => $scripturl . '?action=markasread;sa=topic;t=' . $context['mark_unread_time'] . ';topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1437 | + } |
|
1391 | 1438 | |
1392 | - if ($context['can_print']) |
|
1393 | - $context['normal_buttons']['print'] = array('text' => 'print', 'image' => 'print.png', 'custom' => 'rel="nofollow"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'); |
|
1439 | + if ($context['can_print']) { |
|
1440 | + $context['normal_buttons']['print'] = array('text' => 'print', 'image' => 'print.png', 'custom' => 'rel="nofollow"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'); |
|
1441 | + } |
|
1394 | 1442 | |
1395 | - if ($context['can_set_notify']) |
|
1396 | - $context['normal_buttons']['notify'] = array( |
|
1443 | + if ($context['can_set_notify']) { |
|
1444 | + $context['normal_buttons']['notify'] = array( |
|
1397 | 1445 | 'text' => 'notify_topic_' . $context['topic_notification_mode'], |
1398 | 1446 | 'sub_buttons' => array( |
1399 | 1447 | array( |
@@ -1415,38 +1463,47 @@ discard block |
||
1415 | 1463 | ), |
1416 | 1464 | ), |
1417 | 1465 | ); |
1466 | + } |
|
1418 | 1467 | |
1419 | 1468 | // Build the mod button array |
1420 | 1469 | $context['mod_buttons'] = array(); |
1421 | 1470 | |
1422 | - if ($context['can_move']) |
|
1423 | - $context['mod_buttons']['move'] = array('text' => 'move_topic', 'image' => 'admin_move.png', 'url' => $scripturl . '?action=movetopic;current_board=' . $context['current_board'] . ';topic=' . $context['current_topic'] . '.0'); |
|
1471 | + if ($context['can_move']) { |
|
1472 | + $context['mod_buttons']['move'] = array('text' => 'move_topic', 'image' => 'admin_move.png', 'url' => $scripturl . '?action=movetopic;current_board=' . $context['current_board'] . ';topic=' . $context['current_topic'] . '.0'); |
|
1473 | + } |
|
1424 | 1474 | |
1425 | - if ($context['can_delete']) |
|
1426 | - $context['mod_buttons']['delete'] = array('text' => 'remove_topic', 'image' => 'admin_rem.png', 'custom' => 'data-confirm="' . $txt['are_sure_remove_topic'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=removetopic2;topic=' . $context['current_topic'] . '.0;' . $context['session_var'] . '=' . $context['session_id']); |
|
1475 | + if ($context['can_delete']) { |
|
1476 | + $context['mod_buttons']['delete'] = array('text' => 'remove_topic', 'image' => 'admin_rem.png', 'custom' => 'data-confirm="' . $txt['are_sure_remove_topic'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=removetopic2;topic=' . $context['current_topic'] . '.0;' . $context['session_var'] . '=' . $context['session_id']); |
|
1477 | + } |
|
1427 | 1478 | |
1428 | - if ($context['can_lock']) |
|
1429 | - $context['mod_buttons']['lock'] = array('text' => empty($context['is_locked']) ? 'set_lock' : 'set_unlock', 'image' => 'admin_lock.png', 'url' => $scripturl . '?action=lock;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1479 | + if ($context['can_lock']) { |
|
1480 | + $context['mod_buttons']['lock'] = array('text' => empty($context['is_locked']) ? 'set_lock' : 'set_unlock', 'image' => 'admin_lock.png', 'url' => $scripturl . '?action=lock;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1481 | + } |
|
1430 | 1482 | |
1431 | - if ($context['can_sticky']) |
|
1432 | - $context['mod_buttons']['sticky'] = array('text' => empty($context['is_sticky']) ? 'set_sticky' : 'set_nonsticky', 'image' => 'admin_sticky.png', 'url' => $scripturl . '?action=sticky;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1483 | + if ($context['can_sticky']) { |
|
1484 | + $context['mod_buttons']['sticky'] = array('text' => empty($context['is_sticky']) ? 'set_sticky' : 'set_nonsticky', 'image' => 'admin_sticky.png', 'url' => $scripturl . '?action=sticky;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1485 | + } |
|
1433 | 1486 | |
1434 | - if ($context['can_merge']) |
|
1435 | - $context['mod_buttons']['merge'] = array('text' => 'merge', 'image' => 'merge.png', 'url' => $scripturl . '?action=mergetopics;board=' . $context['current_board'] . '.0;from=' . $context['current_topic']); |
|
1487 | + if ($context['can_merge']) { |
|
1488 | + $context['mod_buttons']['merge'] = array('text' => 'merge', 'image' => 'merge.png', 'url' => $scripturl . '?action=mergetopics;board=' . $context['current_board'] . '.0;from=' . $context['current_topic']); |
|
1489 | + } |
|
1436 | 1490 | |
1437 | - if ($context['calendar_post']) |
|
1438 | - $context['mod_buttons']['calendar'] = array('text' => 'calendar_link', 'image' => 'linktocal.png', 'url' => $scripturl . '?action=post;calendar;msg=' . $context['topic_first_message'] . ';topic=' . $context['current_topic'] . '.0'); |
|
1491 | + if ($context['calendar_post']) { |
|
1492 | + $context['mod_buttons']['calendar'] = array('text' => 'calendar_link', 'image' => 'linktocal.png', 'url' => $scripturl . '?action=post;calendar;msg=' . $context['topic_first_message'] . ';topic=' . $context['current_topic'] . '.0'); |
|
1493 | + } |
|
1439 | 1494 | |
1440 | 1495 | // Restore topic. eh? No monkey business. |
1441 | - if ($context['can_restore_topic']) |
|
1442 | - $context['mod_buttons']['restore_topic'] = array('text' => 'restore_topic', 'image' => '', 'url' => $scripturl . '?action=restoretopic;topics=' . $context['current_topic'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1496 | + if ($context['can_restore_topic']) { |
|
1497 | + $context['mod_buttons']['restore_topic'] = array('text' => 'restore_topic', 'image' => '', 'url' => $scripturl . '?action=restoretopic;topics=' . $context['current_topic'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1498 | + } |
|
1443 | 1499 | |
1444 | 1500 | // Show a message in case a recently posted message became unapproved. |
1445 | 1501 | $context['becomesUnapproved'] = !empty($_SESSION['becomesUnapproved']) ? true : false; |
1446 | 1502 | |
1447 | 1503 | // Don't want to show this forever... |
1448 | - if ($context['becomesUnapproved']) |
|
1449 | - unset($_SESSION['becomesUnapproved']); |
|
1504 | + if ($context['becomesUnapproved']) { |
|
1505 | + unset($_SESSION['becomesUnapproved']); |
|
1506 | + } |
|
1450 | 1507 | |
1451 | 1508 | // Allow adding new mod buttons easily. |
1452 | 1509 | // Note: $context['normal_buttons'] and $context['mod_buttons'] are added for backward compatibility with 2.0, but are deprecated and should not be used |
@@ -1455,12 +1512,14 @@ discard block |
||
1455 | 1512 | call_integration_hook('integrate_mod_buttons', array(&$context['mod_buttons'])); |
1456 | 1513 | |
1457 | 1514 | // Load the drafts js file |
1458 | - if ($context['drafts_autosave']) |
|
1459 | - loadJavaScriptFile('drafts.js', array('defer' => false, 'minimize' => true), 'smf_drafts'); |
|
1515 | + if ($context['drafts_autosave']) { |
|
1516 | + loadJavaScriptFile('drafts.js', array('defer' => false, 'minimize' => true), 'smf_drafts'); |
|
1517 | + } |
|
1460 | 1518 | |
1461 | 1519 | // Spellcheck |
1462 | - if ($context['show_spellchecking']) |
|
1463 | - loadJavaScriptFile('spellcheck.js', array('defer' => false, 'minimize' => true), 'smf_spellcheck'); |
|
1520 | + if ($context['show_spellchecking']) { |
|
1521 | + loadJavaScriptFile('spellcheck.js', array('defer' => false, 'minimize' => true), 'smf_spellcheck'); |
|
1522 | + } |
|
1464 | 1523 | |
1465 | 1524 | // topic.js |
1466 | 1525 | loadJavaScriptFile('topic.js', array('defer' => false, 'minimize' => true), 'smf_topic'); |
@@ -1494,16 +1553,19 @@ discard block |
||
1494 | 1553 | static $counter = null; |
1495 | 1554 | |
1496 | 1555 | // If the query returned false, bail. |
1497 | - if ($messages_request == false) |
|
1498 | - return false; |
|
1556 | + if ($messages_request == false) { |
|
1557 | + return false; |
|
1558 | + } |
|
1499 | 1559 | |
1500 | 1560 | // Remember which message this is. (ie. reply #83) |
1501 | - if ($counter === null || $reset) |
|
1502 | - $counter = empty($options['view_newest_first']) ? $context['start'] : $context['total_visible_posts'] - $context['start']; |
|
1561 | + if ($counter === null || $reset) { |
|
1562 | + $counter = empty($options['view_newest_first']) ? $context['start'] : $context['total_visible_posts'] - $context['start']; |
|
1563 | + } |
|
1503 | 1564 | |
1504 | 1565 | // Start from the beginning... |
1505 | - if ($reset) |
|
1506 | - return @$smcFunc['db_data_seek']($messages_request, 0); |
|
1566 | + if ($reset) { |
|
1567 | + return @$smcFunc['db_data_seek']($messages_request, 0); |
|
1568 | + } |
|
1507 | 1569 | |
1508 | 1570 | // Attempt to get the next message. |
1509 | 1571 | $message = $smcFunc['db_fetch_assoc']($messages_request); |
@@ -1517,19 +1579,21 @@ discard block |
||
1517 | 1579 | if (empty($context['icon_sources'])) |
1518 | 1580 | { |
1519 | 1581 | $context['icon_sources'] = array(); |
1520 | - foreach ($context['stable_icons'] as $icon) |
|
1521 | - $context['icon_sources'][$icon] = 'images_url'; |
|
1582 | + foreach ($context['stable_icons'] as $icon) { |
|
1583 | + $context['icon_sources'][$icon] = 'images_url'; |
|
1584 | + } |
|
1522 | 1585 | } |
1523 | 1586 | |
1524 | 1587 | // Message Icon Management... check the images exist. |
1525 | 1588 | if (empty($modSettings['messageIconChecks_disable'])) |
1526 | 1589 | { |
1527 | 1590 | // If the current icon isn't known, then we need to do something... |
1528 | - if (!isset($context['icon_sources'][$message['icon']])) |
|
1529 | - $context['icon_sources'][$message['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
1591 | + if (!isset($context['icon_sources'][$message['icon']])) { |
|
1592 | + $context['icon_sources'][$message['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
1593 | + } |
|
1594 | + } elseif (!isset($context['icon_sources'][$message['icon']])) { |
|
1595 | + $context['icon_sources'][$message['icon']] = 'images_url'; |
|
1530 | 1596 | } |
1531 | - elseif (!isset($context['icon_sources'][$message['icon']])) |
|
1532 | - $context['icon_sources'][$message['icon']] = 'images_url'; |
|
1533 | 1597 | |
1534 | 1598 | // If you're a lazy bum, you probably didn't give a subject... |
1535 | 1599 | $message['subject'] = $message['subject'] != '' ? $message['subject'] : $txt['no_subject']; |
@@ -1554,8 +1618,7 @@ discard block |
||
1554 | 1618 | $memberContext[$message['id_member']]['email'] = $message['poster_email']; |
1555 | 1619 | $memberContext[$message['id_member']]['show_email'] = allowedTo('moderate_forum'); |
1556 | 1620 | $memberContext[$message['id_member']]['is_guest'] = true; |
1557 | - } |
|
1558 | - else |
|
1621 | + } else |
|
1559 | 1622 | { |
1560 | 1623 | // Define this here to make things a bit more readable |
1561 | 1624 | $can_view_warning = $context['user']['can_mod'] || allowedTo('view_warning_any') || ($message['id_member'] == $user_info['id'] && allowedTo('view_warning_own')); |
@@ -1578,8 +1641,9 @@ discard block |
||
1578 | 1641 | $message['body'] = parse_bbc($message['body'], $message['smileys_enabled'], $message['id_msg']); |
1579 | 1642 | |
1580 | 1643 | // If it's in the recycle bin we need to override whatever icon we did have. |
1581 | - if (!empty($board_info['recycle'])) |
|
1582 | - $message['icon'] = 'recycled'; |
|
1644 | + if (!empty($board_info['recycle'])) { |
|
1645 | + $message['icon'] = 'recycled'; |
|
1646 | + } |
|
1583 | 1647 | |
1584 | 1648 | require_once($sourcedir . '/Subs-Attachments.php'); |
1585 | 1649 | |
@@ -1623,32 +1687,36 @@ discard block |
||
1623 | 1687 | } |
1624 | 1688 | |
1625 | 1689 | // Are likes enable? |
1626 | - if (!empty($modSettings['enable_likes'])) |
|
1627 | - $output['likes'] = array( |
|
1690 | + if (!empty($modSettings['enable_likes'])) { |
|
1691 | + $output['likes'] = array( |
|
1628 | 1692 | 'count' => $message['likes'], |
1629 | 1693 | 'you' => in_array($message['id_msg'], $context['my_likes']), |
1630 | 1694 | 'can_like' => !$context['user']['is_guest'] && $message['id_member'] != $context['user']['id'] && !empty($context['can_like']), |
1631 | 1695 | ); |
1696 | + } |
|
1632 | 1697 | |
1633 | 1698 | // Is this user the message author? |
1634 | 1699 | $output['is_message_author'] = $message['id_member'] == $user_info['id']; |
1635 | - if (!empty($output['modified']['name'])) |
|
1636 | - $output['modified']['last_edit_text'] = sprintf($txt['last_edit_by'], $output['modified']['time'], $output['modified']['name']); |
|
1700 | + if (!empty($output['modified']['name'])) { |
|
1701 | + $output['modified']['last_edit_text'] = sprintf($txt['last_edit_by'], $output['modified']['time'], $output['modified']['name']); |
|
1702 | + } |
|
1637 | 1703 | |
1638 | 1704 | // Did they give a reason for editing? |
1639 | - if (!empty($output['modified']['name']) && !empty($output['modified']['reason'])) |
|
1640 | - $output['modified']['last_edit_text'] .= ' ' . sprintf($txt['last_edit_reason'], $output['modified']['reason']); |
|
1705 | + if (!empty($output['modified']['name']) && !empty($output['modified']['reason'])) { |
|
1706 | + $output['modified']['last_edit_text'] .= ' ' . sprintf($txt['last_edit_reason'], $output['modified']['reason']); |
|
1707 | + } |
|
1641 | 1708 | |
1642 | 1709 | // Any custom profile fields? |
1643 | - if (!empty($memberContext[$message['id_member']]['custom_fields'])) |
|
1644 | - foreach ($memberContext[$message['id_member']]['custom_fields'] as $custom) |
|
1710 | + if (!empty($memberContext[$message['id_member']]['custom_fields'])) { |
|
1711 | + foreach ($memberContext[$message['id_member']]['custom_fields'] as $custom) |
|
1645 | 1712 | $output['custom_fields'][$context['cust_profile_fields_placement'][$custom['placement']]][] = $custom; |
1713 | + } |
|
1646 | 1714 | |
1647 | - if (empty($options['view_newest_first'])) |
|
1648 | - $counter++; |
|
1649 | - |
|
1650 | - else |
|
1651 | - $counter--; |
|
1715 | + if (empty($options['view_newest_first'])) { |
|
1716 | + $counter++; |
|
1717 | + } else { |
|
1718 | + $counter--; |
|
1719 | + } |
|
1652 | 1720 | |
1653 | 1721 | call_integration_hook('integrate_prepare_display_context', array(&$output, &$message, $counter)); |
1654 | 1722 | |
@@ -1674,8 +1742,9 @@ discard block |
||
1674 | 1742 | */ |
1675 | 1743 | function approved_attach_sort($a, $b) |
1676 | 1744 | { |
1677 | - if ($a['is_approved'] == $b['is_approved']) |
|
1678 | - return 0; |
|
1745 | + if ($a['is_approved'] == $b['is_approved']) { |
|
1746 | + return 0; |
|
1747 | + } |
|
1679 | 1748 | |
1680 | 1749 | return $a['is_approved'] > $b['is_approved'] ? -1 : 1; |
1681 | 1750 | } |
@@ -1692,16 +1761,19 @@ discard block |
||
1692 | 1761 | |
1693 | 1762 | require_once($sourcedir . '/RemoveTopic.php'); |
1694 | 1763 | |
1695 | - if (empty($_REQUEST['msgs'])) |
|
1696 | - redirectexit('topic=' . $topic . '.' . $_REQUEST['start']); |
|
1764 | + if (empty($_REQUEST['msgs'])) { |
|
1765 | + redirectexit('topic=' . $topic . '.' . $_REQUEST['start']); |
|
1766 | + } |
|
1697 | 1767 | |
1698 | 1768 | $messages = array(); |
1699 | - foreach ($_REQUEST['msgs'] as $dummy) |
|
1700 | - $messages[] = (int) $dummy; |
|
1769 | + foreach ($_REQUEST['msgs'] as $dummy) { |
|
1770 | + $messages[] = (int) $dummy; |
|
1771 | + } |
|
1701 | 1772 | |
1702 | 1773 | // We are restoring messages. We handle this in another place. |
1703 | - if (isset($_REQUEST['restore_selected'])) |
|
1704 | - redirectexit('action=restoretopic;msgs=' . implode(',', $messages) . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1774 | + if (isset($_REQUEST['restore_selected'])) { |
|
1775 | + redirectexit('action=restoretopic;msgs=' . implode(',', $messages) . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
1776 | + } |
|
1705 | 1777 | if (isset($_REQUEST['split_selection'])) |
1706 | 1778 | { |
1707 | 1779 | $request = $smcFunc['db_query']('', ' |
@@ -1720,8 +1792,9 @@ discard block |
||
1720 | 1792 | } |
1721 | 1793 | |
1722 | 1794 | // Allowed to delete any message? |
1723 | - if (allowedTo('delete_any')) |
|
1724 | - $allowed_all = true; |
|
1795 | + if (allowedTo('delete_any')) { |
|
1796 | + $allowed_all = true; |
|
1797 | + } |
|
1725 | 1798 | // Allowed to delete replies to their messages? |
1726 | 1799 | elseif (allowedTo('delete_replies')) |
1727 | 1800 | { |
@@ -1738,13 +1811,14 @@ discard block |
||
1738 | 1811 | $smcFunc['db_free_result']($request); |
1739 | 1812 | |
1740 | 1813 | $allowed_all = $starter == $user_info['id']; |
1814 | + } else { |
|
1815 | + $allowed_all = false; |
|
1741 | 1816 | } |
1742 | - else |
|
1743 | - $allowed_all = false; |
|
1744 | 1817 | |
1745 | 1818 | // Make sure they're allowed to delete their own messages, if not any. |
1746 | - if (!$allowed_all) |
|
1747 | - isAllowedTo('delete_own'); |
|
1819 | + if (!$allowed_all) { |
|
1820 | + isAllowedTo('delete_own'); |
|
1821 | + } |
|
1748 | 1822 | |
1749 | 1823 | // Allowed to remove which messages? |
1750 | 1824 | $request = $smcFunc['db_query']('', ' |
@@ -1764,8 +1838,9 @@ discard block |
||
1764 | 1838 | $messages = array(); |
1765 | 1839 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1766 | 1840 | { |
1767 | - if (!$allowed_all && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + $modSettings['edit_disable_time'] * 60 < time()) |
|
1768 | - continue; |
|
1841 | + if (!$allowed_all && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + $modSettings['edit_disable_time'] * 60 < time()) { |
|
1842 | + continue; |
|
1843 | + } |
|
1769 | 1844 | |
1770 | 1845 | $messages[$row['id_msg']] = array($row['subject'], $row['id_member']); |
1771 | 1846 | } |
@@ -1788,17 +1863,20 @@ discard block |
||
1788 | 1863 | foreach ($messages as $message => $info) |
1789 | 1864 | { |
1790 | 1865 | // Just skip the first message - if it's not the last. |
1791 | - if ($message == $first_message && $message != $last_message) |
|
1792 | - continue; |
|
1866 | + if ($message == $first_message && $message != $last_message) { |
|
1867 | + continue; |
|
1868 | + } |
|
1793 | 1869 | // If the first message is going then don't bother going back to the topic as we're effectively deleting it. |
1794 | - elseif ($message == $first_message) |
|
1795 | - $topicGone = true; |
|
1870 | + elseif ($message == $first_message) { |
|
1871 | + $topicGone = true; |
|
1872 | + } |
|
1796 | 1873 | |
1797 | 1874 | removeMessage($message); |
1798 | 1875 | |
1799 | 1876 | // Log this moderation action ;). |
1800 | - if (allowedTo('delete_any') && (!allowedTo('delete_own') || $info[1] != $user_info['id'])) |
|
1801 | - logAction('delete', array('topic' => $topic, 'subject' => $info[0], 'member' => $info[1], 'board' => $board)); |
|
1877 | + if (allowedTo('delete_any') && (!allowedTo('delete_own') || $info[1] != $user_info['id'])) { |
|
1878 | + logAction('delete', array('topic' => $topic, 'subject' => $info[0], 'member' => $info[1], 'board' => $board)); |
|
1879 | + } |
|
1802 | 1880 | } |
1803 | 1881 | |
1804 | 1882 | redirectexit(!empty($topicGone) ? 'board=' . $board : 'topic=' . $topic . '.' . $_REQUEST['start']); |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * Entry point function, permission checks, admin bars, etc. |
@@ -99,27 +100,27 @@ discard block |
||
99 | 100 | 'function' => function($rowData) use ($scripturl) |
100 | 101 | { |
101 | 102 | // Since the moderator group has no explicit members, no link is needed. |
102 | - if ($rowData['id_group'] == 3) |
|
103 | - $group_name = $rowData['group_name']; |
|
104 | - else |
|
103 | + if ($rowData['id_group'] == 3) { |
|
104 | + $group_name = $rowData['group_name']; |
|
105 | + } else |
|
105 | 106 | { |
106 | 107 | $color_style = empty($rowData['online_color']) ? '' : sprintf(' style="color: %1$s;"', $rowData['online_color']); |
107 | 108 | |
108 | 109 | if (allowedTo('manage_membergroups')) |
109 | 110 | { |
110 | 111 | $group_name = sprintf('<a href="%1$s?action=admin;area=membergroups;sa=members;group=%2$d"%3$s>%4$s</a>', $scripturl, $rowData['id_group'], $color_style, $rowData['group_name']); |
111 | - } |
|
112 | - else |
|
112 | + } else |
|
113 | 113 | { |
114 | 114 | $group_name = sprintf('<a href="%1$s?action=groups;sa=members;group=%2$d"%3$s>%4$s</a>', $scripturl, $rowData['id_group'], $color_style, $rowData['group_name']); |
115 | 115 | } |
116 | 116 | } |
117 | 117 | |
118 | 118 | // Add a help option for moderator and administrator. |
119 | - if ($rowData['id_group'] == 1) |
|
120 | - $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_administrator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
121 | - elseif ($rowData['id_group'] == 3) |
|
122 | - $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_moderator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
119 | + if ($rowData['id_group'] == 1) { |
|
120 | + $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_administrator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
121 | + } elseif ($rowData['id_group'] == 3) { |
|
122 | + $group_name .= sprintf(' (<a href="%1$s?action=helpadmin;help=membergroup_moderator" onclick="return reqOverlayDiv(this.href);">?</a>)', $scripturl); |
|
123 | + } |
|
123 | 124 | |
124 | 125 | return $group_name; |
125 | 126 | }, |
@@ -198,8 +199,9 @@ discard block |
||
198 | 199 | $_REQUEST['group'] = isset($_REQUEST['group']) ? (int) $_REQUEST['group'] : 0; |
199 | 200 | |
200 | 201 | // No browsing of guests, membergroup 0 or moderators. |
201 | - if (in_array($_REQUEST['group'], array(-1, 0, 3))) |
|
202 | - fatal_lang_error('membergroup_does_not_exist', false); |
|
202 | + if (in_array($_REQUEST['group'], array(-1, 0, 3))) { |
|
203 | + fatal_lang_error('membergroup_does_not_exist', false); |
|
204 | + } |
|
203 | 205 | |
204 | 206 | // Load up the group details. |
205 | 207 | $request = $smcFunc['db_query']('', ' |
@@ -214,8 +216,9 @@ discard block |
||
214 | 216 | ) |
215 | 217 | ); |
216 | 218 | // Doesn't exist? |
217 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
218 | - fatal_lang_error('membergroup_does_not_exist', false); |
|
219 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
220 | + fatal_lang_error('membergroup_does_not_exist', false); |
|
221 | + } |
|
219 | 222 | $context['group'] = $smcFunc['db_fetch_assoc']($request); |
220 | 223 | $smcFunc['db_free_result']($request); |
221 | 224 | |
@@ -248,21 +251,25 @@ discard block |
||
248 | 251 | 'name' => $row['real_name'] |
249 | 252 | ); |
250 | 253 | |
251 | - if ($user_info['id'] == $row['id_member'] && $context['group']['group_type'] != 1) |
|
252 | - $context['group']['can_moderate'] = true; |
|
254 | + if ($user_info['id'] == $row['id_member'] && $context['group']['group_type'] != 1) { |
|
255 | + $context['group']['can_moderate'] = true; |
|
256 | + } |
|
253 | 257 | } |
254 | 258 | $smcFunc['db_free_result']($request); |
255 | 259 | |
256 | 260 | // If this group is hidden then it can only "exists" if the user can moderate it! |
257 | - if ($context['group']['hidden'] && !$context['group']['can_moderate']) |
|
258 | - fatal_lang_error('membergroup_does_not_exist', false); |
|
261 | + if ($context['group']['hidden'] && !$context['group']['can_moderate']) { |
|
262 | + fatal_lang_error('membergroup_does_not_exist', false); |
|
263 | + } |
|
259 | 264 | |
260 | 265 | // You can only assign membership if you are the moderator and/or can manage groups! |
261 | - if (!$context['group']['can_moderate']) |
|
262 | - $context['group']['assignable'] = 0; |
|
266 | + if (!$context['group']['can_moderate']) { |
|
267 | + $context['group']['assignable'] = 0; |
|
268 | + } |
|
263 | 269 | // Non-admins cannot assign admins. |
264 | - elseif ($context['group']['id'] == 1 && !allowedTo('admin_forum')) |
|
265 | - $context['group']['assignable'] = 0; |
|
270 | + elseif ($context['group']['id'] == 1 && !allowedTo('admin_forum')) { |
|
271 | + $context['group']['assignable'] = 0; |
|
272 | + } |
|
266 | 273 | |
267 | 274 | // Removing member from group? |
268 | 275 | if (isset($_POST['remove']) && !empty($_REQUEST['rem']) && is_array($_REQUEST['rem']) && $context['group']['assignable']) |
@@ -271,8 +278,9 @@ discard block |
||
271 | 278 | validateToken('mod-mgm'); |
272 | 279 | |
273 | 280 | // Make sure we're dealing with integers only. |
274 | - foreach ($_REQUEST['rem'] as $key => $group) |
|
275 | - $_REQUEST['rem'][$key] = (int) $group; |
|
281 | + foreach ($_REQUEST['rem'] as $key => $group) { |
|
282 | + $_REQUEST['rem'][$key] = (int) $group; |
|
283 | + } |
|
276 | 284 | |
277 | 285 | require_once($sourcedir . '/Subs-Membergroups.php'); |
278 | 286 | removeMembersFromGroups($_REQUEST['rem'], $_REQUEST['group'], true); |
@@ -295,16 +303,18 @@ discard block |
||
295 | 303 | { |
296 | 304 | $member_names[$index] = trim($smcFunc['strtolower']($member_names[$index])); |
297 | 305 | |
298 | - if (strlen($member_names[$index]) == 0) |
|
299 | - unset($member_names[$index]); |
|
306 | + if (strlen($member_names[$index]) == 0) { |
|
307 | + unset($member_names[$index]); |
|
308 | + } |
|
300 | 309 | } |
301 | 310 | |
302 | 311 | // Any passed by ID? |
303 | 312 | $member_ids = array(); |
304 | - if (!empty($_REQUEST['member_add'])) |
|
305 | - foreach ($_REQUEST['member_add'] as $id) |
|
313 | + if (!empty($_REQUEST['member_add'])) { |
|
314 | + foreach ($_REQUEST['member_add'] as $id) |
|
306 | 315 | if ($id > 0) |
307 | 316 | $member_ids[] = (int) $id; |
317 | + } |
|
308 | 318 | |
309 | 319 | // Construct the query pelements. |
310 | 320 | if (!empty($member_ids)) |
@@ -332,8 +342,9 @@ discard block |
||
332 | 342 | 'id_group' => $_REQUEST['group'], |
333 | 343 | )) |
334 | 344 | ); |
335 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
336 | - $members[] = $row['id_member']; |
|
345 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
346 | + $members[] = $row['id_member']; |
|
347 | + } |
|
337 | 348 | $smcFunc['db_free_result']($request); |
338 | 349 | } |
339 | 350 | |
@@ -372,10 +383,11 @@ discard block |
||
372 | 383 | $context['sort_direction'] = isset($_REQUEST['desc']) ? 'down' : 'up'; |
373 | 384 | |
374 | 385 | // The where on the query is interesting. Non-moderators should only see people who are in this group as primary. |
375 | - if ($context['group']['can_moderate']) |
|
376 | - $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group} OR FIND_IN_SET({int:group}, additional_groups) != 0'; |
|
377 | - else |
|
378 | - $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group}'; |
|
386 | + if ($context['group']['can_moderate']) { |
|
387 | + $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group} OR FIND_IN_SET({int:group}, additional_groups) != 0'; |
|
388 | + } else { |
|
389 | + $where = $context['group']['is_post_group'] ? 'id_post_group = {int:group}' : 'id_group = {int:group}'; |
|
390 | + } |
|
379 | 391 | |
380 | 392 | // Count members of the group. |
381 | 393 | $request = $smcFunc['db_query']('', ' |
@@ -416,8 +428,9 @@ discard block |
||
416 | 428 | $last_online = empty($row['last_login']) ? $txt['never'] : timeformat($row['last_login']); |
417 | 429 | |
418 | 430 | // Italicize the online note if they aren't activated. |
419 | - if ($row['is_activated'] % 10 != 1) |
|
420 | - $last_online = '<em title="' . $txt['not_activated'] . '">' . $last_online . '</em>'; |
|
431 | + if ($row['is_activated'] % 10 != 1) { |
|
432 | + $last_online = '<em title="' . $txt['not_activated'] . '">' . $last_online . '</em>'; |
|
433 | + } |
|
421 | 434 | |
422 | 435 | $context['members'][] = array( |
423 | 436 | 'id' => $row['id_member'], |
@@ -437,9 +450,10 @@ discard block |
||
437 | 450 | $context['page_title'] = $txt['membergroups_members_title'] . ': ' . $context['group']['name']; |
438 | 451 | createToken('mod-mgm'); |
439 | 452 | |
440 | - if ($context['group']['assignable']) |
|
441 | - loadJavaScriptFile('suggest.js', array('defer' => false, 'minimize' => true), 'smf_suggest'); |
|
442 | -} |
|
453 | + if ($context['group']['assignable']) { |
|
454 | + loadJavaScriptFile('suggest.js', array('defer' => false, 'minimize' => true), 'smf_suggest'); |
|
455 | + } |
|
456 | + } |
|
443 | 457 | |
444 | 458 | /** |
445 | 459 | * Show and manage all group requests. |
@@ -453,16 +467,18 @@ discard block |
||
453 | 467 | $context['sub_template'] = 'show_list'; |
454 | 468 | |
455 | 469 | // Verify we can be here. |
456 | - if ($user_info['mod_cache']['gq'] == '0=1') |
|
457 | - isAllowedTo('manage_membergroups'); |
|
470 | + if ($user_info['mod_cache']['gq'] == '0=1') { |
|
471 | + isAllowedTo('manage_membergroups'); |
|
472 | + } |
|
458 | 473 | |
459 | 474 | // Normally, we act normally... |
460 | 475 | $where = ($user_info['mod_cache']['gq'] == '1=1' || $user_info['mod_cache']['gq'] == '0=1' ? $user_info['mod_cache']['gq'] : 'lgr.' . $user_info['mod_cache']['gq']); |
461 | 476 | |
462 | - if (isset($_GET['closed'])) |
|
463 | - $where .= ' AND lgr.status != {int:status_open}'; |
|
464 | - else |
|
465 | - $where .= ' AND lgr.status = {int:status_open}'; |
|
477 | + if (isset($_GET['closed'])) { |
|
478 | + $where .= ' AND lgr.status != {int:status_open}'; |
|
479 | + } else { |
|
480 | + $where .= ' AND lgr.status = {int:status_open}'; |
|
481 | + } |
|
466 | 482 | |
467 | 483 | $where_parameters = array( |
468 | 484 | 'status_open' => 0, |
@@ -475,8 +491,9 @@ discard block |
||
475 | 491 | validateToken('mod-gr'); |
476 | 492 | |
477 | 493 | // Clean the values. |
478 | - foreach ($_POST['groupr'] as $k => $request) |
|
479 | - $_POST['groupr'][$k] = (int) $request; |
|
494 | + foreach ($_POST['groupr'] as $k => $request) { |
|
495 | + $_POST['groupr'][$k] = (int) $request; |
|
496 | + } |
|
480 | 497 | |
481 | 498 | $log_changes = array(); |
482 | 499 | |
@@ -513,8 +530,8 @@ discard block |
||
513 | 530 | $request_list = array(); |
514 | 531 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
515 | 532 | { |
516 | - if (!isset($log_changes[$row['id_request']])) |
|
517 | - $log_changes[$row['id_request']] = array( |
|
533 | + if (!isset($log_changes[$row['id_request']])) { |
|
534 | + $log_changes[$row['id_request']] = array( |
|
518 | 535 | 'id_request' => $row['id_request'], |
519 | 536 | 'status' => $_POST['req_action'] == 'approve' ? 1 : 2, // 1 = approved, 2 = rejected |
520 | 537 | 'id_member_acted' => $user_info['id'], |
@@ -522,6 +539,7 @@ discard block |
||
522 | 539 | 'time_acted' => time(), |
523 | 540 | 'act_reason' => $_POST['req_action'] != 'approve' && !empty($_POST['groupreason']) && !empty($_POST['groupreason'][$row['id_request']]) ? $smcFunc['htmlspecialchars']($_POST['groupreason'][$row['id_request']], ENT_QUOTES) : '', |
524 | 541 | ); |
542 | + } |
|
525 | 543 | $request_list[] = $row['id_request']; |
526 | 544 | } |
527 | 545 | $smcFunc['db_free_result']($request); |
@@ -744,21 +762,24 @@ discard block |
||
744 | 762 | $group_requests = array(); |
745 | 763 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
746 | 764 | { |
747 | - if (empty($row['reason'])) |
|
748 | - $reason = '<em>(' . $txt['mc_groupr_no_reason'] . ')</em>'; |
|
749 | - else |
|
750 | - $reason = censorText($row['reason']); |
|
765 | + if (empty($row['reason'])) { |
|
766 | + $reason = '<em>(' . $txt['mc_groupr_no_reason'] . ')</em>'; |
|
767 | + } else { |
|
768 | + $reason = censorText($row['reason']); |
|
769 | + } |
|
751 | 770 | |
752 | 771 | if (isset($_GET['closed'])) |
753 | 772 | { |
754 | - if ($row['status'] == 1) |
|
755 | - $reason .= '<br><br><strong>' . $txt['mc_groupr_approved'] . '</strong>'; |
|
756 | - elseif ($row['status'] == 2) |
|
757 | - $reason .= '<br><br><strong>' . $txt['mc_groupr_rejected'] . '</strong>'; |
|
773 | + if ($row['status'] == 1) { |
|
774 | + $reason .= '<br><br><strong>' . $txt['mc_groupr_approved'] . '</strong>'; |
|
775 | + } elseif ($row['status'] == 2) { |
|
776 | + $reason .= '<br><br><strong>' . $txt['mc_groupr_rejected'] . '</strong>'; |
|
777 | + } |
|
758 | 778 | |
759 | 779 | $reason .= ' (' . timeformat($row['time_acted']) . ')'; |
760 | - if (!empty($row['act_reason'])) |
|
761 | - $reason .= '<br><br>' . censorText($row['act_reason']); |
|
780 | + if (!empty($row['act_reason'])) { |
|
781 | + $reason .= '<br><br>' . censorText($row['act_reason']); |
|
782 | + } |
|
762 | 783 | } |
763 | 784 | |
764 | 785 | $group_requests[] = array( |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * The main admin handling function.<br> |
@@ -444,8 +445,9 @@ discard block |
||
444 | 445 | foreach ($admin_includes as $include) |
445 | 446 | { |
446 | 447 | $include = strtr(trim($include), array('$boarddir' => $boarddir, '$sourcedir' => $sourcedir, '$themedir' => $settings['theme_dir'])); |
447 | - if (file_exists($include)) |
|
448 | - require_once($include); |
|
448 | + if (file_exists($include)) { |
|
449 | + require_once($include); |
|
450 | + } |
|
449 | 451 | } |
450 | 452 | } |
451 | 453 | |
@@ -457,24 +459,27 @@ discard block |
||
457 | 459 | unset($admin_areas); |
458 | 460 | |
459 | 461 | // Nothing valid? |
460 | - if ($admin_include_data == false) |
|
461 | - fatal_lang_error('no_access', false); |
|
462 | + if ($admin_include_data == false) { |
|
463 | + fatal_lang_error('no_access', false); |
|
464 | + } |
|
462 | 465 | |
463 | 466 | // Build the link tree. |
464 | 467 | $context['linktree'][] = array( |
465 | 468 | 'url' => $scripturl . '?action=admin', |
466 | 469 | 'name' => $txt['admin_center'], |
467 | 470 | ); |
468 | - if (isset($admin_include_data['current_area']) && $admin_include_data['current_area'] != 'index') |
|
469 | - $context['linktree'][] = array( |
|
471 | + if (isset($admin_include_data['current_area']) && $admin_include_data['current_area'] != 'index') { |
|
472 | + $context['linktree'][] = array( |
|
470 | 473 | 'url' => $scripturl . '?action=admin;area=' . $admin_include_data['current_area'] . ';' . $context['session_var'] . '=' . $context['session_id'], |
471 | 474 | 'name' => $admin_include_data['label'], |
472 | 475 | ); |
473 | - if (!empty($admin_include_data['current_subsection']) && $admin_include_data['subsections'][$admin_include_data['current_subsection']][0] != $admin_include_data['label']) |
|
474 | - $context['linktree'][] = array( |
|
476 | + } |
|
477 | + if (!empty($admin_include_data['current_subsection']) && $admin_include_data['subsections'][$admin_include_data['current_subsection']][0] != $admin_include_data['label']) { |
|
478 | + $context['linktree'][] = array( |
|
475 | 479 | 'url' => $scripturl . '?action=admin;area=' . $admin_include_data['current_area'] . ';sa=' . $admin_include_data['current_subsection'] . ';' . $context['session_var'] . '=' . $context['session_id'], |
476 | 480 | 'name' => $admin_include_data['subsections'][$admin_include_data['current_subsection']][0], |
477 | 481 | ); |
482 | + } |
|
478 | 483 | |
479 | 484 | // Make a note of the Unique ID for this menu. |
480 | 485 | $context['admin_menu_id'] = $context['max_menu_id']; |
@@ -484,16 +489,18 @@ discard block |
||
484 | 489 | $context['admin_area'] = $admin_include_data['current_area']; |
485 | 490 | |
486 | 491 | // Now - finally - call the right place! |
487 | - if (isset($admin_include_data['file'])) |
|
488 | - require_once($sourcedir . '/' . $admin_include_data['file']); |
|
492 | + if (isset($admin_include_data['file'])) { |
|
493 | + require_once($sourcedir . '/' . $admin_include_data['file']); |
|
494 | + } |
|
489 | 495 | |
490 | 496 | // Get the right callable. |
491 | 497 | $call = call_helper($admin_include_data['function'], true); |
492 | 498 | |
493 | 499 | // Is it valid? |
494 | - if (!empty($call)) |
|
495 | - call_user_func($call); |
|
496 | -} |
|
500 | + if (!empty($call)) { |
|
501 | + call_user_func($call); |
|
502 | + } |
|
503 | + } |
|
497 | 504 | |
498 | 505 | /** |
499 | 506 | * The main administration section. |
@@ -547,13 +554,14 @@ discard block |
||
547 | 554 | |
548 | 555 | $context['sub_template'] = $context['admin_area'] == 'credits' ? 'credits' : 'admin'; |
549 | 556 | $context['page_title'] = $context['admin_area'] == 'credits' ? $txt['support_credits_title'] : $txt['admin_center']; |
550 | - if ($context['admin_area'] != 'credits') |
|
551 | - $context[$context['admin_menu_name']]['tab_data'] = array( |
|
557 | + if ($context['admin_area'] != 'credits') { |
|
558 | + $context[$context['admin_menu_name']]['tab_data'] = array( |
|
552 | 559 | 'title' => $txt['admin_center'], |
553 | 560 | 'help' => '', |
554 | 561 | 'description' => '<strong>' . $txt['hello_guest'] . ' ' . $context['user']['name'] . '!</strong> |
555 | 562 | ' . sprintf($txt['admin_main_welcome'], $txt['admin_center'], $txt['help'], $txt['help']), |
556 | 563 | ); |
564 | + } |
|
557 | 565 | |
558 | 566 | // Lastly, fill in the blanks in the support resources paragraphs. |
559 | 567 | $txt['support_resources_p1'] = sprintf($txt['support_resources_p1'], |
@@ -571,9 +579,10 @@ discard block |
||
571 | 579 | 'https://www.simplemachines.org/redirect/customize_support' |
572 | 580 | ); |
573 | 581 | |
574 | - if ($context['admin_area'] == 'admin') |
|
575 | - loadJavaScriptFile('admin.js', array('defer' => false, 'minimize' => true), 'smf_admin'); |
|
576 | -} |
|
582 | + if ($context['admin_area'] == 'admin') { |
|
583 | + loadJavaScriptFile('admin.js', array('defer' => false, 'minimize' => true), 'smf_admin'); |
|
584 | + } |
|
585 | + } |
|
577 | 586 | |
578 | 587 | /** |
579 | 588 | * Get one of the admin information files from Simple Machines. |
@@ -584,8 +593,9 @@ discard block |
||
584 | 593 | |
585 | 594 | setMemoryLimit('32M'); |
586 | 595 | |
587 | - if (empty($_REQUEST['filename']) || !is_string($_REQUEST['filename'])) |
|
588 | - fatal_lang_error('no_access', false); |
|
596 | + if (empty($_REQUEST['filename']) || !is_string($_REQUEST['filename'])) { |
|
597 | + fatal_lang_error('no_access', false); |
|
598 | + } |
|
589 | 599 | |
590 | 600 | // Strip off the forum cache part or we won't find it... |
591 | 601 | $_REQUEST['filename'] = str_replace($modSettings['browser_cache'], '', $_REQUEST['filename']); |
@@ -600,27 +610,30 @@ discard block |
||
600 | 610 | ) |
601 | 611 | ); |
602 | 612 | |
603 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
604 | - fatal_lang_error('admin_file_not_found', true, array($_REQUEST['filename']), 404); |
|
613 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
614 | + fatal_lang_error('admin_file_not_found', true, array($_REQUEST['filename']), 404); |
|
615 | + } |
|
605 | 616 | |
606 | 617 | list ($file_data, $filetype) = $smcFunc['db_fetch_row']($request); |
607 | 618 | $smcFunc['db_free_result']($request); |
608 | 619 | |
609 | 620 | // @todo Temp |
610 | 621 | // Figure out if sesc is still being used. |
611 | - if (strpos($file_data, ';sesc=') !== false && $filetype == 'text/javascript') |
|
612 | - $file_data = ' |
|
622 | + if (strpos($file_data, ';sesc=') !== false && $filetype == 'text/javascript') { |
|
623 | + $file_data = ' |
|
613 | 624 | if (!(\'smfForum_sessionvar\' in window)) |
614 | 625 | window.smfForum_sessionvar = \'sesc\'; |
615 | 626 | ' . strtr($file_data, array(';sesc=' => ';\' + window.smfForum_sessionvar + \'=')); |
627 | + } |
|
616 | 628 | |
617 | 629 | $context['template_layers'] = array(); |
618 | 630 | // Lets make sure we aren't going to output anything nasty. |
619 | 631 | @ob_end_clean(); |
620 | - if (!empty($modSettings['enableCompressedOutput'])) |
|
621 | - @ob_start('ob_gzhandler'); |
|
622 | - else |
|
623 | - @ob_start(); |
|
632 | + if (!empty($modSettings['enableCompressedOutput'])) { |
|
633 | + @ob_start('ob_gzhandler'); |
|
634 | + } else { |
|
635 | + @ob_start(); |
|
636 | + } |
|
624 | 637 | |
625 | 638 | // Make sure they know what type of file we are. |
626 | 639 | header('content-type: ' . $filetype); |
@@ -660,11 +673,12 @@ discard block |
||
660 | 673 | updateAdminPreferences(); |
661 | 674 | } |
662 | 675 | |
663 | - if (trim($context['search_term']) == '') |
|
664 | - $context['search_results'] = array(); |
|
665 | - else |
|
666 | - call_helper($subActions[$context['search_type']]); |
|
667 | -} |
|
676 | + if (trim($context['search_term']) == '') { |
|
677 | + $context['search_results'] = array(); |
|
678 | + } else { |
|
679 | + call_helper($subActions[$context['search_type']]); |
|
680 | + } |
|
681 | + } |
|
668 | 682 | |
669 | 683 | /** |
670 | 684 | * A complicated but relatively quick internal search. |
@@ -728,8 +742,9 @@ discard block |
||
728 | 742 | |
729 | 743 | loadLanguage(implode('+', $language_files)); |
730 | 744 | |
731 | - foreach ($include_files as $file) |
|
732 | - require_once($sourcedir . '/' . $file . '.php'); |
|
745 | + foreach ($include_files as $file) { |
|
746 | + require_once($sourcedir . '/' . $file . '.php'); |
|
747 | + } |
|
733 | 748 | |
734 | 749 | /* This is the huge array that defines everything... it's a huge array of items formatted as follows: |
735 | 750 | 0 = Language index (Can be array of indexes) to search through for this setting. |
@@ -753,11 +768,12 @@ discard block |
||
753 | 768 | foreach ($section['areas'] as $menu_key => $menu_item) |
754 | 769 | { |
755 | 770 | $search_data['sections'][] = array($menu_item['label'], 'area=' . $menu_key); |
756 | - if (!empty($menu_item['subsections'])) |
|
757 | - foreach ($menu_item['subsections'] as $key => $sublabel) |
|
771 | + if (!empty($menu_item['subsections'])) { |
|
772 | + foreach ($menu_item['subsections'] as $key => $sublabel) |
|
758 | 773 | { |
759 | 774 | if (isset($sublabel['label'])) |
760 | 775 | $search_data['sections'][] = array($sublabel['label'], 'area=' . $menu_key . ';sa=' . $key); |
776 | + } |
|
761 | 777 | } |
762 | 778 | } |
763 | 779 | } |
@@ -767,9 +783,10 @@ discard block |
||
767 | 783 | // Get a list of their variables. |
768 | 784 | $config_vars = $setting_area[0](true); |
769 | 785 | |
770 | - foreach ($config_vars as $var) |
|
771 | - if (!empty($var[1]) && !in_array($var[0], array('permissions', 'switch', 'desc'))) |
|
786 | + foreach ($config_vars as $var) { |
|
787 | + if (!empty($var[1]) && !in_array($var[0], array('permissions', 'switch', 'desc'))) |
|
772 | 788 | $search_data['settings'][] = array($var[(isset($var[2]) && in_array($var[2], array('file', 'db'))) ? 0 : 1], $setting_area[1], 'alttxt' => (isset($var[2]) && in_array($var[2], array('file', 'db'))) || isset($var[3]) ? (in_array($var[2], array('file', 'db')) ? $var[1] : $var[3]) : ''); |
789 | + } |
|
773 | 790 | } |
774 | 791 | |
775 | 792 | $context['page_title'] = $txt['admin_search_results']; |
@@ -782,8 +799,9 @@ discard block |
||
782 | 799 | foreach ($data as $item) |
783 | 800 | { |
784 | 801 | $found = false; |
785 | - if (!is_array($item[0])) |
|
786 | - $item[0] = array($item[0]); |
|
802 | + if (!is_array($item[0])) { |
|
803 | + $item[0] = array($item[0]); |
|
804 | + } |
|
787 | 805 | foreach ($item[0] as $term) |
788 | 806 | { |
789 | 807 | if (stripos($term, $search_term) !== false || (isset($txt[$term]) && stripos($txt[$term], $search_term) !== false) || (isset($txt['setting_' . $term]) && stripos($txt['setting_' . $term], $search_term) !== false)) |
@@ -841,8 +859,9 @@ discard block |
||
841 | 859 | $postVars = explode(' ', $context['search_term']); |
842 | 860 | |
843 | 861 | // Encode the search data. |
844 | - foreach ($postVars as $k => $v) |
|
845 | - $postVars[$k] = urlencode($v); |
|
862 | + foreach ($postVars as $k => $v) { |
|
863 | + $postVars[$k] = urlencode($v); |
|
864 | + } |
|
846 | 865 | |
847 | 866 | // This is what we will send. |
848 | 867 | $postVars = implode('+', $postVars); |
@@ -853,8 +872,9 @@ discard block |
||
853 | 872 | $search_results = fetch_web_data($context['doc_apiurl'] . '?action=query&list=search&srprop=timestamp|snippet&format=xml&srwhat=text&srsearch=' . $postVars); |
854 | 873 | |
855 | 874 | // If we didn't get any xml back we are in trouble - perhaps the doc site is overloaded? |
856 | - if (!$search_results || preg_match('~<' . '\?xml\sversion="\d+\.\d+"\?' . '>\s*(<api>.+?</api>)~is', $search_results, $matches) != true) |
|
857 | - fatal_lang_error('cannot_connect_doc_site'); |
|
875 | + if (!$search_results || preg_match('~<' . '\?xml\sversion="\d+\.\d+"\?' . '>\s*(<api>.+?</api>)~is', $search_results, $matches) != true) { |
|
876 | + fatal_lang_error('cannot_connect_doc_site'); |
|
877 | + } |
|
858 | 878 | |
859 | 879 | $search_results = $matches[1]; |
860 | 880 | |
@@ -866,8 +886,9 @@ discard block |
||
866 | 886 | $results = new xmlArray($search_results, false); |
867 | 887 | |
868 | 888 | // Move through the api layer. |
869 | - if (!$results->exists('api')) |
|
870 | - fatal_lang_error('cannot_connect_doc_site'); |
|
889 | + if (!$results->exists('api')) { |
|
890 | + fatal_lang_error('cannot_connect_doc_site'); |
|
891 | + } |
|
871 | 892 | |
872 | 893 | // Are there actually some results? |
873 | 894 | if ($results->exists('api/query/search/p')) |
@@ -903,8 +924,9 @@ discard block |
||
903 | 924 | ); |
904 | 925 | |
905 | 926 | // If it's not got a sa set it must have come here for first time, pretend error log should be reversed. |
906 | - if (!isset($_REQUEST['sa'])) |
|
907 | - $_REQUEST['desc'] = true; |
|
927 | + if (!isset($_REQUEST['sa'])) { |
|
928 | + $_REQUEST['desc'] = true; |
|
929 | + } |
|
908 | 930 | |
909 | 931 | // Setup some tab stuff. |
910 | 932 | $context[$context['admin_menu_name']]['tab_data'] = array( |
@@ -954,9 +976,10 @@ discard block |
||
954 | 976 | unset($_SESSION['admin_time']); |
955 | 977 | |
956 | 978 | // Clean any admin tokens as well. |
957 | - foreach ($_SESSION['token'] as $key => $token) |
|
958 | - if (strpos($key, '-admin') !== false) |
|
979 | + foreach ($_SESSION['token'] as $key => $token) { |
|
980 | + if (strpos($key, '-admin') !== false) |
|
959 | 981 | unset($_SESSION['token'][$key]); |
982 | + } |
|
960 | 983 | |
961 | 984 | redirectexit(); |
962 | 985 | } |
@@ -15,8 +15,9 @@ discard block |
||
15 | 15 | * @version 2.1 Beta 4 |
16 | 16 | */ |
17 | 17 | |
18 | -if (!defined('SMF')) |
|
18 | +if (!defined('SMF')) { |
|
19 | 19 | die('No direct access...'); |
20 | +} |
|
20 | 21 | |
21 | 22 | /** |
22 | 23 | * The main designating function for modifying profiles. Loads up info, determins what to do, etc. |
@@ -29,18 +30,21 @@ discard block |
||
29 | 30 | global $modSettings, $memberContext, $profile_vars, $post_errors, $smcFunc; |
30 | 31 | |
31 | 32 | // Don't reload this as we may have processed error strings. |
32 | - if (empty($post_errors)) |
|
33 | - loadLanguage('Profile+Drafts'); |
|
33 | + if (empty($post_errors)) { |
|
34 | + loadLanguage('Profile+Drafts'); |
|
35 | + } |
|
34 | 36 | loadTemplate('Profile'); |
35 | 37 | |
36 | 38 | require_once($sourcedir . '/Subs-Menu.php'); |
37 | 39 | |
38 | 40 | // Did we get the user by name... |
39 | - if (isset($_REQUEST['user'])) |
|
40 | - $memberResult = loadMemberData($_REQUEST['user'], true, 'profile'); |
|
41 | + if (isset($_REQUEST['user'])) { |
|
42 | + $memberResult = loadMemberData($_REQUEST['user'], true, 'profile'); |
|
43 | + } |
|
41 | 44 | // ... or by id_member? |
42 | - elseif (!empty($_REQUEST['u'])) |
|
43 | - $memberResult = loadMemberData((int) $_REQUEST['u'], false, 'profile'); |
|
45 | + elseif (!empty($_REQUEST['u'])) { |
|
46 | + $memberResult = loadMemberData((int) $_REQUEST['u'], false, 'profile'); |
|
47 | + } |
|
44 | 48 | // If it was just ?action=profile, edit your own profile, but only if you're not a guest. |
45 | 49 | else |
46 | 50 | { |
@@ -50,8 +54,9 @@ discard block |
||
50 | 54 | } |
51 | 55 | |
52 | 56 | // Check if loadMemberData() has returned a valid result. |
53 | - if (!$memberResult) |
|
54 | - fatal_lang_error('not_a_user', false, 404); |
|
57 | + if (!$memberResult) { |
|
58 | + fatal_lang_error('not_a_user', false, 404); |
|
59 | + } |
|
55 | 60 | |
56 | 61 | // If all went well, we have a valid member ID! |
57 | 62 | list ($memID) = $memberResult; |
@@ -67,8 +72,9 @@ discard block |
||
67 | 72 | |
68 | 73 | // Group management isn't actually a permission. But we need it to be for this, so we need a phantom permission. |
69 | 74 | // And we care about what the current user can do, not what the user whose profile it is. |
70 | - if ($user_info['mod_cache']['gq'] != '0=1') |
|
71 | - $user_info['permissions'][] = 'approve_group_requests'; |
|
75 | + if ($user_info['mod_cache']['gq'] != '0=1') { |
|
76 | + $user_info['permissions'][] = 'approve_group_requests'; |
|
77 | + } |
|
72 | 78 | |
73 | 79 | // If paid subscriptions are enabled, make sure we actually have at least one subscription available... |
74 | 80 | $context['subs_available'] = false; |
@@ -436,21 +442,25 @@ discard block |
||
436 | 442 | foreach ($section['areas'] as $area_id => $area) |
437 | 443 | { |
438 | 444 | // If it said no permissions that meant it wasn't valid! |
439 | - if (empty($area['permission'][$context['user']['is_owner'] ? 'own' : 'any'])) |
|
440 | - $profile_areas[$section_id]['areas'][$area_id]['enabled'] = false; |
|
445 | + if (empty($area['permission'][$context['user']['is_owner'] ? 'own' : 'any'])) { |
|
446 | + $profile_areas[$section_id]['areas'][$area_id]['enabled'] = false; |
|
447 | + } |
|
441 | 448 | // Otherwise pick the right set. |
442 | - else |
|
443 | - $profile_areas[$section_id]['areas'][$area_id]['permission'] = $area['permission'][$context['user']['is_owner'] ? 'own' : 'any']; |
|
449 | + else { |
|
450 | + $profile_areas[$section_id]['areas'][$area_id]['permission'] = $area['permission'][$context['user']['is_owner'] ? 'own' : 'any']; |
|
451 | + } |
|
444 | 452 | |
445 | 453 | // Password required in most cases |
446 | - if (!empty($area['password'])) |
|
447 | - $context['password_areas'][] = $area_id; |
|
454 | + if (!empty($area['password'])) { |
|
455 | + $context['password_areas'][] = $area_id; |
|
456 | + } |
|
448 | 457 | } |
449 | 458 | } |
450 | 459 | |
451 | 460 | // Is there an updated message to show? |
452 | - if (isset($_GET['updated'])) |
|
453 | - $context['profile_updated'] = $txt['profile_updated_own']; |
|
461 | + if (isset($_GET['updated'])) { |
|
462 | + $context['profile_updated'] = $txt['profile_updated_own']; |
|
463 | + } |
|
454 | 464 | |
455 | 465 | // Set a few options for the menu. |
456 | 466 | $menuOptions = array( |
@@ -465,8 +475,9 @@ discard block |
||
465 | 475 | $profile_include_data = createMenu($profile_areas, $menuOptions); |
466 | 476 | |
467 | 477 | // No menu means no access. |
468 | - if (!$profile_include_data && (!$user_info['is_guest'] || validateSession())) |
|
469 | - fatal_lang_error('no_access', false); |
|
478 | + if (!$profile_include_data && (!$user_info['is_guest'] || validateSession())) { |
|
479 | + fatal_lang_error('no_access', false); |
|
480 | + } |
|
470 | 481 | |
471 | 482 | // Make a note of the Unique ID for this menu. |
472 | 483 | $context['profile_menu_id'] = $context['max_menu_id']; |
@@ -492,8 +503,9 @@ discard block |
||
492 | 503 | if ($current_area == $area_id) |
493 | 504 | { |
494 | 505 | // This can't happen - but is a security check. |
495 | - if ((isset($section['enabled']) && $section['enabled'] == false) || (isset($area['enabled']) && $area['enabled'] == false)) |
|
496 | - fatal_lang_error('no_access', false); |
|
506 | + if ((isset($section['enabled']) && $section['enabled'] == false) || (isset($area['enabled']) && $area['enabled'] == false)) { |
|
507 | + fatal_lang_error('no_access', false); |
|
508 | + } |
|
497 | 509 | |
498 | 510 | // Are we saving data in a valid area? |
499 | 511 | if (isset($area['sc']) && (isset($_REQUEST['save']) || $context['do_preview'])) |
@@ -512,12 +524,14 @@ discard block |
||
512 | 524 | } |
513 | 525 | |
514 | 526 | // Does this require session validating? |
515 | - if (!empty($area['validate']) || (isset($_REQUEST['save']) && !$context['user']['is_owner'])) |
|
516 | - $security_checks['validate'] = true; |
|
527 | + if (!empty($area['validate']) || (isset($_REQUEST['save']) && !$context['user']['is_owner'])) { |
|
528 | + $security_checks['validate'] = true; |
|
529 | + } |
|
517 | 530 | |
518 | 531 | // Permissions for good measure. |
519 | - if (!empty($profile_include_data['permission'])) |
|
520 | - $security_checks['permission'] = $profile_include_data['permission']; |
|
532 | + if (!empty($profile_include_data['permission'])) { |
|
533 | + $security_checks['permission'] = $profile_include_data['permission']; |
|
534 | + } |
|
521 | 535 | |
522 | 536 | // Either way got something. |
523 | 537 | $found_area = true; |
@@ -526,21 +540,26 @@ discard block |
||
526 | 540 | } |
527 | 541 | |
528 | 542 | // Oh dear, some serious security lapse is going on here... we'll put a stop to that! |
529 | - if (!$found_area) |
|
530 | - fatal_lang_error('no_access', false); |
|
543 | + if (!$found_area) { |
|
544 | + fatal_lang_error('no_access', false); |
|
545 | + } |
|
531 | 546 | |
532 | 547 | // Release this now. |
533 | 548 | unset($profile_areas); |
534 | 549 | |
535 | 550 | // Now the context is setup have we got any security checks to carry out additional to that above? |
536 | - if (isset($security_checks['session'])) |
|
537 | - checkSession($security_checks['session']); |
|
538 | - if (isset($security_checks['validate'])) |
|
539 | - validateSession(); |
|
540 | - if (isset($security_checks['validateToken'])) |
|
541 | - validateToken($token_name, $token_type); |
|
542 | - if (isset($security_checks['permission'])) |
|
543 | - isAllowedTo($security_checks['permission']); |
|
551 | + if (isset($security_checks['session'])) { |
|
552 | + checkSession($security_checks['session']); |
|
553 | + } |
|
554 | + if (isset($security_checks['validate'])) { |
|
555 | + validateSession(); |
|
556 | + } |
|
557 | + if (isset($security_checks['validateToken'])) { |
|
558 | + validateToken($token_name, $token_type); |
|
559 | + } |
|
560 | + if (isset($security_checks['permission'])) { |
|
561 | + isAllowedTo($security_checks['permission']); |
|
562 | + } |
|
544 | 563 | |
545 | 564 | // Create a token if needed. |
546 | 565 | if (isset($security_checks['needsToken']) || isset($security_checks['validateToken'])) |
@@ -550,8 +569,9 @@ discard block |
||
550 | 569 | } |
551 | 570 | |
552 | 571 | // File to include? |
553 | - if (isset($profile_include_data['file'])) |
|
554 | - require_once($sourcedir . '/' . $profile_include_data['file']); |
|
572 | + if (isset($profile_include_data['file'])) { |
|
573 | + require_once($sourcedir . '/' . $profile_include_data['file']); |
|
574 | + } |
|
555 | 575 | |
556 | 576 | // Build the link tree. |
557 | 577 | $context['linktree'][] = array( |
@@ -559,17 +579,19 @@ discard block |
||
559 | 579 | 'name' => sprintf($txt['profile_of_username'], $context['member']['name']), |
560 | 580 | ); |
561 | 581 | |
562 | - if (!empty($profile_include_data['label'])) |
|
563 | - $context['linktree'][] = array( |
|
582 | + if (!empty($profile_include_data['label'])) { |
|
583 | + $context['linktree'][] = array( |
|
564 | 584 | 'url' => $scripturl . '?action=profile' . ($memID != $user_info['id'] ? ';u=' . $memID : '') . ';area=' . $profile_include_data['current_area'], |
565 | 585 | 'name' => $profile_include_data['label'], |
566 | 586 | ); |
587 | + } |
|
567 | 588 | |
568 | - if (!empty($profile_include_data['current_subsection']) && $profile_include_data['subsections'][$profile_include_data['current_subsection']][0] != $profile_include_data['label']) |
|
569 | - $context['linktree'][] = array( |
|
589 | + if (!empty($profile_include_data['current_subsection']) && $profile_include_data['subsections'][$profile_include_data['current_subsection']][0] != $profile_include_data['label']) { |
|
590 | + $context['linktree'][] = array( |
|
570 | 591 | 'url' => $scripturl . '?action=profile' . ($memID != $user_info['id'] ? ';u=' . $memID : '') . ';area=' . $profile_include_data['current_area'] . ';sa=' . $profile_include_data['current_subsection'], |
571 | 592 | 'name' => $profile_include_data['subsections'][$profile_include_data['current_subsection']][0], |
572 | 593 | ); |
594 | + } |
|
573 | 595 | |
574 | 596 | // Set the template for this area and add the profile layer. |
575 | 597 | $context['sub_template'] = $profile_include_data['function']; |
@@ -595,12 +617,14 @@ discard block |
||
595 | 617 | if ($check_password) |
596 | 618 | { |
597 | 619 | // Check to ensure we're forcing SSL for authentication |
598 | - if (!empty($modSettings['force_ssl']) && empty($maintenance) && !httpsOn()) |
|
599 | - fatal_lang_error('login_ssl_required'); |
|
620 | + if (!empty($modSettings['force_ssl']) && empty($maintenance) && !httpsOn()) { |
|
621 | + fatal_lang_error('login_ssl_required'); |
|
622 | + } |
|
600 | 623 | |
601 | 624 | // You didn't even enter a password! |
602 | - if (trim($_POST['oldpasswrd']) == '') |
|
603 | - $post_errors[] = 'no_password'; |
|
625 | + if (trim($_POST['oldpasswrd']) == '') { |
|
626 | + $post_errors[] = 'no_password'; |
|
627 | + } |
|
604 | 628 | |
605 | 629 | // Since the password got modified due to all the $_POST cleaning, lets undo it so we can get the correct password |
606 | 630 | $_POST['oldpasswrd'] = un_htmlspecialchars($_POST['oldpasswrd']); |
@@ -609,42 +633,43 @@ discard block |
||
609 | 633 | $good_password = in_array(true, call_integration_hook('integrate_verify_password', array($cur_profile['member_name'], $_POST['oldpasswrd'], false)), true); |
610 | 634 | |
611 | 635 | // Bad password!!! |
612 | - if (!$good_password && !hash_verify_password($user_profile[$memID]['member_name'], un_htmlspecialchars(stripslashes($_POST['oldpasswrd'])), $user_info['passwd'])) |
|
613 | - $post_errors[] = 'bad_password'; |
|
636 | + if (!$good_password && !hash_verify_password($user_profile[$memID]['member_name'], un_htmlspecialchars(stripslashes($_POST['oldpasswrd'])), $user_info['passwd'])) { |
|
637 | + $post_errors[] = 'bad_password'; |
|
638 | + } |
|
614 | 639 | |
615 | 640 | // Warn other elements not to jump the gun and do custom changes! |
616 | - if (in_array('bad_password', $post_errors)) |
|
617 | - $context['password_auth_failed'] = true; |
|
641 | + if (in_array('bad_password', $post_errors)) { |
|
642 | + $context['password_auth_failed'] = true; |
|
643 | + } |
|
618 | 644 | } |
619 | 645 | |
620 | 646 | // Change the IP address in the database. |
621 | - if ($context['user']['is_owner']) |
|
622 | - $profile_vars['member_ip'] = $user_info['ip']; |
|
647 | + if ($context['user']['is_owner']) { |
|
648 | + $profile_vars['member_ip'] = $user_info['ip']; |
|
649 | + } |
|
623 | 650 | |
624 | 651 | // Now call the sub-action function... |
625 | 652 | if ($current_area == 'activateaccount') |
626 | 653 | { |
627 | - if (empty($post_errors)) |
|
628 | - activateAccount($memID); |
|
629 | - } |
|
630 | - elseif ($current_area == 'deleteaccount') |
|
654 | + if (empty($post_errors)) { |
|
655 | + activateAccount($memID); |
|
656 | + } |
|
657 | + } elseif ($current_area == 'deleteaccount') |
|
631 | 658 | { |
632 | 659 | if (empty($post_errors)) |
633 | 660 | { |
634 | 661 | deleteAccount2($memID); |
635 | 662 | redirectexit(); |
636 | 663 | } |
637 | - } |
|
638 | - elseif ($current_area == 'groupmembership' && empty($post_errors)) |
|
664 | + } elseif ($current_area == 'groupmembership' && empty($post_errors)) |
|
639 | 665 | { |
640 | 666 | $msg = groupMembership2($profile_vars, $post_errors, $memID); |
641 | 667 | |
642 | 668 | // Whatever we've done, we have nothing else to do here... |
643 | 669 | redirectexit('action=profile' . ($context['user']['is_owner'] ? '' : ';u=' . $memID) . ';area=groupmembership' . (!empty($msg) ? ';msg=' . $msg : '')); |
644 | - } |
|
645 | - elseif (in_array($current_area, array('account', 'forumprofile', 'theme'))) |
|
646 | - saveProfileFields(); |
|
647 | - else |
|
670 | + } elseif (in_array($current_area, array('account', 'forumprofile', 'theme'))) { |
|
671 | + saveProfileFields(); |
|
672 | + } else |
|
648 | 673 | { |
649 | 674 | $force_redirect = true; |
650 | 675 | // Ensure we include this. |
@@ -660,34 +685,36 @@ discard block |
||
660 | 685 | // Load the language file so we can give a nice explanation of the errors. |
661 | 686 | loadLanguage('Errors'); |
662 | 687 | $context['post_errors'] = $post_errors; |
663 | - } |
|
664 | - elseif (!empty($profile_vars)) |
|
688 | + } elseif (!empty($profile_vars)) |
|
665 | 689 | { |
666 | 690 | // If we've changed the password, notify any integration that may be listening in. |
667 | - if (isset($profile_vars['passwd'])) |
|
668 | - call_integration_hook('integrate_reset_pass', array($cur_profile['member_name'], $cur_profile['member_name'], $_POST['passwrd2'])); |
|
691 | + if (isset($profile_vars['passwd'])) { |
|
692 | + call_integration_hook('integrate_reset_pass', array($cur_profile['member_name'], $cur_profile['member_name'], $_POST['passwrd2'])); |
|
693 | + } |
|
669 | 694 | |
670 | 695 | updateMemberData($memID, $profile_vars); |
671 | 696 | |
672 | 697 | // What if this is the newest member? |
673 | - if ($modSettings['latestMember'] == $memID) |
|
674 | - updateStats('member'); |
|
675 | - elseif (isset($profile_vars['real_name'])) |
|
676 | - updateSettings(array('memberlist_updated' => time())); |
|
698 | + if ($modSettings['latestMember'] == $memID) { |
|
699 | + updateStats('member'); |
|
700 | + } elseif (isset($profile_vars['real_name'])) { |
|
701 | + updateSettings(array('memberlist_updated' => time())); |
|
702 | + } |
|
677 | 703 | |
678 | 704 | // If the member changed his/her birthdate, update calendar statistics. |
679 | - if (isset($profile_vars['birthdate']) || isset($profile_vars['real_name'])) |
|
680 | - updateSettings(array( |
|
705 | + if (isset($profile_vars['birthdate']) || isset($profile_vars['real_name'])) { |
|
706 | + updateSettings(array( |
|
681 | 707 | 'calendar_updated' => time(), |
682 | 708 | )); |
709 | + } |
|
683 | 710 | |
684 | 711 | // Anything worth logging? |
685 | 712 | if (!empty($context['log_changes']) && !empty($modSettings['modlog_enabled'])) |
686 | 713 | { |
687 | 714 | $log_changes = array(); |
688 | 715 | require_once($sourcedir . '/Logging.php'); |
689 | - foreach ($context['log_changes'] as $k => $v) |
|
690 | - $log_changes[] = array( |
|
716 | + foreach ($context['log_changes'] as $k => $v) { |
|
717 | + $log_changes[] = array( |
|
691 | 718 | 'action' => $k, |
692 | 719 | 'log_type' => 'user', |
693 | 720 | 'extra' => array_merge($v, array( |
@@ -695,14 +722,16 @@ discard block |
||
695 | 722 | 'member_affected' => $memID, |
696 | 723 | )), |
697 | 724 | ); |
725 | + } |
|
698 | 726 | |
699 | 727 | logActions($log_changes); |
700 | 728 | } |
701 | 729 | |
702 | 730 | // Have we got any post save functions to execute? |
703 | - if (!empty($context['profile_execute_on_save'])) |
|
704 | - foreach ($context['profile_execute_on_save'] as $saveFunc) |
|
731 | + if (!empty($context['profile_execute_on_save'])) { |
|
732 | + foreach ($context['profile_execute_on_save'] as $saveFunc) |
|
705 | 733 | $saveFunc(); |
734 | + } |
|
706 | 735 | |
707 | 736 | // Let them know it worked! |
708 | 737 | $context['profile_updated'] = $context['user']['is_owner'] ? $txt['profile_updated_own'] : sprintf($txt['profile_updated_else'], $cur_profile['member_name']); |
@@ -716,27 +745,31 @@ discard block |
||
716 | 745 | if (!empty($post_errors)) |
717 | 746 | { |
718 | 747 | // Set all the errors so the template knows what went wrong. |
719 | - foreach ($post_errors as $error_type) |
|
720 | - $context['modify_error'][$error_type] = true; |
|
748 | + foreach ($post_errors as $error_type) { |
|
749 | + $context['modify_error'][$error_type] = true; |
|
750 | + } |
|
721 | 751 | } |
722 | 752 | // If it's you then we should redirect upon save. |
723 | - elseif (!empty($profile_vars) && $context['user']['is_owner'] && !$context['do_preview']) |
|
724 | - redirectexit('action=profile;area=' . $current_area . (!empty($current_sa) ? ';sa=' . $current_sa : '') . ';updated'); |
|
725 | - elseif (!empty($force_redirect)) |
|
726 | - redirectexit('action=profile' . ($context['user']['is_owner'] ? '' : ';u=' . $memID) . ';area=' . $current_area); |
|
753 | + elseif (!empty($profile_vars) && $context['user']['is_owner'] && !$context['do_preview']) { |
|
754 | + redirectexit('action=profile;area=' . $current_area . (!empty($current_sa) ? ';sa=' . $current_sa : '') . ';updated'); |
|
755 | + } elseif (!empty($force_redirect)) { |
|
756 | + redirectexit('action=profile' . ($context['user']['is_owner'] ? '' : ';u=' . $memID) . ';area=' . $current_area); |
|
757 | + } |
|
727 | 758 | |
728 | 759 | |
729 | 760 | // Get the right callable. |
730 | 761 | $call = call_helper($profile_include_data['function'], true); |
731 | 762 | |
732 | 763 | // Is it valid? |
733 | - if (!empty($call)) |
|
734 | - call_user_func($call, $memID); |
|
764 | + if (!empty($call)) { |
|
765 | + call_user_func($call, $memID); |
|
766 | + } |
|
735 | 767 | |
736 | 768 | // Set the page title if it's not already set... |
737 | - if (!isset($context['page_title'])) |
|
738 | - $context['page_title'] = $txt['profile'] . (isset($txt[$current_area]) ? ' - ' . $txt[$current_area] : ''); |
|
739 | -} |
|
769 | + if (!isset($context['page_title'])) { |
|
770 | + $context['page_title'] = $txt['profile'] . (isset($txt[$current_area]) ? ' - ' . $txt[$current_area] : ''); |
|
771 | + } |
|
772 | + } |
|
740 | 773 | |
741 | 774 | /** |
742 | 775 | * Set up the requirements for the profile popup - the area that is shown as the popup menu for the current user. |
@@ -859,16 +892,18 @@ discard block |
||
859 | 892 | if (!allowedTo('admin_forum') && $area != 'register') |
860 | 893 | { |
861 | 894 | // If it's the owner they can see two types of private fields, regardless. |
862 | - if ($memID == $user_info['id']) |
|
863 | - $where .= $area == 'summary' ? ' AND private < 3' : ' AND (private = 0 OR private = 2)'; |
|
864 | - else |
|
865 | - $where .= $area == 'summary' ? ' AND private < 2' : ' AND private = 0'; |
|
895 | + if ($memID == $user_info['id']) { |
|
896 | + $where .= $area == 'summary' ? ' AND private < 3' : ' AND (private = 0 OR private = 2)'; |
|
897 | + } else { |
|
898 | + $where .= $area == 'summary' ? ' AND private < 2' : ' AND private = 0'; |
|
899 | + } |
|
866 | 900 | } |
867 | 901 | |
868 | - if ($area == 'register') |
|
869 | - $where .= ' AND show_reg != 0'; |
|
870 | - elseif ($area != 'summary') |
|
871 | - $where .= ' AND show_profile = {string:area}'; |
|
902 | + if ($area == 'register') { |
|
903 | + $where .= ' AND show_reg != 0'; |
|
904 | + } elseif ($area != 'summary') { |
|
905 | + $where .= ' AND show_profile = {string:area}'; |
|
906 | + } |
|
872 | 907 | |
873 | 908 | // Load all the relevant fields - and data. |
874 | 909 | $request = $smcFunc['db_query']('', ' |
@@ -893,8 +928,9 @@ discard block |
||
893 | 928 | $fieldOptions = explode(',', $row['field_options']); |
894 | 929 | foreach ($fieldOptions as $k => $v) |
895 | 930 | { |
896 | - if (empty($currentKey)) |
|
897 | - $currentKey = $v === $value ? $k : 0; |
|
931 | + if (empty($currentKey)) { |
|
932 | + $currentKey = $v === $value ? $k : 0; |
|
933 | + } |
|
898 | 934 | } |
899 | 935 | } |
900 | 936 | |
@@ -906,13 +942,15 @@ discard block |
||
906 | 942 | if (isset($_POST['customfield']) && isset($_POST['customfield'][$row['col_name']])) |
907 | 943 | { |
908 | 944 | $value = $smcFunc['htmlspecialchars']($_POST['customfield'][$row['col_name']]); |
909 | - if (in_array($row['field_type'], array('select', 'radio'))) |
|
910 | - $value = ($options = explode(',', $row['field_options'])) && isset($options[$value]) ? $options[$value] : ''; |
|
945 | + if (in_array($row['field_type'], array('select', 'radio'))) { |
|
946 | + $value = ($options = explode(',', $row['field_options'])) && isset($options[$value]) ? $options[$value] : ''; |
|
947 | + } |
|
911 | 948 | } |
912 | 949 | |
913 | 950 | // Don't show the "disabled" option for the "gender" field if we are on the "summary" area. |
914 | - if ($area == 'summary' && $row['col_name'] == 'cust_gender' && $value == 'None') |
|
915 | - continue; |
|
951 | + if ($area == 'summary' && $row['col_name'] == 'cust_gender' && $value == 'None') { |
|
952 | + continue; |
|
953 | + } |
|
916 | 954 | |
917 | 955 | // HTML for the input form. |
918 | 956 | $output_html = $value; |
@@ -921,8 +959,7 @@ discard block |
||
921 | 959 | $true = (!$exists && $row['default_value']) || $value; |
922 | 960 | $input_html = '<input type="checkbox" name="customfield[' . $row['col_name'] . ']" id="customfield[' . $row['col_name'] . ']"' . ($true ? ' checked' : '') . '>'; |
923 | 961 | $output_html = $true ? $txt['yes'] : $txt['no']; |
924 | - } |
|
925 | - elseif ($row['field_type'] == 'select') |
|
962 | + } elseif ($row['field_type'] == 'select') |
|
926 | 963 | { |
927 | 964 | $input_html = '<select name="customfield[' . $row['col_name'] . ']" id="customfield[' . $row['col_name'] . ']"><option value="-1"></option>'; |
928 | 965 | $options = explode(',', $row['field_options']); |
@@ -930,13 +967,13 @@ discard block |
||
930 | 967 | { |
931 | 968 | $true = (!$exists && $row['default_value'] == $v) || $value == $v; |
932 | 969 | $input_html .= '<option value="' . $k . '"' . ($true ? ' selected' : '') . '>' . $v . '</option>'; |
933 | - if ($true) |
|
934 | - $output_html = $v; |
|
970 | + if ($true) { |
|
971 | + $output_html = $v; |
|
972 | + } |
|
935 | 973 | } |
936 | 974 | |
937 | 975 | $input_html .= '</select>'; |
938 | - } |
|
939 | - elseif ($row['field_type'] == 'radio') |
|
976 | + } elseif ($row['field_type'] == 'radio') |
|
940 | 977 | { |
941 | 978 | $input_html = '<fieldset>'; |
942 | 979 | $options = explode(',', $row['field_options']); |
@@ -944,37 +981,38 @@ discard block |
||
944 | 981 | { |
945 | 982 | $true = (!$exists && $row['default_value'] == $v) || $value == $v; |
946 | 983 | $input_html .= '<label for="customfield_' . $row['col_name'] . '_' . $k . '"><input type="radio" name="customfield[' . $row['col_name'] . ']" id="customfield_' . $row['col_name'] . '_' . $k . '" value="' . $k . '"' . ($true ? ' checked' : '') . '>' . $v . '</label><br>'; |
947 | - if ($true) |
|
948 | - $output_html = $v; |
|
984 | + if ($true) { |
|
985 | + $output_html = $v; |
|
986 | + } |
|
949 | 987 | } |
950 | 988 | $input_html .= '</fieldset>'; |
951 | - } |
|
952 | - elseif ($row['field_type'] == 'text') |
|
989 | + } elseif ($row['field_type'] == 'text') |
|
953 | 990 | { |
954 | 991 | $input_html = '<input type="text" name="customfield[' . $row['col_name'] . ']" id="customfield[' . $row['col_name'] . ']"' . ($row['field_length'] != 0 ? ' maxlength="' . $row['field_length'] . '"' : '') . ' size="' . ($row['field_length'] == 0 || $row['field_length'] >= 50 ? 50 : ($row['field_length'] > 30 ? 30 : ($row['field_length'] > 10 ? 20 : 10))) . '" value="' . un_htmlspecialchars($value) . '"' . ($row['show_reg'] == 2 ? ' required' : '') . '>'; |
955 | - } |
|
956 | - else |
|
992 | + } else |
|
957 | 993 | { |
958 | 994 | @list ($rows, $cols) = @explode(',', $row['default_value']); |
959 | 995 | $input_html = '<textarea name="customfield[' . $row['col_name'] . ']" id="customfield[' . $row['col_name'] . ']"' . (!empty($rows) ? ' rows="' . $rows . '"' : '') . (!empty($cols) ? ' cols="' . $cols . '"' : '') . ($row['show_reg'] == 2 ? ' required' : '') . '>' . un_htmlspecialchars($value) . '</textarea>'; |
960 | 996 | } |
961 | 997 | |
962 | 998 | // Parse BBCode |
963 | - if ($row['bbc']) |
|
964 | - $output_html = parse_bbc($output_html); |
|
965 | - elseif ($row['field_type'] == 'textarea') |
|
966 | - // Allow for newlines at least |
|
999 | + if ($row['bbc']) { |
|
1000 | + $output_html = parse_bbc($output_html); |
|
1001 | + } elseif ($row['field_type'] == 'textarea') { |
|
1002 | + // Allow for newlines at least |
|
967 | 1003 | $output_html = strtr($output_html, array("\n" => '<br>')); |
1004 | + } |
|
968 | 1005 | |
969 | 1006 | // Enclosing the user input within some other text? |
970 | - if (!empty($row['enclose']) && !empty($output_html)) |
|
971 | - $output_html = strtr($row['enclose'], array( |
|
1007 | + if (!empty($row['enclose']) && !empty($output_html)) { |
|
1008 | + $output_html = strtr($row['enclose'], array( |
|
972 | 1009 | '{SCRIPTURL}' => $scripturl, |
973 | 1010 | '{IMAGES_URL}' => $settings['images_url'], |
974 | 1011 | '{DEFAULT_IMAGES_URL}' => $settings['default_images_url'], |
975 | 1012 | '{INPUT}' => un_htmlspecialchars($output_html), |
976 | 1013 | '{KEY}' => $currentKey |
977 | 1014 | )); |
1015 | + } |
|
978 | 1016 | |
979 | 1017 | $context['custom_fields'][] = array( |
980 | 1018 | 'name' => $row['field_name'], |
@@ -14,8 +14,9 @@ discard block |
||
14 | 14 | * @version 2.1 Beta 4 |
15 | 15 | */ |
16 | 16 | |
17 | -if (!defined('SMF')) |
|
17 | +if (!defined('SMF')) { |
|
18 | 18 | die('No direct access...'); |
19 | +} |
|
19 | 20 | |
20 | 21 | /** |
21 | 22 | * This function makes sure the requested subaction does exists, if it doesn't, it sets a default action or. |
@@ -206,16 +207,18 @@ discard block |
||
206 | 207 | { |
207 | 208 | $all_zones = timezone_identifiers_list(); |
208 | 209 | // Make sure we set the value to the same as the printed value. |
209 | - foreach ($all_zones as $zone) |
|
210 | - $config_vars['default_timezone'][2][$zone] = $zone; |
|
210 | + foreach ($all_zones as $zone) { |
|
211 | + $config_vars['default_timezone'][2][$zone] = $zone; |
|
212 | + } |
|
213 | + } else { |
|
214 | + unset($config_vars['default_timezone']); |
|
211 | 215 | } |
212 | - else |
|
213 | - unset($config_vars['default_timezone']); |
|
214 | 216 | |
215 | 217 | call_integration_hook('integrate_modify_basic_settings', array(&$config_vars)); |
216 | 218 | |
217 | - if ($return_config) |
|
218 | - return $config_vars; |
|
219 | + if ($return_config) { |
|
220 | + return $config_vars; |
|
221 | + } |
|
219 | 222 | |
220 | 223 | // Saving? |
221 | 224 | if (isset($_GET['save'])) |
@@ -223,8 +226,9 @@ discard block |
||
223 | 226 | checkSession(); |
224 | 227 | |
225 | 228 | // Prevent absurd boundaries here - make it a day tops. |
226 | - if (isset($_POST['lastActive'])) |
|
227 | - $_POST['lastActive'] = min((int) $_POST['lastActive'], 1440); |
|
229 | + if (isset($_POST['lastActive'])) { |
|
230 | + $_POST['lastActive'] = min((int) $_POST['lastActive'], 1440); |
|
231 | + } |
|
228 | 232 | |
229 | 233 | call_integration_hook('integrate_save_basic_settings'); |
230 | 234 | |
@@ -232,8 +236,9 @@ discard block |
||
232 | 236 | $_SESSION['adm-save'] = true; |
233 | 237 | |
234 | 238 | // Do a bit of housekeeping |
235 | - if (empty($_POST['minimize_files'])) |
|
236 | - deleteAllMinified(); |
|
239 | + if (empty($_POST['minimize_files'])) { |
|
240 | + deleteAllMinified(); |
|
241 | + } |
|
237 | 242 | |
238 | 243 | writeLog(); |
239 | 244 | redirectexit('action=admin;area=featuresettings;sa=basic'); |
@@ -273,8 +278,9 @@ discard block |
||
273 | 278 | |
274 | 279 | call_integration_hook('integrate_modify_bbc_settings', array(&$config_vars)); |
275 | 280 | |
276 | - if ($return_config) |
|
277 | - return $config_vars; |
|
281 | + if ($return_config) { |
|
282 | + return $config_vars; |
|
283 | + } |
|
278 | 284 | |
279 | 285 | // Setup the template. |
280 | 286 | require_once($sourcedir . '/ManageServer.php'); |
@@ -291,13 +297,15 @@ discard block |
||
291 | 297 | |
292 | 298 | // Clean up the tags. |
293 | 299 | $bbcTags = array(); |
294 | - foreach (parse_bbc(false) as $tag) |
|
295 | - $bbcTags[] = $tag['tag']; |
|
300 | + foreach (parse_bbc(false) as $tag) { |
|
301 | + $bbcTags[] = $tag['tag']; |
|
302 | + } |
|
296 | 303 | |
297 | - if (!isset($_POST['disabledBBC_enabledTags'])) |
|
298 | - $_POST['disabledBBC_enabledTags'] = array(); |
|
299 | - elseif (!is_array($_POST['disabledBBC_enabledTags'])) |
|
300 | - $_POST['disabledBBC_enabledTags'] = array($_POST['disabledBBC_enabledTags']); |
|
304 | + if (!isset($_POST['disabledBBC_enabledTags'])) { |
|
305 | + $_POST['disabledBBC_enabledTags'] = array(); |
|
306 | + } elseif (!is_array($_POST['disabledBBC_enabledTags'])) { |
|
307 | + $_POST['disabledBBC_enabledTags'] = array($_POST['disabledBBC_enabledTags']); |
|
308 | + } |
|
301 | 309 | // Work out what is actually disabled! |
302 | 310 | $_POST['disabledBBC'] = implode(',', array_diff($bbcTags, $_POST['disabledBBC_enabledTags'])); |
303 | 311 | |
@@ -341,8 +349,9 @@ discard block |
||
341 | 349 | |
342 | 350 | call_integration_hook('integrate_layout_settings', array(&$config_vars)); |
343 | 351 | |
344 | - if ($return_config) |
|
345 | - return $config_vars; |
|
352 | + if ($return_config) { |
|
353 | + return $config_vars; |
|
354 | + } |
|
346 | 355 | |
347 | 356 | // Saving? |
348 | 357 | if (isset($_GET['save'])) |
@@ -382,8 +391,9 @@ discard block |
||
382 | 391 | |
383 | 392 | call_integration_hook('integrate_likes_settings', array(&$config_vars)); |
384 | 393 | |
385 | - if ($return_config) |
|
386 | - return $config_vars; |
|
394 | + if ($return_config) { |
|
395 | + return $config_vars; |
|
396 | + } |
|
387 | 397 | |
388 | 398 | // Saving? |
389 | 399 | if (isset($_GET['save'])) |
@@ -421,8 +431,9 @@ discard block |
||
421 | 431 | |
422 | 432 | call_integration_hook('integrate_mentions_settings', array(&$config_vars)); |
423 | 433 | |
424 | - if ($return_config) |
|
425 | - return $config_vars; |
|
434 | + if ($return_config) { |
|
435 | + return $config_vars; |
|
436 | + } |
|
426 | 437 | |
427 | 438 | // Saving? |
428 | 439 | if (isset($_GET['save'])) |
@@ -466,8 +477,8 @@ discard block |
||
466 | 477 | 'enable' => array('check', 'warning_enable'), |
467 | 478 | ); |
468 | 479 | |
469 | - if (!empty($modSettings['warning_settings']) && $currently_enabled) |
|
470 | - $config_vars += array( |
|
480 | + if (!empty($modSettings['warning_settings']) && $currently_enabled) { |
|
481 | + $config_vars += array( |
|
471 | 482 | '', |
472 | 483 | array('int', 'warning_watch', 'subtext' => $txt['setting_warning_watch_note'] . ' ' . $txt['zero_to_disable']), |
473 | 484 | 'moderate' => array('int', 'warning_moderate', 'subtext' => $txt['setting_warning_moderate_note'] . ' ' . $txt['zero_to_disable']), |
@@ -476,15 +487,18 @@ discard block |
||
476 | 487 | 'rem2' => array('int', 'warning_decrement', 'subtext' => $txt['setting_warning_decrement_note'] . ' ' . $txt['zero_to_disable']), |
477 | 488 | array('permissions', 'view_warning'), |
478 | 489 | ); |
490 | + } |
|
479 | 491 | |
480 | 492 | call_integration_hook('integrate_warning_settings', array(&$config_vars)); |
481 | 493 | |
482 | - if ($return_config) |
|
483 | - return $config_vars; |
|
494 | + if ($return_config) { |
|
495 | + return $config_vars; |
|
496 | + } |
|
484 | 497 | |
485 | 498 | // Cannot use moderation if post moderation is not enabled. |
486 | - if (!$modSettings['postmod_active']) |
|
487 | - unset($config_vars['moderate']); |
|
499 | + if (!$modSettings['postmod_active']) { |
|
500 | + unset($config_vars['moderate']); |
|
501 | + } |
|
488 | 502 | |
489 | 503 | // Will need the utility functions from here. |
490 | 504 | require_once($sourcedir . '/ManageServer.php'); |
@@ -509,16 +523,16 @@ discard block |
||
509 | 523 | 'warning_watch' => 10, |
510 | 524 | 'warning_mute' => 60, |
511 | 525 | ); |
512 | - if ($modSettings['postmod_active']) |
|
513 | - $vars['warning_moderate'] = 35; |
|
526 | + if ($modSettings['postmod_active']) { |
|
527 | + $vars['warning_moderate'] = 35; |
|
528 | + } |
|
514 | 529 | |
515 | 530 | foreach ($vars as $var => $value) |
516 | 531 | { |
517 | 532 | $config_vars[] = array('int', $var); |
518 | 533 | $_POST[$var] = $value; |
519 | 534 | } |
520 | - } |
|
521 | - else |
|
535 | + } else |
|
522 | 536 | { |
523 | 537 | $_POST['warning_watch'] = min($_POST['warning_watch'], 100); |
524 | 538 | $_POST['warning_moderate'] = $modSettings['postmod_active'] ? min($_POST['warning_moderate'], 100) : 0; |
@@ -606,8 +620,9 @@ discard block |
||
606 | 620 | |
607 | 621 | call_integration_hook('integrate_spam_settings', array(&$config_vars)); |
608 | 622 | |
609 | - if ($return_config) |
|
610 | - return $config_vars; |
|
623 | + if ($return_config) { |
|
624 | + return $config_vars; |
|
625 | + } |
|
611 | 626 | |
612 | 627 | // You need to be an admin to edit settings! |
613 | 628 | isAllowedTo('admin_forum'); |
@@ -641,8 +656,9 @@ discard block |
||
641 | 656 | |
642 | 657 | if (empty($context['qa_by_lang'][strtr($language, array('-utf8' => ''))]) && !empty($context['question_answers'])) |
643 | 658 | { |
644 | - if (empty($context['settings_insert_above'])) |
|
645 | - $context['settings_insert_above'] = ''; |
|
659 | + if (empty($context['settings_insert_above'])) { |
|
660 | + $context['settings_insert_above'] = ''; |
|
661 | + } |
|
646 | 662 | |
647 | 663 | $context['settings_insert_above'] .= '<div class="noticebox">' . sprintf($txt['question_not_defined'], $context['languages'][$language]['name']) . '</div>'; |
648 | 664 | } |
@@ -685,8 +701,9 @@ discard block |
||
685 | 701 | $_POST['pm_spam_settings'] = (int) $_POST['max_pm_recipients'] . ',' . (int) $_POST['pm_posts_verification'] . ',' . (int) $_POST['pm_posts_per_hour']; |
686 | 702 | |
687 | 703 | // Hack in guest requiring verification! |
688 | - if (empty($_POST['posts_require_captcha']) && !empty($_POST['guests_require_captcha'])) |
|
689 | - $_POST['posts_require_captcha'] = -1; |
|
704 | + if (empty($_POST['posts_require_captcha']) && !empty($_POST['guests_require_captcha'])) { |
|
705 | + $_POST['posts_require_captcha'] = -1; |
|
706 | + } |
|
690 | 707 | |
691 | 708 | $save_vars = $config_vars; |
692 | 709 | unset($save_vars['pm1'], $save_vars['pm2'], $save_vars['pm3'], $save_vars['guest_verify']); |
@@ -703,14 +720,16 @@ discard block |
||
703 | 720 | foreach ($context['qa_languages'] as $lang_id => $dummy) |
704 | 721 | { |
705 | 722 | // If we had some questions for this language before, but don't now, delete everything from that language. |
706 | - if ((!isset($_POST['question'][$lang_id]) || !is_array($_POST['question'][$lang_id])) && !empty($context['qa_by_lang'][$lang_id])) |
|
707 | - $changes['delete'] = array_merge($questions['delete'], $context['qa_by_lang'][$lang_id]); |
|
723 | + if ((!isset($_POST['question'][$lang_id]) || !is_array($_POST['question'][$lang_id])) && !empty($context['qa_by_lang'][$lang_id])) { |
|
724 | + $changes['delete'] = array_merge($questions['delete'], $context['qa_by_lang'][$lang_id]); |
|
725 | + } |
|
708 | 726 | |
709 | 727 | // Now step through and see if any existing questions no longer exist. |
710 | - if (!empty($context['qa_by_lang'][$lang_id])) |
|
711 | - foreach ($context['qa_by_lang'][$lang_id] as $q_id) |
|
728 | + if (!empty($context['qa_by_lang'][$lang_id])) { |
|
729 | + foreach ($context['qa_by_lang'][$lang_id] as $q_id) |
|
712 | 730 | if (empty($_POST['question'][$lang_id][$q_id])) |
713 | 731 | $changes['delete'][] = $q_id; |
732 | + } |
|
714 | 733 | |
715 | 734 | // Now let's see if there are new questions or ones that need updating. |
716 | 735 | if (isset($_POST['question'][$lang_id])) |
@@ -719,14 +738,16 @@ discard block |
||
719 | 738 | { |
720 | 739 | // Ignore junky ids. |
721 | 740 | $q_id = (int) $q_id; |
722 | - if ($q_id <= 0) |
|
723 | - continue; |
|
741 | + if ($q_id <= 0) { |
|
742 | + continue; |
|
743 | + } |
|
724 | 744 | |
725 | 745 | // Check the question isn't empty (because they want to delete it?) |
726 | 746 | if (empty($question) || trim($question) == '') |
727 | 747 | { |
728 | - if (isset($context['question_answers'][$q_id])) |
|
729 | - $changes['delete'][] = $q_id; |
|
748 | + if (isset($context['question_answers'][$q_id])) { |
|
749 | + $changes['delete'][] = $q_id; |
|
750 | + } |
|
730 | 751 | continue; |
731 | 752 | } |
732 | 753 | $question = $smcFunc['htmlspecialchars'](trim($question)); |
@@ -734,19 +755,22 @@ discard block |
||
734 | 755 | // Get the answers. Firstly check there actually might be some. |
735 | 756 | if (!isset($_POST['answer'][$lang_id][$q_id]) || !is_array($_POST['answer'][$lang_id][$q_id])) |
736 | 757 | { |
737 | - if (isset($context['question_answers'][$q_id])) |
|
738 | - $changes['delete'][] = $q_id; |
|
758 | + if (isset($context['question_answers'][$q_id])) { |
|
759 | + $changes['delete'][] = $q_id; |
|
760 | + } |
|
739 | 761 | continue; |
740 | 762 | } |
741 | 763 | // Now get them and check that they might be viable. |
742 | 764 | $answers = array(); |
743 | - foreach ($_POST['answer'][$lang_id][$q_id] as $answer) |
|
744 | - if (!empty($answer) && trim($answer) !== '') |
|
765 | + foreach ($_POST['answer'][$lang_id][$q_id] as $answer) { |
|
766 | + if (!empty($answer) && trim($answer) !== '') |
|
745 | 767 | $answers[] = $smcFunc['htmlspecialchars'](trim($answer)); |
768 | + } |
|
746 | 769 | if (empty($answers)) |
747 | 770 | { |
748 | - if (isset($context['question_answers'][$q_id])) |
|
749 | - $changes['delete'][] = $q_id; |
|
771 | + if (isset($context['question_answers'][$q_id])) { |
|
772 | + $changes['delete'][] = $q_id; |
|
773 | + } |
|
750 | 774 | continue; |
751 | 775 | } |
752 | 776 | $answers = $smcFunc['json_encode']($answers); |
@@ -756,16 +780,17 @@ discard block |
||
756 | 780 | { |
757 | 781 | // New question. Now, we don't want to randomly consume ids, so we'll set those, rather than trusting the browser's supplied ids. |
758 | 782 | $changes['insert'][] = array($lang_id, $question, $answers); |
759 | - } |
|
760 | - else |
|
783 | + } else |
|
761 | 784 | { |
762 | 785 | // It's an existing question. Let's see what's changed, if anything. |
763 | - if ($lang_id != $context['question_answers'][$q_id]['lngfile'] || $question != $context['question_answers'][$q_id]['question'] || $answers != $context['question_answers'][$q_id]['answers']) |
|
764 | - $changes['replace'][$q_id] = array('lngfile' => $lang_id, 'question' => $question, 'answers' => $answers); |
|
786 | + if ($lang_id != $context['question_answers'][$q_id]['lngfile'] || $question != $context['question_answers'][$q_id]['question'] || $answers != $context['question_answers'][$q_id]['answers']) { |
|
787 | + $changes['replace'][$q_id] = array('lngfile' => $lang_id, 'question' => $question, 'answers' => $answers); |
|
788 | + } |
|
765 | 789 | } |
766 | 790 | |
767 | - if (!isset($qs_per_lang[$lang_id])) |
|
768 | - $qs_per_lang[$lang_id] = 0; |
|
791 | + if (!isset($qs_per_lang[$lang_id])) { |
|
792 | + $qs_per_lang[$lang_id] = 0; |
|
793 | + } |
|
769 | 794 | $qs_per_lang[$lang_id]++; |
770 | 795 | } |
771 | 796 | } |
@@ -815,8 +840,9 @@ discard block |
||
815 | 840 | |
816 | 841 | // Lastly, the count of messages needs to be no more than the lowest number of questions for any one language. |
817 | 842 | $count_questions = empty($qs_per_lang) ? 0 : min($qs_per_lang); |
818 | - if (empty($count_questions) || $_POST['qa_verification_number'] > $count_questions) |
|
819 | - $_POST['qa_verification_number'] = $count_questions; |
|
843 | + if (empty($count_questions) || $_POST['qa_verification_number'] > $count_questions) { |
|
844 | + $_POST['qa_verification_number'] = $count_questions; |
|
845 | + } |
|
820 | 846 | |
821 | 847 | call_integration_hook('integrate_save_spam_settings', array(&$save_vars)); |
822 | 848 | |
@@ -831,24 +857,27 @@ discard block |
||
831 | 857 | |
832 | 858 | $character_range = array_merge(range('A', 'H'), array('K', 'M', 'N', 'P', 'R'), range('T', 'Y')); |
833 | 859 | $_SESSION['visual_verification_code'] = ''; |
834 | - for ($i = 0; $i < 6; $i++) |
|
835 | - $_SESSION['visual_verification_code'] .= $character_range[array_rand($character_range)]; |
|
860 | + for ($i = 0; $i < 6; $i++) { |
|
861 | + $_SESSION['visual_verification_code'] .= $character_range[array_rand($character_range)]; |
|
862 | + } |
|
836 | 863 | |
837 | 864 | // Some javascript for CAPTCHA. |
838 | 865 | $context['settings_post_javascript'] = ''; |
839 | - if ($context['use_graphic_library']) |
|
840 | - $context['settings_post_javascript'] .= ' |
|
866 | + if ($context['use_graphic_library']) { |
|
867 | + $context['settings_post_javascript'] .= ' |
|
841 | 868 | function refreshImages() |
842 | 869 | { |
843 | 870 | var imageType = document.getElementById(\'visual_verification_type\').value; |
844 | 871 | document.getElementById(\'verification_image\').src = \'' . $context['verification_image_href'] . ';type=\' + imageType; |
845 | 872 | }'; |
873 | + } |
|
846 | 874 | |
847 | 875 | // Show the image itself, or text saying we can't. |
848 | - if ($context['use_graphic_library']) |
|
849 | - $config_vars['vv']['postinput'] = '<br><img src="' . $context['verification_image_href'] . ';type=' . (empty($modSettings['visual_verification_type']) ? 0 : $modSettings['visual_verification_type']) . '" alt="' . $txt['setting_image_verification_sample'] . '" id="verification_image"><br>'; |
|
850 | - else |
|
851 | - $config_vars['vv']['postinput'] = '<br><span class="smalltext">' . $txt['setting_image_verification_nogd'] . '</span>'; |
|
876 | + if ($context['use_graphic_library']) { |
|
877 | + $config_vars['vv']['postinput'] = '<br><img src="' . $context['verification_image_href'] . ';type=' . (empty($modSettings['visual_verification_type']) ? 0 : $modSettings['visual_verification_type']) . '" alt="' . $txt['setting_image_verification_sample'] . '" id="verification_image"><br>'; |
|
878 | + } else { |
|
879 | + $config_vars['vv']['postinput'] = '<br><span class="smalltext">' . $txt['setting_image_verification_nogd'] . '</span>'; |
|
880 | + } |
|
852 | 881 | |
853 | 882 | // Hack for PM spam settings. |
854 | 883 | list ($modSettings['max_pm_recipients'], $modSettings['pm_posts_verification'], $modSettings['pm_posts_per_hour']) = explode(',', $modSettings['pm_spam_settings']); |
@@ -858,9 +887,10 @@ discard block |
||
858 | 887 | $modSettings['posts_require_captcha'] = !isset($modSettings['posts_require_captcha']) || $modSettings['posts_require_captcha'] == -1 ? 0 : $modSettings['posts_require_captcha']; |
859 | 888 | |
860 | 889 | // Some minor javascript for the guest post setting. |
861 | - if ($modSettings['posts_require_captcha']) |
|
862 | - $context['settings_post_javascript'] .= ' |
|
890 | + if ($modSettings['posts_require_captcha']) { |
|
891 | + $context['settings_post_javascript'] .= ' |
|
863 | 892 | document.getElementById(\'guests_require_captcha\').disabled = true;'; |
893 | + } |
|
864 | 894 | |
865 | 895 | // And everything else. |
866 | 896 | $context['post_url'] = $scripturl . '?action=admin;area=antispam;save'; |
@@ -907,8 +937,9 @@ discard block |
||
907 | 937 | |
908 | 938 | call_integration_hook('integrate_signature_settings', array(&$config_vars)); |
909 | 939 | |
910 | - if ($return_config) |
|
911 | - return $config_vars; |
|
940 | + if ($return_config) { |
|
941 | + return $config_vars; |
|
942 | + } |
|
912 | 943 | |
913 | 944 | // Setup the template. |
914 | 945 | $context['page_title'] = $txt['signature_settings']; |
@@ -963,8 +994,9 @@ discard block |
||
963 | 994 | $sig = strtr($row['signature'], array('<br>' => "\n")); |
964 | 995 | |
965 | 996 | // Max characters... |
966 | - if (!empty($sig_limits[1])) |
|
967 | - $sig = $smcFunc['substr']($sig, 0, $sig_limits[1]); |
|
997 | + if (!empty($sig_limits[1])) { |
|
998 | + $sig = $smcFunc['substr']($sig, 0, $sig_limits[1]); |
|
999 | + } |
|
968 | 1000 | // Max lines... |
969 | 1001 | if (!empty($sig_limits[2])) |
970 | 1002 | { |
@@ -974,8 +1006,9 @@ discard block |
||
974 | 1006 | if ($sig[$i] == "\n") |
975 | 1007 | { |
976 | 1008 | $count++; |
977 | - if ($count >= $sig_limits[2]) |
|
978 | - $sig = substr($sig, 0, $i) . strtr(substr($sig, $i), array("\n" => ' ')); |
|
1009 | + if ($count >= $sig_limits[2]) { |
|
1010 | + $sig = substr($sig, 0, $i) . strtr(substr($sig, $i), array("\n" => ' ')); |
|
1011 | + } |
|
979 | 1012 | } |
980 | 1013 | } |
981 | 1014 | } |
@@ -986,17 +1019,19 @@ discard block |
||
986 | 1019 | { |
987 | 1020 | $limit_broke = 0; |
988 | 1021 | // Attempt to allow all sizes of abuse, so to speak. |
989 | - if ($matches[2][$ind] == 'px' && $size > $sig_limits[7]) |
|
990 | - $limit_broke = $sig_limits[7] . 'px'; |
|
991 | - elseif ($matches[2][$ind] == 'pt' && $size > ($sig_limits[7] * 0.75)) |
|
992 | - $limit_broke = ((int) $sig_limits[7] * 0.75) . 'pt'; |
|
993 | - elseif ($matches[2][$ind] == 'em' && $size > ((float) $sig_limits[7] / 16)) |
|
994 | - $limit_broke = ((float) $sig_limits[7] / 16) . 'em'; |
|
995 | - elseif ($matches[2][$ind] != 'px' && $matches[2][$ind] != 'pt' && $matches[2][$ind] != 'em' && $sig_limits[7] < 18) |
|
996 | - $limit_broke = 'large'; |
|
997 | - |
|
998 | - if ($limit_broke) |
|
999 | - $sig = str_replace($matches[0][$ind], '[size=' . $sig_limits[7] . 'px', $sig); |
|
1022 | + if ($matches[2][$ind] == 'px' && $size > $sig_limits[7]) { |
|
1023 | + $limit_broke = $sig_limits[7] . 'px'; |
|
1024 | + } elseif ($matches[2][$ind] == 'pt' && $size > ($sig_limits[7] * 0.75)) { |
|
1025 | + $limit_broke = ((int) $sig_limits[7] * 0.75) . 'pt'; |
|
1026 | + } elseif ($matches[2][$ind] == 'em' && $size > ((float) $sig_limits[7] / 16)) { |
|
1027 | + $limit_broke = ((float) $sig_limits[7] / 16) . 'em'; |
|
1028 | + } elseif ($matches[2][$ind] != 'px' && $matches[2][$ind] != 'pt' && $matches[2][$ind] != 'em' && $sig_limits[7] < 18) { |
|
1029 | + $limit_broke = 'large'; |
|
1030 | + } |
|
1031 | + |
|
1032 | + if ($limit_broke) { |
|
1033 | + $sig = str_replace($matches[0][$ind], '[size=' . $sig_limits[7] . 'px', $sig); |
|
1034 | + } |
|
1000 | 1035 | } |
1001 | 1036 | } |
1002 | 1037 | |
@@ -1052,32 +1087,34 @@ discard block |
||
1052 | 1087 | $img_offset = false; |
1053 | 1088 | } |
1054 | 1089 | } |
1090 | + } else { |
|
1091 | + $replaces[$image] = ''; |
|
1055 | 1092 | } |
1056 | - else |
|
1057 | - $replaces[$image] = ''; |
|
1058 | 1093 | |
1059 | 1094 | continue; |
1060 | 1095 | } |
1061 | 1096 | |
1062 | 1097 | // Does it have predefined restraints? Width first. |
1063 | - if ($matches[6][$key]) |
|
1064 | - $matches[2][$key] = $matches[6][$key]; |
|
1098 | + if ($matches[6][$key]) { |
|
1099 | + $matches[2][$key] = $matches[6][$key]; |
|
1100 | + } |
|
1065 | 1101 | if ($matches[2][$key] && $sig_limits[5] && $matches[2][$key] > $sig_limits[5]) |
1066 | 1102 | { |
1067 | 1103 | $width = $sig_limits[5]; |
1068 | 1104 | $matches[4][$key] = $matches[4][$key] * ($width / $matches[2][$key]); |
1105 | + } elseif ($matches[2][$key]) { |
|
1106 | + $width = $matches[2][$key]; |
|
1069 | 1107 | } |
1070 | - elseif ($matches[2][$key]) |
|
1071 | - $width = $matches[2][$key]; |
|
1072 | 1108 | // ... and height. |
1073 | 1109 | if ($matches[4][$key] && $sig_limits[6] && $matches[4][$key] > $sig_limits[6]) |
1074 | 1110 | { |
1075 | 1111 | $height = $sig_limits[6]; |
1076 | - if ($width != -1) |
|
1077 | - $width = $width * ($height / $matches[4][$key]); |
|
1112 | + if ($width != -1) { |
|
1113 | + $width = $width * ($height / $matches[4][$key]); |
|
1114 | + } |
|
1115 | + } elseif ($matches[4][$key]) { |
|
1116 | + $height = $matches[4][$key]; |
|
1078 | 1117 | } |
1079 | - elseif ($matches[4][$key]) |
|
1080 | - $height = $matches[4][$key]; |
|
1081 | 1118 | |
1082 | 1119 | // If the dimensions are still not fixed - we need to check the actual image. |
1083 | 1120 | if (($width == -1 && $sig_limits[5]) || ($height == -1 && $sig_limits[6])) |
@@ -1095,12 +1132,13 @@ discard block |
||
1095 | 1132 | if ($sizes[1] > $sig_limits[6] && $sig_limits[6]) |
1096 | 1133 | { |
1097 | 1134 | $height = $sig_limits[6]; |
1098 | - if ($width == -1) |
|
1099 | - $width = $sizes[0]; |
|
1135 | + if ($width == -1) { |
|
1136 | + $width = $sizes[0]; |
|
1137 | + } |
|
1100 | 1138 | $width = $width * ($height / $sizes[1]); |
1139 | + } elseif ($width != -1) { |
|
1140 | + $height = $sizes[1]; |
|
1101 | 1141 | } |
1102 | - elseif ($width != -1) |
|
1103 | - $height = $sizes[1]; |
|
1104 | 1142 | } |
1105 | 1143 | } |
1106 | 1144 | |
@@ -1113,8 +1151,9 @@ discard block |
||
1113 | 1151 | // Record that we got one. |
1114 | 1152 | $image_count_holder[$image] = isset($image_count_holder[$image]) ? $image_count_holder[$image] + 1 : 1; |
1115 | 1153 | } |
1116 | - if (!empty($replaces)) |
|
1117 | - $sig = str_replace(array_keys($replaces), array_values($replaces), $sig); |
|
1154 | + if (!empty($replaces)) { |
|
1155 | + $sig = str_replace(array_keys($replaces), array_values($replaces), $sig); |
|
1156 | + } |
|
1118 | 1157 | } |
1119 | 1158 | } |
1120 | 1159 | // Try to fix disabled tags. |
@@ -1126,18 +1165,20 @@ discard block |
||
1126 | 1165 | |
1127 | 1166 | $sig = strtr($sig, array("\n" => '<br>')); |
1128 | 1167 | call_integration_hook('integrate_apply_signature_settings', array(&$sig, $sig_limits, $disabledTags)); |
1129 | - if ($sig != $row['signature']) |
|
1130 | - $changes[$row['id_member']] = $sig; |
|
1168 | + if ($sig != $row['signature']) { |
|
1169 | + $changes[$row['id_member']] = $sig; |
|
1170 | + } |
|
1171 | + } |
|
1172 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1173 | + $done = true; |
|
1131 | 1174 | } |
1132 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1133 | - $done = true; |
|
1134 | 1175 | $smcFunc['db_free_result']($request); |
1135 | 1176 | |
1136 | 1177 | // Do we need to delete what we have? |
1137 | 1178 | if (!empty($changes)) |
1138 | 1179 | { |
1139 | - foreach ($changes as $id => $sig) |
|
1140 | - $smcFunc['db_query']('', ' |
|
1180 | + foreach ($changes as $id => $sig) { |
|
1181 | + $smcFunc['db_query']('', ' |
|
1141 | 1182 | UPDATE {db_prefix}members |
1142 | 1183 | SET signature = {string:signature} |
1143 | 1184 | WHERE id_member = {int:id_member}', |
@@ -1146,11 +1187,13 @@ discard block |
||
1146 | 1187 | 'signature' => $sig, |
1147 | 1188 | ) |
1148 | 1189 | ); |
1190 | + } |
|
1149 | 1191 | } |
1150 | 1192 | |
1151 | 1193 | $_GET['step'] += 50; |
1152 | - if (!$done) |
|
1153 | - pauseSignatureApplySettings(); |
|
1194 | + if (!$done) { |
|
1195 | + pauseSignatureApplySettings(); |
|
1196 | + } |
|
1154 | 1197 | } |
1155 | 1198 | $settings_applied = true; |
1156 | 1199 | } |
@@ -1168,8 +1211,9 @@ discard block |
||
1168 | 1211 | ); |
1169 | 1212 | |
1170 | 1213 | // Temporarily make each setting a modSetting! |
1171 | - foreach ($context['signature_settings'] as $key => $value) |
|
1172 | - $modSettings['signature_' . $key] = $value; |
|
1214 | + foreach ($context['signature_settings'] as $key => $value) { |
|
1215 | + $modSettings['signature_' . $key] = $value; |
|
1216 | + } |
|
1173 | 1217 | |
1174 | 1218 | // Make sure we check the right tags! |
1175 | 1219 | $modSettings['bbc_disabled_signature_bbc'] = $disabledTags; |
@@ -1181,23 +1225,26 @@ discard block |
||
1181 | 1225 | |
1182 | 1226 | // Clean up the tag stuff! |
1183 | 1227 | $bbcTags = array(); |
1184 | - foreach (parse_bbc(false) as $tag) |
|
1185 | - $bbcTags[] = $tag['tag']; |
|
1228 | + foreach (parse_bbc(false) as $tag) { |
|
1229 | + $bbcTags[] = $tag['tag']; |
|
1230 | + } |
|
1186 | 1231 | |
1187 | - if (!isset($_POST['signature_bbc_enabledTags'])) |
|
1188 | - $_POST['signature_bbc_enabledTags'] = array(); |
|
1189 | - elseif (!is_array($_POST['signature_bbc_enabledTags'])) |
|
1190 | - $_POST['signature_bbc_enabledTags'] = array($_POST['signature_bbc_enabledTags']); |
|
1232 | + if (!isset($_POST['signature_bbc_enabledTags'])) { |
|
1233 | + $_POST['signature_bbc_enabledTags'] = array(); |
|
1234 | + } elseif (!is_array($_POST['signature_bbc_enabledTags'])) { |
|
1235 | + $_POST['signature_bbc_enabledTags'] = array($_POST['signature_bbc_enabledTags']); |
|
1236 | + } |
|
1191 | 1237 | |
1192 | 1238 | $sig_limits = array(); |
1193 | 1239 | foreach ($context['signature_settings'] as $key => $value) |
1194 | 1240 | { |
1195 | - if ($key == 'allow_smileys') |
|
1196 | - continue; |
|
1197 | - elseif ($key == 'max_smileys' && empty($_POST['signature_allow_smileys'])) |
|
1198 | - $sig_limits[] = -1; |
|
1199 | - else |
|
1200 | - $sig_limits[] = !empty($_POST['signature_' . $key]) ? max(1, (int) $_POST['signature_' . $key]) : 0; |
|
1241 | + if ($key == 'allow_smileys') { |
|
1242 | + continue; |
|
1243 | + } elseif ($key == 'max_smileys' && empty($_POST['signature_allow_smileys'])) { |
|
1244 | + $sig_limits[] = -1; |
|
1245 | + } else { |
|
1246 | + $sig_limits[] = !empty($_POST['signature_' . $key]) ? max(1, (int) $_POST['signature_' . $key]) : 0; |
|
1247 | + } |
|
1201 | 1248 | } |
1202 | 1249 | |
1203 | 1250 | call_integration_hook('integrate_save_signature_settings', array(&$sig_limits, &$bbcTags)); |
@@ -1230,12 +1277,14 @@ discard block |
||
1230 | 1277 | |
1231 | 1278 | // Try get more time... |
1232 | 1279 | @set_time_limit(600); |
1233 | - if (function_exists('apache_reset_timeout')) |
|
1234 | - @apache_reset_timeout(); |
|
1280 | + if (function_exists('apache_reset_timeout')) { |
|
1281 | + @apache_reset_timeout(); |
|
1282 | + } |
|
1235 | 1283 | |
1236 | 1284 | // Have we exhausted all the time we allowed? |
1237 | - if (time() - array_sum(explode(' ', $sig_start)) < 3) |
|
1238 | - return; |
|
1285 | + if (time() - array_sum(explode(' ', $sig_start)) < 3) { |
|
1286 | + return; |
|
1287 | + } |
|
1239 | 1288 | |
1240 | 1289 | $context['continue_get_data'] = '?action=admin;area=featuresettings;sa=sig;apply;step=' . $_GET['step'] . ';' . $context['session_var'] . '=' . $context['session_id']; |
1241 | 1290 | $context['page_title'] = $txt['not_done_title']; |
@@ -1281,9 +1330,10 @@ discard block |
||
1281 | 1330 | $disable_fields = array_flip($standard_fields); |
1282 | 1331 | if (!empty($_POST['active'])) |
1283 | 1332 | { |
1284 | - foreach ($_POST['active'] as $value) |
|
1285 | - if (isset($disable_fields[$value])) |
|
1333 | + foreach ($_POST['active'] as $value) { |
|
1334 | + if (isset($disable_fields[$value])) |
|
1286 | 1335 | unset($disable_fields[$value]); |
1336 | + } |
|
1287 | 1337 | } |
1288 | 1338 | // What we have left! |
1289 | 1339 | $changes['disabled_profile_fields'] = empty($disable_fields) ? '' : implode(',', array_keys($disable_fields)); |
@@ -1292,16 +1342,18 @@ discard block |
||
1292 | 1342 | $reg_fields = array(); |
1293 | 1343 | if (!empty($_POST['reg'])) |
1294 | 1344 | { |
1295 | - foreach ($_POST['reg'] as $value) |
|
1296 | - if (in_array($value, $standard_fields) && !isset($disable_fields[$value])) |
|
1345 | + foreach ($_POST['reg'] as $value) { |
|
1346 | + if (in_array($value, $standard_fields) && !isset($disable_fields[$value])) |
|
1297 | 1347 | $reg_fields[] = $value; |
1348 | + } |
|
1298 | 1349 | } |
1299 | 1350 | // What we have left! |
1300 | 1351 | $changes['registration_fields'] = empty($reg_fields) ? '' : implode(',', $reg_fields); |
1301 | 1352 | |
1302 | 1353 | $_SESSION['adm-save'] = true; |
1303 | - if (!empty($changes)) |
|
1304 | - updateSettings($changes); |
|
1354 | + if (!empty($changes)) { |
|
1355 | + updateSettings($changes); |
|
1356 | + } |
|
1305 | 1357 | } |
1306 | 1358 | |
1307 | 1359 | createToken('admin-scp'); |
@@ -1404,11 +1456,13 @@ discard block |
||
1404 | 1456 | { |
1405 | 1457 | $return = '<p class="centertext bold_text">'. $rowData['field_order'] .'<br>'; |
1406 | 1458 | |
1407 | - if ($rowData['field_order'] > 1) |
|
1408 | - $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=up"><span class="toggle_up" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_up'] .'"></span></a>'; |
|
1459 | + if ($rowData['field_order'] > 1) { |
|
1460 | + $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=up"><span class="toggle_up" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_up'] .'"></span></a>'; |
|
1461 | + } |
|
1409 | 1462 | |
1410 | - if ($rowData['field_order'] < $context['custFieldsMaxOrder']) |
|
1411 | - $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=down"><span class="toggle_down" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_down'] .'"></span></a>'; |
|
1463 | + if ($rowData['field_order'] < $context['custFieldsMaxOrder']) { |
|
1464 | + $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=down"><span class="toggle_down" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_down'] .'"></span></a>'; |
|
1465 | + } |
|
1412 | 1466 | |
1413 | 1467 | $return .= '</p>'; |
1414 | 1468 | |
@@ -1546,16 +1600,16 @@ discard block |
||
1546 | 1600 | $disabled_fields = isset($modSettings['disabled_profile_fields']) ? explode(',', $modSettings['disabled_profile_fields']) : array(); |
1547 | 1601 | $registration_fields = isset($modSettings['registration_fields']) ? explode(',', $modSettings['registration_fields']) : array(); |
1548 | 1602 | |
1549 | - foreach ($standard_fields as $field) |
|
1550 | - $list[] = array( |
|
1603 | + foreach ($standard_fields as $field) { |
|
1604 | + $list[] = array( |
|
1551 | 1605 | 'id' => $field, |
1552 | 1606 | 'label' => isset($txt['standard_profile_field_' . $field]) ? $txt['standard_profile_field_' . $field] : (isset($txt[$field]) ? $txt[$field] : $field), |
1553 | 1607 | 'disabled' => in_array($field, $disabled_fields), |
1554 | 1608 | 'on_register' => in_array($field, $registration_fields) && !in_array($field, $fields_no_registration), |
1555 | 1609 | 'can_show_register' => !in_array($field, $fields_no_registration), |
1556 | 1610 | ); |
1557 | - } |
|
1558 | - else |
|
1611 | + } |
|
1612 | + } else |
|
1559 | 1613 | { |
1560 | 1614 | // Load all the fields. |
1561 | 1615 | $request = $smcFunc['db_query']('', ' |
@@ -1569,8 +1623,9 @@ discard block |
||
1569 | 1623 | 'items_per_page' => $items_per_page, |
1570 | 1624 | ) |
1571 | 1625 | ); |
1572 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1573 | - $list[] = $row; |
|
1626 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1627 | + $list[] = $row; |
|
1628 | + } |
|
1574 | 1629 | $smcFunc['db_free_result']($request); |
1575 | 1630 | } |
1576 | 1631 | |
@@ -1636,9 +1691,9 @@ discard block |
||
1636 | 1691 | $context['field'] = array(); |
1637 | 1692 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1638 | 1693 | { |
1639 | - if ($row['field_type'] == 'textarea') |
|
1640 | - @list ($rows, $cols) = @explode(',', $row['default_value']); |
|
1641 | - else |
|
1694 | + if ($row['field_type'] == 'textarea') { |
|
1695 | + @list ($rows, $cols) = @explode(',', $row['default_value']); |
|
1696 | + } else |
|
1642 | 1697 | { |
1643 | 1698 | $rows = 3; |
1644 | 1699 | $cols = 30; |
@@ -1674,8 +1729,8 @@ discard block |
||
1674 | 1729 | } |
1675 | 1730 | |
1676 | 1731 | // Setup the default values as needed. |
1677 | - if (empty($context['field'])) |
|
1678 | - $context['field'] = array( |
|
1732 | + if (empty($context['field'])) { |
|
1733 | + $context['field'] = array( |
|
1679 | 1734 | 'name' => '', |
1680 | 1735 | 'col_name' => '???', |
1681 | 1736 | 'desc' => '', |
@@ -1700,6 +1755,7 @@ discard block |
||
1700 | 1755 | 'enclose' => '', |
1701 | 1756 | 'placement' => 0, |
1702 | 1757 | ); |
1758 | + } |
|
1703 | 1759 | |
1704 | 1760 | // Are we moving it? |
1705 | 1761 | if (isset($_GET['move']) && in_array($smcFunc['htmlspecialchars']($_GET['move']), $move_to)) |
@@ -1708,8 +1764,10 @@ discard block |
||
1708 | 1764 | $new_order = ($_GET['move'] == 'up' ? ($context['field']['order'] - 1) : ($context['field']['order'] + 1)); |
1709 | 1765 | |
1710 | 1766 | // Is this a valid position? |
1711 | - if ($new_order <= 0 || $new_order > $order_count) |
|
1712 | - redirectexit('action=admin;area=featuresettings;sa=profile'); // @todo implement an error handler |
|
1767 | + if ($new_order <= 0 || $new_order > $order_count) { |
|
1768 | + redirectexit('action=admin;area=featuresettings;sa=profile'); |
|
1769 | + } |
|
1770 | + // @todo implement an error handler |
|
1713 | 1771 | |
1714 | 1772 | // All good, proceed. |
1715 | 1773 | $smcFunc['db_query']('',' |
@@ -1740,12 +1798,14 @@ discard block |
||
1740 | 1798 | validateToken('admin-ecp'); |
1741 | 1799 | |
1742 | 1800 | // Everyone needs a name - even the (bracket) unknown... |
1743 | - if (trim($_POST['field_name']) == '') |
|
1744 | - redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=need_name'); |
|
1801 | + if (trim($_POST['field_name']) == '') { |
|
1802 | + redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=need_name'); |
|
1803 | + } |
|
1745 | 1804 | |
1746 | 1805 | // Regex you say? Do a very basic test to see if the pattern is valid |
1747 | - if (!empty($_POST['regex']) && @preg_match($_POST['regex'], 'dummy') === false) |
|
1748 | - redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=regex_error'); |
|
1806 | + if (!empty($_POST['regex']) && @preg_match($_POST['regex'], 'dummy') === false) { |
|
1807 | + redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=regex_error'); |
|
1808 | + } |
|
1749 | 1809 | |
1750 | 1810 | $_POST['field_name'] = $smcFunc['htmlspecialchars']($_POST['field_name']); |
1751 | 1811 | $_POST['field_desc'] = $smcFunc['htmlspecialchars']($_POST['field_desc']); |
@@ -1762,8 +1822,9 @@ discard block |
||
1762 | 1822 | |
1763 | 1823 | // Some masking stuff... |
1764 | 1824 | $mask = isset($_POST['mask']) ? $_POST['mask'] : ''; |
1765 | - if ($mask == 'regex' && isset($_POST['regex'])) |
|
1766 | - $mask .= $_POST['regex']; |
|
1825 | + if ($mask == 'regex' && isset($_POST['regex'])) { |
|
1826 | + $mask .= $_POST['regex']; |
|
1827 | + } |
|
1767 | 1828 | |
1768 | 1829 | $field_length = isset($_POST['max_length']) ? (int) $_POST['max_length'] : 255; |
1769 | 1830 | $enclose = isset($_POST['enclose']) ? $_POST['enclose'] : ''; |
@@ -1782,8 +1843,9 @@ discard block |
||
1782 | 1843 | $v = strtr($v, array(',' => '')); |
1783 | 1844 | |
1784 | 1845 | // Nada, zip, etc... |
1785 | - if (trim($v) == '') |
|
1786 | - continue; |
|
1846 | + if (trim($v) == '') { |
|
1847 | + continue; |
|
1848 | + } |
|
1787 | 1849 | |
1788 | 1850 | // Otherwise, save it boy. |
1789 | 1851 | $field_options .= $v . ','; |
@@ -1791,15 +1853,17 @@ discard block |
||
1791 | 1853 | $newOptions[$k] = $v; |
1792 | 1854 | |
1793 | 1855 | // Is it default? |
1794 | - if (isset($_POST['default_select']) && $_POST['default_select'] == $k) |
|
1795 | - $default = $v; |
|
1856 | + if (isset($_POST['default_select']) && $_POST['default_select'] == $k) { |
|
1857 | + $default = $v; |
|
1858 | + } |
|
1796 | 1859 | } |
1797 | 1860 | $field_options = substr($field_options, 0, -1); |
1798 | 1861 | } |
1799 | 1862 | |
1800 | 1863 | // Text area has default has dimensions |
1801 | - if ($_POST['field_type'] == 'textarea') |
|
1802 | - $default = (int) $_POST['rows'] . ',' . (int) $_POST['cols']; |
|
1864 | + if ($_POST['field_type'] == 'textarea') { |
|
1865 | + $default = (int) $_POST['rows'] . ',' . (int) $_POST['cols']; |
|
1866 | + } |
|
1803 | 1867 | |
1804 | 1868 | // Come up with the unique name? |
1805 | 1869 | if (empty($context['fid'])) |
@@ -1808,32 +1872,36 @@ discard block |
||
1808 | 1872 | preg_match('~([\w\d_-]+)~', $col_name, $matches); |
1809 | 1873 | |
1810 | 1874 | // If there is nothing to the name, then let's start out own - for foreign languages etc. |
1811 | - if (isset($matches[1])) |
|
1812 | - $col_name = $initial_col_name = 'cust_' . strtolower($matches[1]); |
|
1813 | - else |
|
1814 | - $col_name = $initial_col_name = 'cust_' . mt_rand(1, 9999); |
|
1875 | + if (isset($matches[1])) { |
|
1876 | + $col_name = $initial_col_name = 'cust_' . strtolower($matches[1]); |
|
1877 | + } else { |
|
1878 | + $col_name = $initial_col_name = 'cust_' . mt_rand(1, 9999); |
|
1879 | + } |
|
1815 | 1880 | |
1816 | 1881 | // Make sure this is unique. |
1817 | 1882 | $current_fields = array(); |
1818 | 1883 | $request = $smcFunc['db_query']('', ' |
1819 | 1884 | SELECT id_field, col_name |
1820 | 1885 | FROM {db_prefix}custom_fields'); |
1821 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1822 | - $current_fields[$row['id_field']] = $row['col_name']; |
|
1886 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1887 | + $current_fields[$row['id_field']] = $row['col_name']; |
|
1888 | + } |
|
1823 | 1889 | $smcFunc['db_free_result']($request); |
1824 | 1890 | |
1825 | 1891 | $unique = false; |
1826 | 1892 | for ($i = 0; !$unique && $i < 9; $i ++) |
1827 | 1893 | { |
1828 | - if (!in_array($col_name, $current_fields)) |
|
1829 | - $unique = true; |
|
1830 | - else |
|
1831 | - $col_name = $initial_col_name . $i; |
|
1894 | + if (!in_array($col_name, $current_fields)) { |
|
1895 | + $unique = true; |
|
1896 | + } else { |
|
1897 | + $col_name = $initial_col_name . $i; |
|
1898 | + } |
|
1832 | 1899 | } |
1833 | 1900 | |
1834 | 1901 | // Still not a unique column name? Leave it up to the user, then. |
1835 | - if (!$unique) |
|
1836 | - fatal_lang_error('custom_option_not_unique'); |
|
1902 | + if (!$unique) { |
|
1903 | + fatal_lang_error('custom_option_not_unique'); |
|
1904 | + } |
|
1837 | 1905 | } |
1838 | 1906 | // Work out what to do with the user data otherwise... |
1839 | 1907 | else |
@@ -1861,8 +1929,9 @@ discard block |
||
1861 | 1929 | // Work out what's changed! |
1862 | 1930 | foreach ($context['field']['options'] as $k => $option) |
1863 | 1931 | { |
1864 | - if (trim($option) == '') |
|
1865 | - continue; |
|
1932 | + if (trim($option) == '') { |
|
1933 | + continue; |
|
1934 | + } |
|
1866 | 1935 | |
1867 | 1936 | // Still exists? |
1868 | 1937 | if (in_array($option, $newOptions)) |
@@ -1876,8 +1945,8 @@ discard block |
||
1876 | 1945 | foreach ($optionChanges as $k => $option) |
1877 | 1946 | { |
1878 | 1947 | // Just been renamed? |
1879 | - if (!in_array($k, $takenKeys) && !empty($newOptions[$k])) |
|
1880 | - $smcFunc['db_query']('', ' |
|
1948 | + if (!in_array($k, $takenKeys) && !empty($newOptions[$k])) { |
|
1949 | + $smcFunc['db_query']('', ' |
|
1881 | 1950 | UPDATE {db_prefix}themes |
1882 | 1951 | SET value = {string:new_value} |
1883 | 1952 | WHERE variable = {string:current_column} |
@@ -1890,6 +1959,7 @@ discard block |
||
1890 | 1959 | 'old_value' => $option, |
1891 | 1960 | ) |
1892 | 1961 | ); |
1962 | + } |
|
1893 | 1963 | } |
1894 | 1964 | } |
1895 | 1965 | // @todo Maybe we should adjust based on new text length limits? |
@@ -1932,8 +2002,8 @@ discard block |
||
1932 | 2002 | ); |
1933 | 2003 | |
1934 | 2004 | // Just clean up any old selects - these are a pain! |
1935 | - if (($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio') && !empty($newOptions)) |
|
1936 | - $smcFunc['db_query']('', ' |
|
2005 | + if (($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio') && !empty($newOptions)) { |
|
2006 | + $smcFunc['db_query']('', ' |
|
1937 | 2007 | DELETE FROM {db_prefix}themes |
1938 | 2008 | WHERE variable = {string:current_column} |
1939 | 2009 | AND value NOT IN ({array_string:new_option_values}) |
@@ -1944,8 +2014,8 @@ discard block |
||
1944 | 2014 | 'current_column' => $context['field']['col_name'], |
1945 | 2015 | ) |
1946 | 2016 | ); |
1947 | - } |
|
1948 | - else |
|
2017 | + } |
|
2018 | + } else |
|
1949 | 2019 | { |
1950 | 2020 | // Gotta figure it out the order. |
1951 | 2021 | $new_order = $order_count > 1 ? ($order_count + 1) : 1; |
@@ -2120,11 +2190,13 @@ discard block |
||
2120 | 2190 | call_integration_hook('integrate_prune_settings', array(&$config_vars, &$prune_toggle, false)); |
2121 | 2191 | |
2122 | 2192 | $prune_toggle_dt = array(); |
2123 | - foreach ($prune_toggle as $item) |
|
2124 | - $prune_toggle_dt[] = 'setting_' . $item; |
|
2193 | + foreach ($prune_toggle as $item) { |
|
2194 | + $prune_toggle_dt[] = 'setting_' . $item; |
|
2195 | + } |
|
2125 | 2196 | |
2126 | - if ($return_config) |
|
2127 | - return $config_vars; |
|
2197 | + if ($return_config) { |
|
2198 | + return $config_vars; |
|
2199 | + } |
|
2128 | 2200 | |
2129 | 2201 | addInlineJavaScript(' |
2130 | 2202 | function togglePruned() |
@@ -2162,15 +2234,16 @@ discard block |
||
2162 | 2234 | $vals = array(); |
2163 | 2235 | foreach ($config_vars as $index => $dummy) |
2164 | 2236 | { |
2165 | - if (!is_array($dummy) || $index == 'pruningOptions' || !in_array($dummy[1], $prune_toggle)) |
|
2166 | - continue; |
|
2237 | + if (!is_array($dummy) || $index == 'pruningOptions' || !in_array($dummy[1], $prune_toggle)) { |
|
2238 | + continue; |
|
2239 | + } |
|
2167 | 2240 | |
2168 | 2241 | $vals[] = empty($_POST[$dummy[1]]) || $_POST[$dummy[1]] < 0 ? 0 : (int) $_POST[$dummy[1]]; |
2169 | 2242 | } |
2170 | 2243 | $_POST['pruningOptions'] = implode(',', $vals); |
2244 | + } else { |
|
2245 | + $_POST['pruningOptions'] = ''; |
|
2171 | 2246 | } |
2172 | - else |
|
2173 | - $_POST['pruningOptions'] = ''; |
|
2174 | 2247 | |
2175 | 2248 | saveDBSettings($savevar); |
2176 | 2249 | $_SESSION['adm-save'] = true; |
@@ -2182,10 +2255,11 @@ discard block |
||
2182 | 2255 | $context['sub_template'] = 'show_settings'; |
2183 | 2256 | |
2184 | 2257 | // Get the actual values |
2185 | - if (!empty($modSettings['pruningOptions'])) |
|
2186 | - @list ($modSettings['pruneErrorLog'], $modSettings['pruneModLog'], $modSettings['pruneBanLog'], $modSettings['pruneReportLog'], $modSettings['pruneScheduledTaskLog'], $modSettings['pruneSpiderHitLog']) = explode(',', $modSettings['pruningOptions']); |
|
2187 | - else |
|
2188 | - $modSettings['pruneErrorLog'] = $modSettings['pruneModLog'] = $modSettings['pruneBanLog'] = $modSettings['pruneReportLog'] = $modSettings['pruneScheduledTaskLog'] = $modSettings['pruneSpiderHitLog'] = 0; |
|
2258 | + if (!empty($modSettings['pruningOptions'])) { |
|
2259 | + @list ($modSettings['pruneErrorLog'], $modSettings['pruneModLog'], $modSettings['pruneBanLog'], $modSettings['pruneReportLog'], $modSettings['pruneScheduledTaskLog'], $modSettings['pruneSpiderHitLog']) = explode(',', $modSettings['pruningOptions']); |
|
2260 | + } else { |
|
2261 | + $modSettings['pruneErrorLog'] = $modSettings['pruneModLog'] = $modSettings['pruneBanLog'] = $modSettings['pruneReportLog'] = $modSettings['pruneScheduledTaskLog'] = $modSettings['pruneSpiderHitLog'] = 0; |
|
2262 | + } |
|
2189 | 2263 | |
2190 | 2264 | prepareDBSettingContext($config_vars); |
2191 | 2265 | } |
@@ -2207,8 +2281,9 @@ discard block |
||
2207 | 2281 | // Make it even easier to add new settings. |
2208 | 2282 | call_integration_hook('integrate_general_mod_settings', array(&$config_vars)); |
2209 | 2283 | |
2210 | - if ($return_config) |
|
2211 | - return $config_vars; |
|
2284 | + if ($return_config) { |
|
2285 | + return $config_vars; |
|
2286 | + } |
|
2212 | 2287 | |
2213 | 2288 | $context['post_url'] = $scripturl . '?action=admin;area=modsettings;save;sa=general'; |
2214 | 2289 | $context['settings_title'] = $txt['mods_cat_modifications_misc']; |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | define('SMF', 'proxy'); |
18 | +} |
|
18 | 19 | |
19 | 20 | global $proxyhousekeeping; |
20 | 21 | |
@@ -68,33 +69,38 @@ discard block |
||
68 | 69 | */ |
69 | 70 | public function checkRequest() |
70 | 71 | { |
71 | - if (!$this->enabled) |
|
72 | - return false; |
|
72 | + if (!$this->enabled) { |
|
73 | + return false; |
|
74 | + } |
|
73 | 75 | |
74 | 76 | // Try to create the image cache directory if it doesn't exist |
75 | - if (!file_exists($this->cache)) |
|
76 | - if (!mkdir($this->cache) || !copy(dirname($this->cache) . '/index.php', $this->cache . '/index.php')) |
|
77 | + if (!file_exists($this->cache)) { |
|
78 | + if (!mkdir($this->cache) || !copy(dirname($this->cache) . '/index.php', $this->cache . '/index.php')) |
|
77 | 79 | return false; |
80 | + } |
|
78 | 81 | |
79 | 82 | // Basic sanity check |
80 | 83 | $_GET['request'] = validate_iri($_GET['request']); |
81 | 84 | |
82 | 85 | // We aren't going anywhere without these |
83 | - if (empty($_GET['hash']) || empty($_GET['request'])) |
|
84 | - return false; |
|
86 | + if (empty($_GET['hash']) || empty($_GET['request'])) { |
|
87 | + return false; |
|
88 | + } |
|
85 | 89 | |
86 | 90 | $hash = $_GET['hash']; |
87 | 91 | $request = $_GET['request']; |
88 | 92 | |
89 | - if (md5($request . $this->secret) != $hash) |
|
90 | - return false; |
|
93 | + if (md5($request . $this->secret) != $hash) { |
|
94 | + return false; |
|
95 | + } |
|
91 | 96 | |
92 | 97 | // Ensure any non-ASCII characters in the URL are encoded correctly |
93 | 98 | $request = iri_to_url($request); |
94 | 99 | |
95 | 100 | // Attempt to cache the request if it doesn't exist |
96 | - if (!$this->isCached($request)) |
|
97 | - return $this->cacheImage($request); |
|
101 | + if (!$this->isCached($request)) { |
|
102 | + return $this->cacheImage($request); |
|
103 | + } |
|
98 | 104 | |
99 | 105 | return true; |
100 | 106 | } |
@@ -131,8 +137,9 @@ discard block |
||
131 | 137 | if (!$cached || $time - $cached['time'] > ($this->maxDays * 86400)) |
132 | 138 | { |
133 | 139 | @unlink($cached_file); |
134 | - if ($this->checkRequest()) |
|
135 | - $this->serve(); |
|
140 | + if ($this->checkRequest()) { |
|
141 | + $this->serve(); |
|
142 | + } |
|
136 | 143 | $this::redirectexit($request); |
137 | 144 | } |
138 | 145 | |
@@ -145,8 +152,9 @@ discard block |
||
145 | 152 | |
146 | 153 | // Make sure we're serving an image |
147 | 154 | $contentParts = explode('/', !empty($cached['content_type']) ? $cached['content_type'] : ''); |
148 | - if ($contentParts[0] != 'image') |
|
149 | - exit; |
|
155 | + if ($contentParts[0] != 'image') { |
|
156 | + exit; |
|
157 | + } |
|
150 | 158 | |
151 | 159 | $max_age = $time - $cached['time'] + (5 * 86400); |
152 | 160 | header('content-type: ' . $cached['content_type']); |
@@ -196,25 +204,29 @@ discard block |
||
196 | 204 | $image = fetch_web_data($request); |
197 | 205 | |
198 | 206 | // Looks like nobody was home |
199 | - if (empty($image)) |
|
200 | - return -1; |
|
207 | + if (empty($image)) { |
|
208 | + return -1; |
|
209 | + } |
|
201 | 210 | |
202 | 211 | // What kind of file did they give us? |
203 | 212 | $finfo = finfo_open(FILEINFO_MIME_TYPE); |
204 | 213 | $mime_type = finfo_buffer($finfo, $image); |
205 | 214 | |
206 | 215 | // SVG needs a little extra care |
207 | - if ($ext == 'svg' && $mime_type == 'text/plain') |
|
208 | - $mime_type = 'image/svg+xml'; |
|
216 | + if ($ext == 'svg' && $mime_type == 'text/plain') { |
|
217 | + $mime_type = 'image/svg+xml'; |
|
218 | + } |
|
209 | 219 | |
210 | 220 | // Make sure the url is returning an image |
211 | - if (strpos($mime_type, 'image/') !== 0) |
|
212 | - return -1; |
|
221 | + if (strpos($mime_type, 'image/') !== 0) { |
|
222 | + return -1; |
|
223 | + } |
|
213 | 224 | |
214 | 225 | // Validate the filesize |
215 | 226 | $size = strlen($image); |
216 | - if ($size > ($this->maxSize * 1024)) |
|
217 | - return 0; |
|
227 | + if ($size > ($this->maxSize * 1024)) { |
|
228 | + return 0; |
|
229 | + } |
|
218 | 230 | |
219 | 231 | // Cache it for later |
220 | 232 | return file_put_contents($dest, json_encode(array( |