@@ -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 | * Takes a message and parses it, returning nothing. |
@@ -46,17 +47,19 @@ discard block |
||
46 | 47 | $message = preg_replace('~\.{100,}~', '...', $message); |
47 | 48 | |
48 | 49 | // Trim off trailing quotes - these often happen by accident. |
49 | - while (substr($message, -7) == '[quote]') |
|
50 | - $message = substr($message, 0, -7); |
|
51 | - while (substr($message, 0, 8) == '[/quote]') |
|
52 | - $message = substr($message, 8); |
|
50 | + while (substr($message, -7) == '[quote]') { |
|
51 | + $message = substr($message, 0, -7); |
|
52 | + } |
|
53 | + while (substr($message, 0, 8) == '[/quote]') { |
|
54 | + $message = substr($message, 8); |
|
55 | + } |
|
53 | 56 | |
54 | 57 | // Find all code blocks, work out whether we'd be parsing them, then ensure they are all closed. |
55 | 58 | $in_tag = false; |
56 | 59 | $had_tag = false; |
57 | 60 | $codeopen = 0; |
58 | - if (preg_match_all('~(\[(/)*code(?:=[^\]]+)?\])~is', $message, $matches)) |
|
59 | - foreach ($matches[0] as $index => $dummy) |
|
61 | + if (preg_match_all('~(\[(/)*code(?:=[^\]]+)?\])~is', $message, $matches)) { |
|
62 | + foreach ($matches[0] as $index => $dummy) |
|
60 | 63 | { |
61 | 64 | // Closing? |
62 | 65 | if (!empty($matches[2][$index])) |
@@ -64,6 +67,7 @@ discard block |
||
64 | 67 | // If it's closing and we're not in a tag we need to open it... |
65 | 68 | if (!$in_tag) |
66 | 69 | $codeopen = true; |
70 | + } |
|
67 | 71 | // Either way we ain't in one any more. |
68 | 72 | $in_tag = false; |
69 | 73 | } |
@@ -72,17 +76,20 @@ discard block |
||
72 | 76 | { |
73 | 77 | $had_tag = true; |
74 | 78 | // If we're in a tag don't do nought! |
75 | - if (!$in_tag) |
|
76 | - $in_tag = true; |
|
79 | + if (!$in_tag) { |
|
80 | + $in_tag = true; |
|
81 | + } |
|
77 | 82 | } |
78 | 83 | } |
79 | 84 | |
80 | 85 | // If we have an open tag, close it. |
81 | - if ($in_tag) |
|
82 | - $message .= '[/code]'; |
|
86 | + if ($in_tag) { |
|
87 | + $message .= '[/code]'; |
|
88 | + } |
|
83 | 89 | // Open any ones that need to be open, only if we've never had a tag. |
84 | - if ($codeopen && !$had_tag) |
|
85 | - $message = '[code]' . $message; |
|
90 | + if ($codeopen && !$had_tag) { |
|
91 | + $message = '[code]' . $message; |
|
92 | + } |
|
86 | 93 | |
87 | 94 | // Now that we've fixed all the code tags, let's fix the img and url tags... |
88 | 95 | $parts = preg_split('~(\[/code\]|\[code(?:=[^\]]+)?\])~i', $message, -1, PREG_SPLIT_DELIM_CAPTURE); |
@@ -108,23 +115,26 @@ discard block |
||
108 | 115 | fixTags($message); |
109 | 116 | |
110 | 117 | // Replace /me.+?\n with [me=name]dsf[/me]\n. |
111 | - if (strpos($user_info['name'], '[') !== false || strpos($user_info['name'], ']') !== false || strpos($user_info['name'], '\'') !== false || strpos($user_info['name'], '"') !== false) |
|
112 | - $message = preg_replace('~(\A|\n)/me(?: | )([^\n]*)(?:\z)?~i', '$1[me="' . $user_info['name'] . '"]$2[/me]', $message); |
|
113 | - else |
|
114 | - $message = preg_replace('~(\A|\n)/me(?: | )([^\n]*)(?:\z)?~i', '$1[me=' . $user_info['name'] . ']$2[/me]', $message); |
|
118 | + if (strpos($user_info['name'], '[') !== false || strpos($user_info['name'], ']') !== false || strpos($user_info['name'], '\'') !== false || strpos($user_info['name'], '"') !== false) { |
|
119 | + $message = preg_replace('~(\A|\n)/me(?: | )([^\n]*)(?:\z)?~i', '$1[me="' . $user_info['name'] . '"]$2[/me]', $message); |
|
120 | + } else { |
|
121 | + $message = preg_replace('~(\A|\n)/me(?: | )([^\n]*)(?:\z)?~i', '$1[me=' . $user_info['name'] . ']$2[/me]', $message); |
|
122 | + } |
|
115 | 123 | |
116 | 124 | if (!$previewing && strpos($message, '[html]') !== false) |
117 | 125 | { |
118 | - if (allowedTo('admin_forum')) |
|
119 | - $message = preg_replace_callback('~\[html\](.+?)\[/html\]~is', function($m) { |
|
126 | + if (allowedTo('admin_forum')) { |
|
127 | + $message = preg_replace_callback('~\[html\](.+?)\[/html\]~is', function($m) { |
|
120 | 128 | return '[html]' . strtr(un_htmlspecialchars($m[1]), array("\n" => ' ', ' ' => '  ', '[' => '[', ']' => ']')) . '[/html]'; |
129 | + } |
|
121 | 130 | }, $message); |
122 | 131 | |
123 | 132 | // We should edit them out, or else if an admin edits the message they will get shown... |
124 | 133 | else |
125 | 134 | { |
126 | - while (strpos($message, '[html]') !== false) |
|
127 | - $message = preg_replace('~\[[/]?html\]~i', '', $message); |
|
135 | + while (strpos($message, '[html]') !== false) { |
|
136 | + $message = preg_replace('~\[[/]?html\]~i', '', $message); |
|
137 | + } |
|
128 | 138 | } |
129 | 139 | } |
130 | 140 | |
@@ -146,10 +156,12 @@ discard block |
||
146 | 156 | |
147 | 157 | $list_open = substr_count($message, '[list]') + substr_count($message, '[list '); |
148 | 158 | $list_close = substr_count($message, '[/list]'); |
149 | - if ($list_close - $list_open > 0) |
|
150 | - $message = str_repeat('[list]', $list_close - $list_open) . $message; |
|
151 | - if ($list_open - $list_close > 0) |
|
152 | - $message = $message . str_repeat('[/list]', $list_open - $list_close); |
|
159 | + if ($list_close - $list_open > 0) { |
|
160 | + $message = str_repeat('[list]', $list_close - $list_open) . $message; |
|
161 | + } |
|
162 | + if ($list_open - $list_close > 0) { |
|
163 | + $message = $message . str_repeat('[/list]', $list_open - $list_close); |
|
164 | + } |
|
153 | 165 | |
154 | 166 | $mistake_fixes = array( |
155 | 167 | // Find [table]s not followed by [tr]. |
@@ -198,8 +210,9 @@ discard block |
||
198 | 210 | ); |
199 | 211 | |
200 | 212 | // Fix up some use of tables without [tr]s, etc. (it has to be done more than once to catch it all.) |
201 | - for ($j = 0; $j < 3; $j++) |
|
202 | - $message = preg_replace(array_keys($mistake_fixes), $mistake_fixes, $message); |
|
213 | + for ($j = 0; $j < 3; $j++) { |
|
214 | + $message = preg_replace(array_keys($mistake_fixes), $mistake_fixes, $message); |
|
215 | + } |
|
203 | 216 | |
204 | 217 | // Remove empty bbc from the sections outside the code tags |
205 | 218 | $allowedEmpty = array( |
@@ -209,24 +222,28 @@ discard block |
||
209 | 222 | |
210 | 223 | require_once($sourcedir . '/Subs.php'); |
211 | 224 | |
212 | - foreach (($codes = parse_bbc(false)) as $code) |
|
213 | - if (!in_array($code['tag'], $allowedEmpty)) |
|
225 | + foreach (($codes = parse_bbc(false)) as $code) { |
|
226 | + if (!in_array($code['tag'], $allowedEmpty)) |
|
214 | 227 | $alltags[] = $code['tag']; |
228 | + } |
|
215 | 229 | |
216 | 230 | $alltags_regex = '\b' . implode("\b|\b", array_unique($alltags)) . '\b'; |
217 | 231 | |
218 | - while (preg_match('~\[(' . $alltags_regex . ')[^\]]*\]\s*\[/\1\]\s?~i', $message)) |
|
219 | - $message = preg_replace('~\[(' . $alltags_regex . ')[^\]]*\]\s*\[/\1\]\s?~i', '', $message); |
|
232 | + while (preg_match('~\[(' . $alltags_regex . ')[^\]]*\]\s*\[/\1\]\s?~i', $message)) { |
|
233 | + $message = preg_replace('~\[(' . $alltags_regex . ')[^\]]*\]\s*\[/\1\]\s?~i', '', $message); |
|
234 | + } |
|
220 | 235 | |
221 | 236 | // Restore code blocks |
222 | - if (!empty($code_tags)) |
|
223 | - $message = str_replace(array_keys($code_tags), array_values($code_tags), $message); |
|
237 | + if (!empty($code_tags)) { |
|
238 | + $message = str_replace(array_keys($code_tags), array_values($code_tags), $message); |
|
239 | + } |
|
224 | 240 | |
225 | 241 | // Restore white space entities |
226 | - if (!$previewing) |
|
227 | - $message = strtr($message, array(' ' => ' ', "\n" => '<br>', $context['utf8'] ? "\xC2\xA0" : "\xA0" => ' ')); |
|
228 | - else |
|
229 | - $message = strtr($message, array(' ' => ' ', $context['utf8'] ? "\xC2\xA0" : "\xA0" => ' ')); |
|
242 | + if (!$previewing) { |
|
243 | + $message = strtr($message, array(' ' => ' ', "\n" => '<br>', $context['utf8'] ? "\xC2\xA0" : "\xA0" => ' ')); |
|
244 | + } else { |
|
245 | + $message = strtr($message, array(' ' => ' ', $context['utf8'] ? "\xC2\xA0" : "\xA0" => ' ')); |
|
246 | + } |
|
230 | 247 | |
231 | 248 | // Now let's quickly clean up things that will slow our parser (which are common in posted code.) |
232 | 249 | $message = strtr($message, array('[]' => '[]', '['' => '['')); |
@@ -269,8 +286,9 @@ discard block |
||
269 | 286 | return "[time]" . timeformat("$m[1]", false) . "[/time]"; |
270 | 287 | }, $message); |
271 | 288 | |
272 | - if (!empty($code_tags)) |
|
273 | - $message = str_replace(array_keys($code_tags), array_values($code_tags), $message); |
|
289 | + if (!empty($code_tags)) { |
|
290 | + $message = str_replace(array_keys($code_tags), array_values($code_tags), $message); |
|
291 | + } |
|
274 | 292 | |
275 | 293 | // Change breaks back to \n's and &nsbp; back to spaces. |
276 | 294 | return preg_replace('~<br( /)?' . '>~', "\n", str_replace(' ', ' ', $message)); |
@@ -351,8 +369,9 @@ discard block |
||
351 | 369 | ); |
352 | 370 | |
353 | 371 | // Fix each type of tag. |
354 | - foreach ($fixArray as $param) |
|
355 | - fixTag($message, $param['tag'], $param['protocols'], $param['embeddedUrl'], $param['hasEqualSign'], !empty($param['hasExtra'])); |
|
372 | + foreach ($fixArray as $param) { |
|
373 | + fixTag($message, $param['tag'], $param['protocols'], $param['embeddedUrl'], $param['hasEqualSign'], !empty($param['hasExtra'])); |
|
374 | + } |
|
356 | 375 | |
357 | 376 | // Now fix possible security problems with images loading links automatically... |
358 | 377 | $message = preg_replace_callback('~(\[img.*?\])(.+?)\[/img\]~is', function($m) |
@@ -388,16 +407,19 @@ discard block |
||
388 | 407 | $desired_height = $height; |
389 | 408 | } |
390 | 409 | // Scale it to the width... |
391 | - elseif (empty($desired_width) && !empty($height)) |
|
392 | - $desired_width = (int) (($desired_height * $width) / $height); |
|
410 | + elseif (empty($desired_width) && !empty($height)) { |
|
411 | + $desired_width = (int) (($desired_height * $width) / $height); |
|
412 | + } |
|
393 | 413 | // Scale if to the height. |
394 | - elseif (!empty($width)) |
|
395 | - $desired_height = (int) (($desired_width * $height) / $width); |
|
414 | + elseif (!empty($width)) { |
|
415 | + $desired_height = (int) (($desired_width * $height) / $width); |
|
416 | + } |
|
396 | 417 | } |
397 | 418 | |
398 | 419 | // If the width and height are fine, just continue along... |
399 | - if ($desired_width <= $modSettings['max_image_width'] && $desired_height <= $modSettings['max_image_height']) |
|
400 | - continue; |
|
420 | + if ($desired_width <= $modSettings['max_image_width'] && $desired_height <= $modSettings['max_image_height']) { |
|
421 | + continue; |
|
422 | + } |
|
401 | 423 | |
402 | 424 | // Too bad, it's too wide. Make it as wide as the maximum. |
403 | 425 | if ($desired_width > $modSettings['max_image_width'] && !empty($modSettings['max_image_width'])) |
@@ -417,8 +439,9 @@ discard block |
||
417 | 439 | } |
418 | 440 | |
419 | 441 | // If any img tags were actually changed... |
420 | - if (!empty($replaces)) |
|
421 | - $message = strtr($message, $replaces); |
|
442 | + if (!empty($replaces)) { |
|
443 | + $message = strtr($message, $replaces); |
|
444 | + } |
|
422 | 445 | } |
423 | 446 | } |
424 | 447 | |
@@ -437,10 +460,11 @@ discard block |
||
437 | 460 | { |
438 | 461 | global $boardurl, $scripturl; |
439 | 462 | |
440 | - if (preg_match('~^([^:]+://[^/]+)~', $boardurl, $match) != 0) |
|
441 | - $domain_url = $match[1]; |
|
442 | - else |
|
443 | - $domain_url = $boardurl . '/'; |
|
463 | + if (preg_match('~^([^:]+://[^/]+)~', $boardurl, $match) != 0) { |
|
464 | + $domain_url = $match[1]; |
|
465 | + } else { |
|
466 | + $domain_url = $boardurl . '/'; |
|
467 | + } |
|
444 | 468 | |
445 | 469 | $replaces = array(); |
446 | 470 | |
@@ -448,11 +472,11 @@ discard block |
||
448 | 472 | { |
449 | 473 | $quoted = preg_match('~\[(' . $myTag . ')="~', $message); |
450 | 474 | preg_match_all('~\[(' . $myTag . ')=' . ($quoted ? '"(.*?)"' : '([^\]]*?)') . '\](?:(.+?)\[/(' . $myTag . ')\])?~is', $message, $matches); |
475 | + } elseif ($hasEqualSign) { |
|
476 | + preg_match_all('~\[(' . $myTag . ')=([^\]]*?)\](?:(.+?)\[/(' . $myTag . ')\])?~is', $message, $matches); |
|
477 | + } else { |
|
478 | + preg_match_all('~\[(' . $myTag . ($hasExtra ? '(?:[^\]]*?)' : '') . ')\](.+?)\[/(' . $myTag . ')\]~is', $message, $matches); |
|
451 | 479 | } |
452 | - elseif ($hasEqualSign) |
|
453 | - preg_match_all('~\[(' . $myTag . ')=([^\]]*?)\](?:(.+?)\[/(' . $myTag . ')\])?~is', $message, $matches); |
|
454 | - else |
|
455 | - preg_match_all('~\[(' . $myTag . ($hasExtra ? '(?:[^\]]*?)' : '') . ')\](.+?)\[/(' . $myTag . ')\]~is', $message, $matches); |
|
456 | 480 | |
457 | 481 | foreach ($matches[0] as $k => $dummy) |
458 | 482 | { |
@@ -465,49 +489,53 @@ discard block |
||
465 | 489 | foreach ($protocols as $protocol) |
466 | 490 | { |
467 | 491 | $found = strncasecmp($replace, $protocol . '://', strlen($protocol) + 3) === 0; |
468 | - if ($found) |
|
469 | - break; |
|
492 | + if ($found) { |
|
493 | + break; |
|
494 | + } |
|
470 | 495 | } |
471 | 496 | |
472 | 497 | if (!$found && $protocols[0] == 'http') |
473 | 498 | { |
474 | - if (substr($replace, 0, 1) == '/' && substr($replace, 0, 2) != '//') |
|
475 | - $replace = $domain_url . $replace; |
|
476 | - elseif (substr($replace, 0, 1) == '?') |
|
477 | - $replace = $scripturl . $replace; |
|
478 | - elseif (substr($replace, 0, 1) == '#' && $embeddedUrl) |
|
499 | + if (substr($replace, 0, 1) == '/' && substr($replace, 0, 2) != '//') { |
|
500 | + $replace = $domain_url . $replace; |
|
501 | + } elseif (substr($replace, 0, 1) == '?') { |
|
502 | + $replace = $scripturl . $replace; |
|
503 | + } elseif (substr($replace, 0, 1) == '#' && $embeddedUrl) |
|
479 | 504 | { |
480 | 505 | $replace = '#' . preg_replace('~[^A-Za-z0-9_\-#]~', '', substr($replace, 1)); |
481 | 506 | $this_tag = 'iurl'; |
482 | 507 | $this_close = 'iurl'; |
508 | + } elseif (substr($replace, 0, 2) != '//') { |
|
509 | + $replace = $protocols[0] . '://' . $replace; |
|
483 | 510 | } |
484 | - elseif (substr($replace, 0, 2) != '//') |
|
485 | - $replace = $protocols[0] . '://' . $replace; |
|
486 | - } |
|
487 | - elseif (!$found && $protocols[0] == 'ftp') |
|
488 | - $replace = $protocols[0] . '://' . preg_replace('~^(?!ftps?)[^:]+://~', '', $replace); |
|
489 | - elseif (!$found) |
|
490 | - $replace = $protocols[0] . '://' . $replace; |
|
491 | - |
|
492 | - if ($hasEqualSign && $embeddedUrl) |
|
493 | - $replaces[$matches[0][$k]] = '[' . $this_tag . '="' . $replace . '"]' . (empty($matches[4][$k]) ? '' : $matches[3][$k] . '[/' . $this_close . ']'); |
|
494 | - elseif ($hasEqualSign) |
|
495 | - $replaces['[' . $matches[1][$k] . '=' . $matches[2][$k] . ']'] = '[' . $this_tag . '=' . $replace . ']'; |
|
496 | - elseif ($embeddedUrl) |
|
497 | - $replaces['[' . $matches[1][$k] . ']' . $matches[2][$k] . '[/' . $matches[3][$k] . ']'] = '[' . $this_tag . '=' . $replace . ']' . $matches[2][$k] . '[/' . $this_close . ']'; |
|
498 | - else |
|
499 | - $replaces['[' . $matches[1][$k] . ']' . $matches[2][$k] . '[/' . $matches[3][$k] . ']'] = '[' . $this_tag . ']' . $replace . '[/' . $this_close . ']'; |
|
511 | + } elseif (!$found && $protocols[0] == 'ftp') { |
|
512 | + $replace = $protocols[0] . '://' . preg_replace('~^(?!ftps?)[^:]+://~', '', $replace); |
|
513 | + } elseif (!$found) { |
|
514 | + $replace = $protocols[0] . '://' . $replace; |
|
515 | + } |
|
516 | + |
|
517 | + if ($hasEqualSign && $embeddedUrl) { |
|
518 | + $replaces[$matches[0][$k]] = '[' . $this_tag . '="' . $replace . '"]' . (empty($matches[4][$k]) ? '' : $matches[3][$k] . '[/' . $this_close . ']'); |
|
519 | + } elseif ($hasEqualSign) { |
|
520 | + $replaces['[' . $matches[1][$k] . '=' . $matches[2][$k] . ']'] = '[' . $this_tag . '=' . $replace . ']'; |
|
521 | + } elseif ($embeddedUrl) { |
|
522 | + $replaces['[' . $matches[1][$k] . ']' . $matches[2][$k] . '[/' . $matches[3][$k] . ']'] = '[' . $this_tag . '=' . $replace . ']' . $matches[2][$k] . '[/' . $this_close . ']'; |
|
523 | + } else { |
|
524 | + $replaces['[' . $matches[1][$k] . ']' . $matches[2][$k] . '[/' . $matches[3][$k] . ']'] = '[' . $this_tag . ']' . $replace . '[/' . $this_close . ']'; |
|
525 | + } |
|
500 | 526 | } |
501 | 527 | |
502 | 528 | foreach ($replaces as $k => $v) |
503 | 529 | { |
504 | - if ($k == $v) |
|
505 | - unset($replaces[$k]); |
|
530 | + if ($k == $v) { |
|
531 | + unset($replaces[$k]); |
|
532 | + } |
|
506 | 533 | } |
507 | 534 | |
508 | - if (!empty($replaces)) |
|
509 | - $message = strtr($message, $replaces); |
|
510 | -} |
|
535 | + if (!empty($replaces)) { |
|
536 | + $message = strtr($message, $replaces); |
|
537 | + } |
|
538 | + } |
|
511 | 539 | |
512 | 540 | /** |
513 | 541 | * This function sends an email to the specified recipient(s). |
@@ -551,8 +579,9 @@ discard block |
||
551 | 579 | } |
552 | 580 | |
553 | 581 | // Nothing left? Nothing else to do |
554 | - if (empty($to_array)) |
|
555 | - return true; |
|
582 | + if (empty($to_array)) { |
|
583 | + return true; |
|
584 | + } |
|
556 | 585 | |
557 | 586 | // Once upon a time, Hotmail could not interpret non-ASCII mails. |
558 | 587 | // In honour of those days, it's still called the 'hotmail fix'. |
@@ -569,15 +598,17 @@ discard block |
||
569 | 598 | } |
570 | 599 | |
571 | 600 | // Call this function recursively for the hotmail addresses. |
572 | - if (!empty($hotmail_to)) |
|
573 | - $mail_result = sendmail($hotmail_to, $subject, $message, $from, $message_id, $send_html, $priority, true, $is_private); |
|
601 | + if (!empty($hotmail_to)) { |
|
602 | + $mail_result = sendmail($hotmail_to, $subject, $message, $from, $message_id, $send_html, $priority, true, $is_private); |
|
603 | + } |
|
574 | 604 | |
575 | 605 | // The remaining addresses no longer need the fix. |
576 | 606 | $hotmail_fix = false; |
577 | 607 | |
578 | 608 | // No other addresses left? Return instantly. |
579 | - if (empty($to_array)) |
|
580 | - return $mail_result; |
|
609 | + if (empty($to_array)) { |
|
610 | + return $mail_result; |
|
611 | + } |
|
581 | 612 | } |
582 | 613 | |
583 | 614 | // Get rid of entities. |
@@ -602,13 +633,15 @@ discard block |
||
602 | 633 | $headers .= 'Return-Path: ' . (empty($modSettings['mail_from']) ? $webmaster_email : $modSettings['mail_from']) . $line_break; |
603 | 634 | $headers .= 'Date: ' . gmdate('D, d M Y H:i:s') . ' -0000' . $line_break; |
604 | 635 | |
605 | - if ($message_id !== null && empty($modSettings['mail_no_message_id'])) |
|
606 | - $headers .= 'Message-ID: <' . md5($scripturl . microtime()) . '-' . $message_id . strstr(empty($modSettings['mail_from']) ? $webmaster_email : $modSettings['mail_from'], '@') . '>' . $line_break; |
|
636 | + if ($message_id !== null && empty($modSettings['mail_no_message_id'])) { |
|
637 | + $headers .= 'Message-ID: <' . md5($scripturl . microtime()) . '-' . $message_id . strstr(empty($modSettings['mail_from']) ? $webmaster_email : $modSettings['mail_from'], '@') . '>' . $line_break; |
|
638 | + } |
|
607 | 639 | $headers .= 'X-Mailer: SMF' . $line_break; |
608 | 640 | |
609 | 641 | // Pass this to the integration before we start modifying the output -- it'll make it easier later. |
610 | - if (in_array(false, call_integration_hook('integrate_outgoing_email', array(&$subject, &$message, &$headers, &$to_array)), true)) |
|
611 | - return false; |
|
642 | + if (in_array(false, call_integration_hook('integrate_outgoing_email', array(&$subject, &$message, &$headers, &$to_array)), true)) { |
|
643 | + return false; |
|
644 | + } |
|
612 | 645 | |
613 | 646 | // Save the original message... |
614 | 647 | $orig_message = $message; |
@@ -657,17 +690,19 @@ discard block |
||
657 | 690 | } |
658 | 691 | |
659 | 692 | // Are we using the mail queue, if so this is where we butt in... |
660 | - if ($priority != 0) |
|
661 | - return AddMailQueue(false, $to_array, $subject, $message, $headers, $send_html, $priority, $is_private); |
|
693 | + if ($priority != 0) { |
|
694 | + return AddMailQueue(false, $to_array, $subject, $message, $headers, $send_html, $priority, $is_private); |
|
695 | + } |
|
662 | 696 | |
663 | 697 | // If it's a priority mail, send it now - note though that this should NOT be used for sending many at once. |
664 | 698 | elseif (!empty($modSettings['mail_limit'])) |
665 | 699 | { |
666 | 700 | list ($last_mail_time, $mails_this_minute) = @explode('|', $modSettings['mail_recent']); |
667 | - if (empty($mails_this_minute) || time() > $last_mail_time + 60) |
|
668 | - $new_queue_stat = time() . '|' . 1; |
|
669 | - else |
|
670 | - $new_queue_stat = $last_mail_time . '|' . ((int) $mails_this_minute + 1); |
|
701 | + if (empty($mails_this_minute) || time() > $last_mail_time + 60) { |
|
702 | + $new_queue_stat = time() . '|' . 1; |
|
703 | + } else { |
|
704 | + $new_queue_stat = $last_mail_time . '|' . ((int) $mails_this_minute + 1); |
|
705 | + } |
|
671 | 706 | |
672 | 707 | updateSettings(array('mail_recent' => $new_queue_stat)); |
673 | 708 | } |
@@ -692,12 +727,13 @@ discard block |
||
692 | 727 | |
693 | 728 | // Wait, wait, I'm still sending here! |
694 | 729 | @set_time_limit(300); |
695 | - if (function_exists('apache_reset_timeout')) |
|
696 | - @apache_reset_timeout(); |
|
730 | + if (function_exists('apache_reset_timeout')) { |
|
731 | + @apache_reset_timeout(); |
|
732 | + } |
|
697 | 733 | } |
734 | + } else { |
|
735 | + $mail_result = $mail_result && smtp_mail($to_array, $subject, $message, $headers); |
|
698 | 736 | } |
699 | - else |
|
700 | - $mail_result = $mail_result && smtp_mail($to_array, $subject, $message, $headers); |
|
701 | 737 | |
702 | 738 | // Everything go smoothly? |
703 | 739 | return $mail_result; |
@@ -723,8 +759,9 @@ discard block |
||
723 | 759 | static $cur_insert = array(); |
724 | 760 | static $cur_insert_len = 0; |
725 | 761 | |
726 | - if ($cur_insert_len == 0) |
|
727 | - $cur_insert = array(); |
|
762 | + if ($cur_insert_len == 0) { |
|
763 | + $cur_insert = array(); |
|
764 | + } |
|
728 | 765 | |
729 | 766 | // If we're flushing, make the final inserts - also if we're near the MySQL length limit! |
730 | 767 | if (($flush || $cur_insert_len > 800000) && !empty($cur_insert)) |
@@ -799,8 +836,9 @@ discard block |
||
799 | 836 | } |
800 | 837 | |
801 | 838 | // If they are using SSI there is a good chance obExit will never be called. So lets be nice and flush it for them. |
802 | - if (SMF === 'SSI' || SMF === 'BACKGROUND') |
|
803 | - return AddMailQueue(true); |
|
839 | + if (SMF === 'SSI' || SMF === 'BACKGROUND') { |
|
840 | + return AddMailQueue(true); |
|
841 | + } |
|
804 | 842 | |
805 | 843 | return true; |
806 | 844 | } |
@@ -831,23 +869,26 @@ discard block |
||
831 | 869 | 'sent' => array() |
832 | 870 | ); |
833 | 871 | |
834 | - if ($from === null) |
|
835 | - $from = array( |
|
872 | + if ($from === null) { |
|
873 | + $from = array( |
|
836 | 874 | 'id' => $user_info['id'], |
837 | 875 | 'name' => $user_info['name'], |
838 | 876 | 'username' => $user_info['username'] |
839 | 877 | ); |
878 | + } |
|
840 | 879 | |
841 | 880 | // This is the one that will go in their inbox. |
842 | 881 | $htmlmessage = $smcFunc['htmlspecialchars']($message, ENT_QUOTES); |
843 | 882 | preparsecode($htmlmessage); |
844 | 883 | $htmlsubject = strtr($smcFunc['htmlspecialchars']($subject), array("\r" => '', "\n" => '', "\t" => '')); |
845 | - if ($smcFunc['strlen']($htmlsubject) > 100) |
|
846 | - $htmlsubject = $smcFunc['substr']($htmlsubject, 0, 100); |
|
884 | + if ($smcFunc['strlen']($htmlsubject) > 100) { |
|
885 | + $htmlsubject = $smcFunc['substr']($htmlsubject, 0, 100); |
|
886 | + } |
|
847 | 887 | |
848 | 888 | // Make sure is an array |
849 | - if (!is_array($recipients)) |
|
850 | - $recipients = array($recipients); |
|
889 | + if (!is_array($recipients)) { |
|
890 | + $recipients = array($recipients); |
|
891 | + } |
|
851 | 892 | |
852 | 893 | // Integrated PMs |
853 | 894 | call_integration_hook('integrate_personal_message', array(&$recipients, &$from, &$subject, &$message)); |
@@ -875,21 +916,23 @@ discard block |
||
875 | 916 | 'usernames' => array_keys($usernames), |
876 | 917 | ) |
877 | 918 | ); |
878 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
879 | - if (isset($usernames[$smcFunc['strtolower']($row['member_name'])])) |
|
919 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
920 | + if (isset($usernames[$smcFunc['strtolower']($row['member_name'])])) |
|
880 | 921 | $usernames[$smcFunc['strtolower']($row['member_name'])] = $row['id_member']; |
922 | + } |
|
881 | 923 | $smcFunc['db_free_result']($request); |
882 | 924 | |
883 | 925 | // Replace the usernames with IDs. Drop usernames that couldn't be found. |
884 | - foreach ($recipients as $rec_type => $rec) |
|
885 | - foreach ($rec as $id => $member) |
|
926 | + foreach ($recipients as $rec_type => $rec) { |
|
927 | + foreach ($rec as $id => $member) |
|
886 | 928 | { |
887 | 929 | if (is_numeric($recipients[$rec_type][$id])) |
888 | 930 | continue; |
931 | + } |
|
889 | 932 | |
890 | - if (!empty($usernames[$member])) |
|
891 | - $recipients[$rec_type][$id] = $usernames[$member]; |
|
892 | - else |
|
933 | + if (!empty($usernames[$member])) { |
|
934 | + $recipients[$rec_type][$id] = $usernames[$member]; |
|
935 | + } else |
|
893 | 936 | { |
894 | 937 | $log['failed'][$id] = sprintf($txt['pm_error_user_not_found'], $recipients[$rec_type][$id]); |
895 | 938 | unset($recipients[$rec_type][$id]); |
@@ -927,8 +970,9 @@ discard block |
||
927 | 970 | $delete = false; |
928 | 971 | foreach ($criteria as $criterium) |
929 | 972 | { |
930 | - if (($criterium['t'] == 'mid' && $criterium['v'] == $from['id']) || ($criterium['t'] == 'gid' && in_array($criterium['v'], $user_info['groups'])) || ($criterium['t'] == 'sub' && strpos($subject, $criterium['v']) !== false) || ($criterium['t'] == 'msg' && strpos($message, $criterium['v']) !== false)) |
|
931 | - $delete = true; |
|
973 | + if (($criterium['t'] == 'mid' && $criterium['v'] == $from['id']) || ($criterium['t'] == 'gid' && in_array($criterium['v'], $user_info['groups'])) || ($criterium['t'] == 'sub' && strpos($subject, $criterium['v']) !== false) || ($criterium['t'] == 'msg' && strpos($message, $criterium['v']) !== false)) { |
|
974 | + $delete = true; |
|
975 | + } |
|
932 | 976 | // If we're adding and one criteria don't match then we stop! |
933 | 977 | elseif (!$row['is_or']) |
934 | 978 | { |
@@ -936,8 +980,9 @@ discard block |
||
936 | 980 | break; |
937 | 981 | } |
938 | 982 | } |
939 | - if ($delete) |
|
940 | - $deletes[$row['id_member']] = 1; |
|
983 | + if ($delete) { |
|
984 | + $deletes[$row['id_member']] = 1; |
|
985 | + } |
|
941 | 986 | } |
942 | 987 | $smcFunc['db_free_result']($request); |
943 | 988 | |
@@ -952,8 +997,9 @@ discard block |
||
952 | 997 | array( |
953 | 998 | ) |
954 | 999 | ); |
955 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
956 | - $message_limit_cache[$row['id_group']] = $row['max_messages']; |
|
1000 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1001 | + $message_limit_cache[$row['id_group']] = $row['max_messages']; |
|
1002 | + } |
|
957 | 1003 | $smcFunc['db_free_result']($request); |
958 | 1004 | } |
959 | 1005 | |
@@ -961,8 +1007,9 @@ discard block |
||
961 | 1007 | require_once($sourcedir . '/Subs-Members.php'); |
962 | 1008 | $pmReadGroups = groupsAllowedTo('pm_read'); |
963 | 1009 | |
964 | - if (empty($modSettings['permission_enable_deny'])) |
|
965 | - $pmReadGroups['denied'] = array(); |
|
1010 | + if (empty($modSettings['permission_enable_deny'])) { |
|
1011 | + $pmReadGroups['denied'] = array(); |
|
1012 | + } |
|
966 | 1013 | |
967 | 1014 | // Load their alert preferences |
968 | 1015 | require_once($sourcedir . '/Subs-Notify.php'); |
@@ -994,8 +1041,9 @@ discard block |
||
994 | 1041 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
995 | 1042 | { |
996 | 1043 | // Don't do anything for members to be deleted! |
997 | - if (isset($deletes[$row['id_member']])) |
|
998 | - continue; |
|
1044 | + if (isset($deletes[$row['id_member']])) { |
|
1045 | + continue; |
|
1046 | + } |
|
999 | 1047 | |
1000 | 1048 | // Load the preferences for this member (if any) |
1001 | 1049 | $prefs = !empty($notifyPrefs[$row['id_member']]) ? $notifyPrefs[$row['id_member']] : array(); |
@@ -1016,8 +1064,9 @@ discard block |
||
1016 | 1064 | { |
1017 | 1065 | foreach ($groups as $id) |
1018 | 1066 | { |
1019 | - if (isset($message_limit_cache[$id]) && $message_limit != 0 && $message_limit < $message_limit_cache[$id]) |
|
1020 | - $message_limit = $message_limit_cache[$id]; |
|
1067 | + if (isset($message_limit_cache[$id]) && $message_limit != 0 && $message_limit < $message_limit_cache[$id]) { |
|
1068 | + $message_limit = $message_limit_cache[$id]; |
|
1069 | + } |
|
1021 | 1070 | } |
1022 | 1071 | |
1023 | 1072 | if ($message_limit > 0 && $message_limit <= $row['instant_messages']) |
@@ -1065,8 +1114,9 @@ discard block |
||
1065 | 1114 | $smcFunc['db_free_result']($request); |
1066 | 1115 | |
1067 | 1116 | // Only 'send' the message if there are any recipients left. |
1068 | - if (empty($all_to)) |
|
1069 | - return $log; |
|
1117 | + if (empty($all_to)) { |
|
1118 | + return $log; |
|
1119 | + } |
|
1070 | 1120 | |
1071 | 1121 | // Insert the message itself and then grab the last insert id. |
1072 | 1122 | $id_pm = $smcFunc['db_insert']('', |
@@ -1087,8 +1137,8 @@ discard block |
||
1087 | 1137 | if (!empty($id_pm)) |
1088 | 1138 | { |
1089 | 1139 | // If this is new we need to set it part of it's own conversation. |
1090 | - if (empty($pm_head)) |
|
1091 | - $smcFunc['db_query']('', ' |
|
1140 | + if (empty($pm_head)) { |
|
1141 | + $smcFunc['db_query']('', ' |
|
1092 | 1142 | UPDATE {db_prefix}personal_messages |
1093 | 1143 | SET id_pm_head = {int:id_pm_head} |
1094 | 1144 | WHERE id_pm = {int:id_pm_head}', |
@@ -1096,6 +1146,7 @@ discard block |
||
1096 | 1146 | 'id_pm_head' => $id_pm, |
1097 | 1147 | ) |
1098 | 1148 | ); |
1149 | + } |
|
1099 | 1150 | |
1100 | 1151 | // Some people think manually deleting personal_messages is fun... it's not. We protect against it though :) |
1101 | 1152 | $smcFunc['db_query']('', ' |
@@ -1111,8 +1162,9 @@ discard block |
||
1111 | 1162 | foreach ($all_to as $to) |
1112 | 1163 | { |
1113 | 1164 | $insertRows[] = array($id_pm, $to, in_array($to, $recipients['bcc']) ? 1 : 0, isset($deletes[$to]) ? 1 : 0, 1); |
1114 | - if (!in_array($to, $recipients['bcc'])) |
|
1115 | - $to_list[] = $to; |
|
1165 | + if (!in_array($to, $recipients['bcc'])) { |
|
1166 | + $to_list[] = $to; |
|
1167 | + } |
|
1116 | 1168 | } |
1117 | 1169 | |
1118 | 1170 | $smcFunc['db_insert']('insert', |
@@ -1130,9 +1182,9 @@ discard block |
||
1130 | 1182 | { |
1131 | 1183 | censorText($message); |
1132 | 1184 | $message = trim(un_htmlspecialchars(strip_tags(strtr(parse_bbc($smcFunc['htmlspecialchars']($message), false), array('<br>' => "\n", '</div>' => "\n", '</li>' => "\n", '[' => '[', ']' => ']'))))); |
1185 | + } else { |
|
1186 | + $message = ''; |
|
1133 | 1187 | } |
1134 | - else |
|
1135 | - $message = ''; |
|
1136 | 1188 | |
1137 | 1189 | $to_names = array(); |
1138 | 1190 | if (count($to_list) > 1) |
@@ -1145,8 +1197,9 @@ discard block |
||
1145 | 1197 | 'to_members' => $to_list, |
1146 | 1198 | ) |
1147 | 1199 | ); |
1148 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1149 | - $to_names[] = un_htmlspecialchars($row['real_name']); |
|
1200 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1201 | + $to_names[] = un_htmlspecialchars($row['real_name']); |
|
1202 | + } |
|
1150 | 1203 | $smcFunc['db_free_result']($request); |
1151 | 1204 | } |
1152 | 1205 | $replacements = array( |
@@ -1174,11 +1227,13 @@ discard block |
||
1174 | 1227 | loadLanguage('index+PersonalMessage'); |
1175 | 1228 | |
1176 | 1229 | // Add one to their unread and read message counts. |
1177 | - foreach ($all_to as $k => $id) |
|
1178 | - if (isset($deletes[$id])) |
|
1230 | + foreach ($all_to as $k => $id) { |
|
1231 | + if (isset($deletes[$id])) |
|
1179 | 1232 | unset($all_to[$k]); |
1180 | - if (!empty($all_to)) |
|
1181 | - updateMemberData($all_to, array('instant_messages' => '+', 'unread_messages' => '+', 'new_pm' => 1)); |
|
1233 | + } |
|
1234 | + if (!empty($all_to)) { |
|
1235 | + updateMemberData($all_to, array('instant_messages' => '+', 'unread_messages' => '+', 'new_pm' => 1)); |
|
1236 | + } |
|
1182 | 1237 | |
1183 | 1238 | return $log; |
1184 | 1239 | } |
@@ -1208,15 +1263,17 @@ discard block |
||
1208 | 1263 | // Let's, for now, assume there are only 'ish characters. |
1209 | 1264 | $simple = true; |
1210 | 1265 | |
1211 | - foreach ($matches[1] as $entity) |
|
1212 | - if ($entity > 128) |
|
1266 | + foreach ($matches[1] as $entity) { |
|
1267 | + if ($entity > 128) |
|
1213 | 1268 | $simple = false; |
1269 | + } |
|
1214 | 1270 | unset($matches); |
1215 | 1271 | |
1216 | - if ($simple) |
|
1217 | - $string = preg_replace_callback('~&#(\d{3,8});~', function($m) |
|
1272 | + if ($simple) { |
|
1273 | + $string = preg_replace_callback('~&#(\d{3,8});~', function($m) |
|
1218 | 1274 | { |
1219 | 1275 | return chr("$m[1]"); |
1276 | + } |
|
1220 | 1277 | }, $string); |
1221 | 1278 | else |
1222 | 1279 | { |
@@ -1224,8 +1281,9 @@ discard block |
||
1224 | 1281 | if (!$context['utf8'] && function_exists('iconv')) |
1225 | 1282 | { |
1226 | 1283 | $newstring = @iconv($context['character_set'], 'UTF-8', $string); |
1227 | - if ($newstring) |
|
1228 | - $string = $newstring; |
|
1284 | + if ($newstring) { |
|
1285 | + $string = $newstring; |
|
1286 | + } |
|
1229 | 1287 | } |
1230 | 1288 | |
1231 | 1289 | $string = preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $string); |
@@ -1241,23 +1299,25 @@ discard block |
||
1241 | 1299 | if (!$context['utf8'] && function_exists('iconv')) |
1242 | 1300 | { |
1243 | 1301 | $newstring = @iconv($context['character_set'], 'UTF-8', $string); |
1244 | - if ($newstring) |
|
1245 | - $string = $newstring; |
|
1302 | + if ($newstring) { |
|
1303 | + $string = $newstring; |
|
1304 | + } |
|
1246 | 1305 | } |
1247 | 1306 | |
1248 | 1307 | $entityConvert = function($m) |
1249 | 1308 | { |
1250 | 1309 | $c = $m[1]; |
1251 | - if (strlen($c) === 1 && ord($c[0]) <= 0x7F) |
|
1252 | - return $c; |
|
1253 | - elseif (strlen($c) === 2 && ord($c[0]) >= 0xC0 && ord($c[0]) <= 0xDF) |
|
1254 | - return "&#" . (((ord($c[0]) ^ 0xC0) << 6) + (ord($c[1]) ^ 0x80)) . ";"; |
|
1255 | - elseif (strlen($c) === 3 && ord($c[0]) >= 0xE0 && ord($c[0]) <= 0xEF) |
|
1256 | - return "&#" . (((ord($c[0]) ^ 0xE0) << 12) + ((ord($c[1]) ^ 0x80) << 6) + (ord($c[2]) ^ 0x80)) . ";"; |
|
1257 | - elseif (strlen($c) === 4 && ord($c[0]) >= 0xF0 && ord($c[0]) <= 0xF7) |
|
1258 | - return "&#" . (((ord($c[0]) ^ 0xF0) << 18) + ((ord($c[1]) ^ 0x80) << 12) + ((ord($c[2]) ^ 0x80) << 6) + (ord($c[3]) ^ 0x80)) . ";"; |
|
1259 | - else |
|
1260 | - return ""; |
|
1310 | + if (strlen($c) === 1 && ord($c[0]) <= 0x7F) { |
|
1311 | + return $c; |
|
1312 | + } elseif (strlen($c) === 2 && ord($c[0]) >= 0xC0 && ord($c[0]) <= 0xDF) { |
|
1313 | + return "&#" . (((ord($c[0]) ^ 0xC0) << 6) + (ord($c[1]) ^ 0x80)) . ";"; |
|
1314 | + } elseif (strlen($c) === 3 && ord($c[0]) >= 0xE0 && ord($c[0]) <= 0xEF) { |
|
1315 | + return "&#" . (((ord($c[0]) ^ 0xE0) << 12) + ((ord($c[1]) ^ 0x80) << 6) + (ord($c[2]) ^ 0x80)) . ";"; |
|
1316 | + } elseif (strlen($c) === 4 && ord($c[0]) >= 0xF0 && ord($c[0]) <= 0xF7) { |
|
1317 | + return "&#" . (((ord($c[0]) ^ 0xF0) << 18) + ((ord($c[1]) ^ 0x80) << 12) + ((ord($c[2]) ^ 0x80) << 6) + (ord($c[3]) ^ 0x80)) . ";"; |
|
1318 | + } else { |
|
1319 | + return ""; |
|
1320 | + } |
|
1261 | 1321 | }; |
1262 | 1322 | |
1263 | 1323 | // Convert all 'special' characters to HTML entities. |
@@ -1271,19 +1331,20 @@ discard block |
||
1271 | 1331 | $string = base64_encode($string); |
1272 | 1332 | |
1273 | 1333 | // Show the characterset and the transfer-encoding for header strings. |
1274 | - if ($with_charset) |
|
1275 | - $string = '=?' . $charset . '?B?' . $string . '?='; |
|
1334 | + if ($with_charset) { |
|
1335 | + $string = '=?' . $charset . '?B?' . $string . '?='; |
|
1336 | + } |
|
1276 | 1337 | |
1277 | 1338 | // Break it up in lines (mail body). |
1278 | - else |
|
1279 | - $string = chunk_split($string, 76, $line_break); |
|
1339 | + else { |
|
1340 | + $string = chunk_split($string, 76, $line_break); |
|
1341 | + } |
|
1280 | 1342 | |
1281 | 1343 | return array($charset, $string, 'base64'); |
1344 | + } else { |
|
1345 | + return array($charset, $string, '7bit'); |
|
1346 | + } |
|
1282 | 1347 | } |
1283 | - |
|
1284 | - else |
|
1285 | - return array($charset, $string, '7bit'); |
|
1286 | -} |
|
1287 | 1348 | |
1288 | 1349 | /** |
1289 | 1350 | * Sends mail, like mail() but over SMTP. |
@@ -1307,8 +1368,9 @@ discard block |
||
1307 | 1368 | if ($modSettings['mail_type'] == 3 && $modSettings['smtp_username'] != '' && $modSettings['smtp_password'] != '') |
1308 | 1369 | { |
1309 | 1370 | $socket = fsockopen($modSettings['smtp_host'], 110, $errno, $errstr, 2); |
1310 | - if (!$socket && (substr($modSettings['smtp_host'], 0, 5) == 'smtp.' || substr($modSettings['smtp_host'], 0, 11) == 'ssl://smtp.')) |
|
1311 | - $socket = fsockopen(strtr($modSettings['smtp_host'], array('smtp.' => 'pop.')), 110, $errno, $errstr, 2); |
|
1371 | + if (!$socket && (substr($modSettings['smtp_host'], 0, 5) == 'smtp.' || substr($modSettings['smtp_host'], 0, 11) == 'ssl://smtp.')) { |
|
1372 | + $socket = fsockopen(strtr($modSettings['smtp_host'], array('smtp.' => 'pop.')), 110, $errno, $errstr, 2); |
|
1373 | + } |
|
1312 | 1374 | |
1313 | 1375 | if ($socket) |
1314 | 1376 | { |
@@ -1329,8 +1391,9 @@ discard block |
||
1329 | 1391 | // Maybe we can still save this? The port might be wrong. |
1330 | 1392 | if (substr($modSettings['smtp_host'], 0, 4) == 'ssl:' && (empty($modSettings['smtp_port']) || $modSettings['smtp_port'] == 25)) |
1331 | 1393 | { |
1332 | - if ($socket = fsockopen($modSettings['smtp_host'], 465, $errno, $errstr, 3)) |
|
1333 | - log_error($txt['smtp_port_ssl']); |
|
1394 | + if ($socket = fsockopen($modSettings['smtp_host'], 465, $errno, $errstr, 3)) { |
|
1395 | + log_error($txt['smtp_port_ssl']); |
|
1396 | + } |
|
1334 | 1397 | } |
1335 | 1398 | |
1336 | 1399 | // Unable to connect! Don't show any error message, but just log one and try to continue anyway. |
@@ -1342,20 +1405,23 @@ discard block |
||
1342 | 1405 | } |
1343 | 1406 | |
1344 | 1407 | // Wait for a response of 220, without "-" continuer. |
1345 | - if (!server_parse(null, $socket, '220')) |
|
1346 | - return false; |
|
1408 | + if (!server_parse(null, $socket, '220')) { |
|
1409 | + return false; |
|
1410 | + } |
|
1347 | 1411 | |
1348 | 1412 | // Try and determine the servers name, fall back to the mail servers if not found |
1349 | 1413 | $helo = false; |
1350 | - if (function_exists('gethostname') && gethostname() !== false) |
|
1351 | - $helo = gethostname(); |
|
1352 | - elseif (function_exists('php_uname')) |
|
1353 | - $helo = php_uname('n'); |
|
1354 | - elseif (array_key_exists('SERVER_NAME', $_SERVER) && !empty($_SERVER['SERVER_NAME'])) |
|
1355 | - $helo = $_SERVER['SERVER_NAME']; |
|
1414 | + if (function_exists('gethostname') && gethostname() !== false) { |
|
1415 | + $helo = gethostname(); |
|
1416 | + } elseif (function_exists('php_uname')) { |
|
1417 | + $helo = php_uname('n'); |
|
1418 | + } elseif (array_key_exists('SERVER_NAME', $_SERVER) && !empty($_SERVER['SERVER_NAME'])) { |
|
1419 | + $helo = $_SERVER['SERVER_NAME']; |
|
1420 | + } |
|
1356 | 1421 | |
1357 | - if (empty($helo)) |
|
1358 | - $helo = $modSettings['smtp_host']; |
|
1422 | + if (empty($helo)) { |
|
1423 | + $helo = $modSettings['smtp_host']; |
|
1424 | + } |
|
1359 | 1425 | |
1360 | 1426 | // SMTP = 1, SMTP - STARTTLS = 2 |
1361 | 1427 | if (in_array($modSettings['mail_type'], array(1, 2)) && $modSettings['smtp_username'] != '' && $modSettings['smtp_password'] != '') |
@@ -1367,33 +1433,39 @@ discard block |
||
1367 | 1433 | if ($modSettings['mail_type'] == 2 && preg_match("~250( |-)STARTTLS~mi", $response)) |
1368 | 1434 | { |
1369 | 1435 | // Send STARTTLS to enable encryption |
1370 | - if (!server_parse('STARTTLS', $socket, '220')) |
|
1371 | - return false; |
|
1436 | + if (!server_parse('STARTTLS', $socket, '220')) { |
|
1437 | + return false; |
|
1438 | + } |
|
1372 | 1439 | // Enable the encryption |
1373 | - if (!@stream_socket_enable_crypto($socket, true, STREAM_CRYPTO_METHOD_TLS_CLIENT)) |
|
1374 | - return false; |
|
1440 | + if (!@stream_socket_enable_crypto($socket, true, STREAM_CRYPTO_METHOD_TLS_CLIENT)) { |
|
1441 | + return false; |
|
1442 | + } |
|
1375 | 1443 | // Send the EHLO command again |
1376 | - if (!server_parse('EHLO ' . $helo, $socket, null) == '250') |
|
1377 | - return false; |
|
1444 | + if (!server_parse('EHLO ' . $helo, $socket, null) == '250') { |
|
1445 | + return false; |
|
1446 | + } |
|
1378 | 1447 | } |
1379 | 1448 | |
1380 | - if (!server_parse('AUTH LOGIN', $socket, '334')) |
|
1381 | - return false; |
|
1449 | + if (!server_parse('AUTH LOGIN', $socket, '334')) { |
|
1450 | + return false; |
|
1451 | + } |
|
1382 | 1452 | // Send the username and password, encoded. |
1383 | - if (!server_parse(base64_encode($modSettings['smtp_username']), $socket, '334')) |
|
1384 | - return false; |
|
1453 | + if (!server_parse(base64_encode($modSettings['smtp_username']), $socket, '334')) { |
|
1454 | + return false; |
|
1455 | + } |
|
1385 | 1456 | // The password is already encoded ;) |
1386 | - if (!server_parse($modSettings['smtp_password'], $socket, '235')) |
|
1387 | - return false; |
|
1457 | + if (!server_parse($modSettings['smtp_password'], $socket, '235')) { |
|
1458 | + return false; |
|
1459 | + } |
|
1460 | + } elseif (!server_parse('HELO ' . $helo, $socket, '250')) { |
|
1461 | + return false; |
|
1388 | 1462 | } |
1389 | - elseif (!server_parse('HELO ' . $helo, $socket, '250')) |
|
1390 | - return false; |
|
1391 | - } |
|
1392 | - else |
|
1463 | + } else |
|
1393 | 1464 | { |
1394 | 1465 | // Just say "helo". |
1395 | - if (!server_parse('HELO ' . $helo, $socket, '250')) |
|
1396 | - return false; |
|
1466 | + if (!server_parse('HELO ' . $helo, $socket, '250')) { |
|
1467 | + return false; |
|
1468 | + } |
|
1397 | 1469 | } |
1398 | 1470 | |
1399 | 1471 | // Fix the message for any lines beginning with a period! (the first is ignored, you see.) |
@@ -1406,31 +1478,38 @@ discard block |
||
1406 | 1478 | // Reset the connection to send another email. |
1407 | 1479 | if ($i != 0) |
1408 | 1480 | { |
1409 | - if (!server_parse('RSET', $socket, '250')) |
|
1410 | - return false; |
|
1481 | + if (!server_parse('RSET', $socket, '250')) { |
|
1482 | + return false; |
|
1483 | + } |
|
1411 | 1484 | } |
1412 | 1485 | |
1413 | 1486 | // From, to, and then start the data... |
1414 | - if (!server_parse('MAIL FROM: <' . (empty($modSettings['mail_from']) ? $webmaster_email : $modSettings['mail_from']) . '>', $socket, '250')) |
|
1415 | - return false; |
|
1416 | - if (!server_parse('RCPT TO: <' . $mail_to . '>', $socket, '250')) |
|
1417 | - return false; |
|
1418 | - if (!server_parse('DATA', $socket, '354')) |
|
1419 | - return false; |
|
1487 | + if (!server_parse('MAIL FROM: <' . (empty($modSettings['mail_from']) ? $webmaster_email : $modSettings['mail_from']) . '>', $socket, '250')) { |
|
1488 | + return false; |
|
1489 | + } |
|
1490 | + if (!server_parse('RCPT TO: <' . $mail_to . '>', $socket, '250')) { |
|
1491 | + return false; |
|
1492 | + } |
|
1493 | + if (!server_parse('DATA', $socket, '354')) { |
|
1494 | + return false; |
|
1495 | + } |
|
1420 | 1496 | fputs($socket, 'Subject: ' . $subject . "\r\n"); |
1421 | - if (strlen($mail_to) > 0) |
|
1422 | - fputs($socket, 'To: <' . $mail_to . '>' . "\r\n"); |
|
1497 | + if (strlen($mail_to) > 0) { |
|
1498 | + fputs($socket, 'To: <' . $mail_to . '>' . "\r\n"); |
|
1499 | + } |
|
1423 | 1500 | fputs($socket, $headers . "\r\n\r\n"); |
1424 | 1501 | fputs($socket, $message . "\r\n"); |
1425 | 1502 | |
1426 | 1503 | // Send a ., or in other words "end of data". |
1427 | - if (!server_parse('.', $socket, '250')) |
|
1428 | - return false; |
|
1504 | + if (!server_parse('.', $socket, '250')) { |
|
1505 | + return false; |
|
1506 | + } |
|
1429 | 1507 | |
1430 | 1508 | // Almost done, almost done... don't stop me just yet! |
1431 | 1509 | @set_time_limit(300); |
1432 | - if (function_exists('apache_reset_timeout')) |
|
1433 | - @apache_reset_timeout(); |
|
1510 | + if (function_exists('apache_reset_timeout')) { |
|
1511 | + @apache_reset_timeout(); |
|
1512 | + } |
|
1434 | 1513 | } |
1435 | 1514 | fputs($socket, 'QUIT' . "\r\n"); |
1436 | 1515 | fclose($socket); |
@@ -1454,8 +1533,9 @@ discard block |
||
1454 | 1533 | { |
1455 | 1534 | global $txt; |
1456 | 1535 | |
1457 | - if ($message !== null) |
|
1458 | - fputs($socket, $message . "\r\n"); |
|
1536 | + if ($message !== null) { |
|
1537 | + fputs($socket, $message . "\r\n"); |
|
1538 | + } |
|
1459 | 1539 | |
1460 | 1540 | // No response yet. |
1461 | 1541 | $server_response = ''; |
@@ -1471,8 +1551,9 @@ discard block |
||
1471 | 1551 | $response .= $server_response; |
1472 | 1552 | } |
1473 | 1553 | |
1474 | - if ($code === null) |
|
1475 | - return substr($server_response, 0, 3); |
|
1554 | + if ($code === null) { |
|
1555 | + return substr($server_response, 0, 3); |
|
1556 | + } |
|
1476 | 1557 | |
1477 | 1558 | if (substr($server_response, 0, 3) != $code) |
1478 | 1559 | { |
@@ -1502,8 +1583,9 @@ discard block |
||
1502 | 1583 | // Create a pspell or enchant dictionary resource |
1503 | 1584 | $dict = spell_init(); |
1504 | 1585 | |
1505 | - if (!isset($_POST['spellstring']) || !$dict) |
|
1506 | - die; |
|
1586 | + if (!isset($_POST['spellstring']) || !$dict) { |
|
1587 | + die; |
|
1588 | + } |
|
1507 | 1589 | |
1508 | 1590 | // Construct a bit of Javascript code. |
1509 | 1591 | $context['spell_js'] = ' |
@@ -1521,8 +1603,9 @@ discard block |
||
1521 | 1603 | $check_word = explode('|', $alphas[$i]); |
1522 | 1604 | |
1523 | 1605 | // If the word is a known word, or spelled right... |
1524 | - if (in_array($smcFunc['strtolower']($check_word[0]), $known_words) || spell_check($dict, $check_word[0]) || !isset($check_word[2])) |
|
1525 | - continue; |
|
1606 | + if (in_array($smcFunc['strtolower']($check_word[0]), $known_words) || spell_check($dict, $check_word[0]) || !isset($check_word[2])) { |
|
1607 | + continue; |
|
1608 | + } |
|
1526 | 1609 | |
1527 | 1610 | // Find the word, and move up the "last occurrence" to here. |
1528 | 1611 | $found_words = true; |
@@ -1536,20 +1619,23 @@ discard block |
||
1536 | 1619 | if (!empty($suggestions)) |
1537 | 1620 | { |
1538 | 1621 | // But first check they aren't going to be censored - no naughty words! |
1539 | - foreach ($suggestions as $k => $word) |
|
1540 | - if ($suggestions[$k] != censorText($word)) |
|
1622 | + foreach ($suggestions as $k => $word) { |
|
1623 | + if ($suggestions[$k] != censorText($word)) |
|
1541 | 1624 | unset($suggestions[$k]); |
1625 | + } |
|
1542 | 1626 | |
1543 | - if (!empty($suggestions)) |
|
1544 | - $context['spell_js'] .= '"' . implode('", "', $suggestions) . '"'; |
|
1627 | + if (!empty($suggestions)) { |
|
1628 | + $context['spell_js'] .= '"' . implode('", "', $suggestions) . '"'; |
|
1629 | + } |
|
1545 | 1630 | } |
1546 | 1631 | |
1547 | 1632 | $context['spell_js'] .= ']),'; |
1548 | 1633 | } |
1549 | 1634 | |
1550 | 1635 | // If words were found, take off the last comma. |
1551 | - if ($found_words) |
|
1552 | - $context['spell_js'] = substr($context['spell_js'], 0, -1); |
|
1636 | + if ($found_words) { |
|
1637 | + $context['spell_js'] = substr($context['spell_js'], 0, -1); |
|
1638 | + } |
|
1553 | 1639 | |
1554 | 1640 | $context['spell_js'] .= ' |
1555 | 1641 | );'; |
@@ -1584,11 +1670,13 @@ discard block |
||
1584 | 1670 | global $user_info, $smcFunc; |
1585 | 1671 | |
1586 | 1672 | // Can't do it if there's no topics. |
1587 | - if (empty($topics)) |
|
1588 | - return; |
|
1673 | + if (empty($topics)) { |
|
1674 | + return; |
|
1675 | + } |
|
1589 | 1676 | // It must be an array - it must! |
1590 | - if (!is_array($topics)) |
|
1591 | - $topics = array($topics); |
|
1677 | + if (!is_array($topics)) { |
|
1678 | + $topics = array($topics); |
|
1679 | + } |
|
1592 | 1680 | |
1593 | 1681 | // Get the subject and body... |
1594 | 1682 | $result = $smcFunc['db_query']('', ' |
@@ -1636,14 +1724,15 @@ discard block |
||
1636 | 1724 | } |
1637 | 1725 | $smcFunc['db_free_result']($result); |
1638 | 1726 | |
1639 | - if (!empty($task_rows)) |
|
1640 | - $smcFunc['db_insert']('', |
|
1727 | + if (!empty($task_rows)) { |
|
1728 | + $smcFunc['db_insert']('', |
|
1641 | 1729 | '{db_prefix}background_tasks', |
1642 | 1730 | array('task_file' => 'string', 'task_class' => 'string', 'task_data' => 'string', 'claimed_time' => 'int'), |
1643 | 1731 | $task_rows, |
1644 | 1732 | array('id_task') |
1645 | 1733 | ); |
1646 | -} |
|
1734 | + } |
|
1735 | + } |
|
1647 | 1736 | |
1648 | 1737 | /** |
1649 | 1738 | * Create a post, either as new topic (id_topic = 0) or in an existing one. |
@@ -1681,9 +1770,9 @@ discard block |
||
1681 | 1770 | $msgOptions['send_notifications'] = isset($msgOptions['send_notifications']) ? (bool) $msgOptions['send_notifications'] : true; |
1682 | 1771 | |
1683 | 1772 | // We need to know if the topic is approved. If we're told that's great - if not find out. |
1684 | - if (!$modSettings['postmod_active']) |
|
1685 | - $topicOptions['is_approved'] = true; |
|
1686 | - elseif (!empty($topicOptions['id']) && !isset($topicOptions['is_approved'])) |
|
1773 | + if (!$modSettings['postmod_active']) { |
|
1774 | + $topicOptions['is_approved'] = true; |
|
1775 | + } elseif (!empty($topicOptions['id']) && !isset($topicOptions['is_approved'])) |
|
1687 | 1776 | { |
1688 | 1777 | $request = $smcFunc['db_query']('', ' |
1689 | 1778 | SELECT approved |
@@ -1706,8 +1795,7 @@ discard block |
||
1706 | 1795 | $posterOptions['id'] = 0; |
1707 | 1796 | $posterOptions['name'] = $txt['guest_title']; |
1708 | 1797 | $posterOptions['email'] = ''; |
1709 | - } |
|
1710 | - elseif ($posterOptions['id'] != $user_info['id']) |
|
1798 | + } elseif ($posterOptions['id'] != $user_info['id']) |
|
1711 | 1799 | { |
1712 | 1800 | $request = $smcFunc['db_query']('', ' |
1713 | 1801 | SELECT member_name, email_address |
@@ -1725,12 +1813,11 @@ discard block |
||
1725 | 1813 | $posterOptions['id'] = 0; |
1726 | 1814 | $posterOptions['name'] = $txt['guest_title']; |
1727 | 1815 | $posterOptions['email'] = ''; |
1816 | + } else { |
|
1817 | + list ($posterOptions['name'], $posterOptions['email']) = $smcFunc['db_fetch_row']($request); |
|
1728 | 1818 | } |
1729 | - else |
|
1730 | - list ($posterOptions['name'], $posterOptions['email']) = $smcFunc['db_fetch_row']($request); |
|
1731 | 1819 | $smcFunc['db_free_result']($request); |
1732 | - } |
|
1733 | - else |
|
1820 | + } else |
|
1734 | 1821 | { |
1735 | 1822 | $posterOptions['name'] = $user_info['name']; |
1736 | 1823 | $posterOptions['email'] = $user_info['email']; |
@@ -1740,8 +1827,9 @@ discard block |
||
1740 | 1827 | if (!empty($modSettings['enable_mentions'])) |
1741 | 1828 | { |
1742 | 1829 | $msgOptions['mentioned_members'] = Mentions::getMentionedMembers($msgOptions['body']); |
1743 | - if (!empty($msgOptions['mentioned_members'])) |
|
1744 | - $msgOptions['body'] = Mentions::getBody($msgOptions['body'], $msgOptions['mentioned_members']); |
|
1830 | + if (!empty($msgOptions['mentioned_members'])) { |
|
1831 | + $msgOptions['body'] = Mentions::getBody($msgOptions['body'], $msgOptions['mentioned_members']); |
|
1832 | + } |
|
1745 | 1833 | } |
1746 | 1834 | |
1747 | 1835 | // It's do or die time: forget any user aborts! |
@@ -1774,12 +1862,13 @@ discard block |
||
1774 | 1862 | ); |
1775 | 1863 | |
1776 | 1864 | // Something went wrong creating the message... |
1777 | - if (empty($msgOptions['id'])) |
|
1778 | - return false; |
|
1865 | + if (empty($msgOptions['id'])) { |
|
1866 | + return false; |
|
1867 | + } |
|
1779 | 1868 | |
1780 | 1869 | // Fix the attachments. |
1781 | - if (!empty($msgOptions['attachments'])) |
|
1782 | - $smcFunc['db_query']('', ' |
|
1870 | + if (!empty($msgOptions['attachments'])) { |
|
1871 | + $smcFunc['db_query']('', ' |
|
1783 | 1872 | UPDATE {db_prefix}attachments |
1784 | 1873 | SET id_msg = {int:id_msg} |
1785 | 1874 | WHERE id_attach IN ({array_int:attachment_list})', |
@@ -1788,6 +1877,7 @@ discard block |
||
1788 | 1877 | 'id_msg' => $msgOptions['id'], |
1789 | 1878 | ) |
1790 | 1879 | ); |
1880 | + } |
|
1791 | 1881 | |
1792 | 1882 | // What if we want to export new posts out to a CMS? |
1793 | 1883 | call_integration_hook('integrate_after_create_post', array($msgOptions, $topicOptions, $posterOptions, $message_columns, $message_parameters)); |
@@ -1864,20 +1954,23 @@ discard block |
||
1864 | 1954 | 'id_topic' => $topicOptions['id'], |
1865 | 1955 | 'counter_increment' => 1, |
1866 | 1956 | ); |
1867 | - if ($msgOptions['approved']) |
|
1868 | - $topics_columns = array( |
|
1957 | + if ($msgOptions['approved']) { |
|
1958 | + $topics_columns = array( |
|
1869 | 1959 | 'id_member_updated = {int:poster_id}', |
1870 | 1960 | 'id_last_msg = {int:id_msg}', |
1871 | 1961 | 'num_replies = num_replies + {int:counter_increment}', |
1872 | 1962 | ); |
1873 | - else |
|
1874 | - $topics_columns = array( |
|
1963 | + } else { |
|
1964 | + $topics_columns = array( |
|
1875 | 1965 | 'unapproved_posts = unapproved_posts + {int:counter_increment}', |
1876 | 1966 | ); |
1877 | - if ($topicOptions['lock_mode'] !== null) |
|
1878 | - $topics_columns[] = 'locked = {int:locked}'; |
|
1879 | - if ($topicOptions['sticky_mode'] !== null) |
|
1880 | - $topics_columns[] = 'is_sticky = {int:is_sticky}'; |
|
1967 | + } |
|
1968 | + if ($topicOptions['lock_mode'] !== null) { |
|
1969 | + $topics_columns[] = 'locked = {int:locked}'; |
|
1970 | + } |
|
1971 | + if ($topicOptions['sticky_mode'] !== null) { |
|
1972 | + $topics_columns[] = 'is_sticky = {int:is_sticky}'; |
|
1973 | + } |
|
1881 | 1974 | |
1882 | 1975 | call_integration_hook('integrate_modify_topic', array(&$topics_columns, &$update_parameters, &$msgOptions, &$topicOptions, &$posterOptions)); |
1883 | 1976 | |
@@ -1906,8 +1999,8 @@ discard block |
||
1906 | 1999 | ); |
1907 | 2000 | |
1908 | 2001 | // Increase the number of posts and topics on the board. |
1909 | - if ($msgOptions['approved']) |
|
1910 | - $smcFunc['db_query']('', ' |
|
2002 | + if ($msgOptions['approved']) { |
|
2003 | + $smcFunc['db_query']('', ' |
|
1911 | 2004 | UPDATE {db_prefix}boards |
1912 | 2005 | SET num_posts = num_posts + 1' . ($new_topic ? ', num_topics = num_topics + 1' : '') . ' |
1913 | 2006 | WHERE id_board = {int:id_board}', |
@@ -1915,7 +2008,7 @@ discard block |
||
1915 | 2008 | 'id_board' => $topicOptions['board'], |
1916 | 2009 | ) |
1917 | 2010 | ); |
1918 | - else |
|
2011 | + } else |
|
1919 | 2012 | { |
1920 | 2013 | $smcFunc['db_query']('', ' |
1921 | 2014 | UPDATE {db_prefix}boards |
@@ -1985,8 +2078,8 @@ discard block |
||
1985 | 2078 | } |
1986 | 2079 | } |
1987 | 2080 | |
1988 | - if ($msgOptions['approved'] && empty($topicOptions['is_approved'])) |
|
1989 | - $smcFunc['db_insert']('', |
|
2081 | + if ($msgOptions['approved'] && empty($topicOptions['is_approved'])) { |
|
2082 | + $smcFunc['db_insert']('', |
|
1990 | 2083 | '{db_prefix}background_tasks', |
1991 | 2084 | array('task_file' => 'string', 'task_class' => 'string', 'task_data' => 'string', 'claimed_time' => 'int'), |
1992 | 2085 | array( |
@@ -1998,19 +2091,22 @@ discard block |
||
1998 | 2091 | ), |
1999 | 2092 | array('id_task') |
2000 | 2093 | ); |
2094 | + } |
|
2001 | 2095 | |
2002 | 2096 | // If there's a custom search index, it may need updating... |
2003 | 2097 | require_once($sourcedir . '/Search.php'); |
2004 | 2098 | $searchAPI = findSearchAPI(); |
2005 | - if (is_callable(array($searchAPI, 'postCreated'))) |
|
2006 | - $searchAPI->postCreated($msgOptions, $topicOptions, $posterOptions); |
|
2099 | + if (is_callable(array($searchAPI, 'postCreated'))) { |
|
2100 | + $searchAPI->postCreated($msgOptions, $topicOptions, $posterOptions); |
|
2101 | + } |
|
2007 | 2102 | |
2008 | 2103 | // Increase the post counter for the user that created the post. |
2009 | 2104 | if (!empty($posterOptions['update_post_count']) && !empty($posterOptions['id']) && $msgOptions['approved']) |
2010 | 2105 | { |
2011 | 2106 | // Are you the one that happened to create this post? |
2012 | - if ($user_info['id'] == $posterOptions['id']) |
|
2013 | - $user_info['posts']++; |
|
2107 | + if ($user_info['id'] == $posterOptions['id']) { |
|
2108 | + $user_info['posts']++; |
|
2109 | + } |
|
2014 | 2110 | updateMemberData($posterOptions['id'], array('posts' => '+')); |
2015 | 2111 | } |
2016 | 2112 | |
@@ -2018,19 +2114,21 @@ discard block |
||
2018 | 2114 | $_SESSION['last_read_topic'] = 0; |
2019 | 2115 | |
2020 | 2116 | // Better safe than sorry. |
2021 | - if (isset($_SESSION['topicseen_cache'][$topicOptions['board']])) |
|
2022 | - $_SESSION['topicseen_cache'][$topicOptions['board']]--; |
|
2117 | + if (isset($_SESSION['topicseen_cache'][$topicOptions['board']])) { |
|
2118 | + $_SESSION['topicseen_cache'][$topicOptions['board']]--; |
|
2119 | + } |
|
2023 | 2120 | |
2024 | 2121 | // Update all the stats so everyone knows about this new topic and message. |
2025 | 2122 | updateStats('message', true, $msgOptions['id']); |
2026 | 2123 | |
2027 | 2124 | // Update the last message on the board assuming it's approved AND the topic is. |
2028 | - if ($msgOptions['approved']) |
|
2029 | - updateLastMessages($topicOptions['board'], $new_topic || !empty($topicOptions['is_approved']) ? $msgOptions['id'] : 0); |
|
2125 | + if ($msgOptions['approved']) { |
|
2126 | + updateLastMessages($topicOptions['board'], $new_topic || !empty($topicOptions['is_approved']) ? $msgOptions['id'] : 0); |
|
2127 | + } |
|
2030 | 2128 | |
2031 | 2129 | // Queue createPost background notification |
2032 | - if ($msgOptions['send_notifications'] && $msgOptions['approved']) |
|
2033 | - $smcFunc['db_insert']('', |
|
2130 | + if ($msgOptions['send_notifications'] && $msgOptions['approved']) { |
|
2131 | + $smcFunc['db_insert']('', |
|
2034 | 2132 | '{db_prefix}background_tasks', |
2035 | 2133 | array('task_file' => 'string', 'task_class' => 'string', 'task_data' => 'string', 'claimed_time' => 'int'), |
2036 | 2134 | array('$sourcedir/tasks/CreatePost-Notify.php', 'CreatePost_Notify_Background', $smcFunc['json_encode'](array( |
@@ -2041,6 +2139,7 @@ discard block |
||
2041 | 2139 | )), 0), |
2042 | 2140 | array('id_task') |
2043 | 2141 | ); |
2142 | + } |
|
2044 | 2143 | |
2045 | 2144 | // Alright, done now... we can abort now, I guess... at least this much is done. |
2046 | 2145 | ignore_user_abort($previous_ignore_user_abort); |
@@ -2067,14 +2166,18 @@ discard block |
||
2067 | 2166 | |
2068 | 2167 | // This is longer than it has to be, but makes it so we only set/change what we have to. |
2069 | 2168 | $messages_columns = array(); |
2070 | - if (isset($posterOptions['name'])) |
|
2071 | - $messages_columns['poster_name'] = $posterOptions['name']; |
|
2072 | - if (isset($posterOptions['email'])) |
|
2073 | - $messages_columns['poster_email'] = $posterOptions['email']; |
|
2074 | - if (isset($msgOptions['icon'])) |
|
2075 | - $messages_columns['icon'] = $msgOptions['icon']; |
|
2076 | - if (isset($msgOptions['subject'])) |
|
2077 | - $messages_columns['subject'] = $msgOptions['subject']; |
|
2169 | + if (isset($posterOptions['name'])) { |
|
2170 | + $messages_columns['poster_name'] = $posterOptions['name']; |
|
2171 | + } |
|
2172 | + if (isset($posterOptions['email'])) { |
|
2173 | + $messages_columns['poster_email'] = $posterOptions['email']; |
|
2174 | + } |
|
2175 | + if (isset($msgOptions['icon'])) { |
|
2176 | + $messages_columns['icon'] = $msgOptions['icon']; |
|
2177 | + } |
|
2178 | + if (isset($msgOptions['subject'])) { |
|
2179 | + $messages_columns['subject'] = $msgOptions['subject']; |
|
2180 | + } |
|
2078 | 2181 | if (isset($msgOptions['body'])) |
2079 | 2182 | { |
2080 | 2183 | $messages_columns['body'] = $msgOptions['body']; |
@@ -2101,8 +2204,9 @@ discard block |
||
2101 | 2204 | $messages_columns['modified_reason'] = $msgOptions['modify_reason']; |
2102 | 2205 | $messages_columns['id_msg_modified'] = $modSettings['maxMsgID']; |
2103 | 2206 | } |
2104 | - if (isset($msgOptions['smileys_enabled'])) |
|
2105 | - $messages_columns['smileys_enabled'] = empty($msgOptions['smileys_enabled']) ? 0 : 1; |
|
2207 | + if (isset($msgOptions['smileys_enabled'])) { |
|
2208 | + $messages_columns['smileys_enabled'] = empty($msgOptions['smileys_enabled']) ? 0 : 1; |
|
2209 | + } |
|
2106 | 2210 | |
2107 | 2211 | // Which columns need to be ints? |
2108 | 2212 | $messageInts = array('modified_time', 'id_msg_modified', 'smileys_enabled'); |
@@ -2120,23 +2224,27 @@ discard block |
||
2120 | 2224 | { |
2121 | 2225 | preg_match_all('/\[member\=([0-9]+)\]([^\[]*)\[\/member\]/U', $msgOptions['old_body'], $match); |
2122 | 2226 | |
2123 | - if (isset($match[1]) && isset($match[2]) && is_array($match[1]) && is_array($match[2])) |
|
2124 | - foreach ($match[1] as $i => $oldID) |
|
2227 | + if (isset($match[1]) && isset($match[2]) && is_array($match[1]) && is_array($match[2])) { |
|
2228 | + foreach ($match[1] as $i => $oldID) |
|
2125 | 2229 | $oldmentions[$oldID] = array('id' => $oldID, 'real_name' => $match[2][$i]); |
2230 | + } |
|
2126 | 2231 | |
2127 | - if (empty($modSettings['search_custom_index_config'])) |
|
2128 | - unset($msgOptions['old_body']); |
|
2232 | + if (empty($modSettings['search_custom_index_config'])) { |
|
2233 | + unset($msgOptions['old_body']); |
|
2234 | + } |
|
2129 | 2235 | } |
2130 | 2236 | |
2131 | 2237 | $mentions = Mentions::getMentionedMembers($msgOptions['body']); |
2132 | 2238 | $messages_columns['body'] = $msgOptions['body'] = Mentions::getBody($msgOptions['body'], $mentions); |
2133 | 2239 | |
2134 | 2240 | // Remove the poster. |
2135 | - if (isset($mentions[$user_info['id']])) |
|
2136 | - unset($mentions[$user_info['id']]); |
|
2241 | + if (isset($mentions[$user_info['id']])) { |
|
2242 | + unset($mentions[$user_info['id']]); |
|
2243 | + } |
|
2137 | 2244 | |
2138 | - if (isset($oldmentions[$user_info['id']])) |
|
2139 | - unset($oldmentions[$user_info['id']]); |
|
2245 | + if (isset($oldmentions[$user_info['id']])) { |
|
2246 | + unset($oldmentions[$user_info['id']]); |
|
2247 | + } |
|
2140 | 2248 | |
2141 | 2249 | if (is_array($mentions) && is_array($oldmentions) && count(array_diff_key($mentions, $oldmentions)) > 0 && count($mentions) > count($oldmentions)) |
2142 | 2250 | { |
@@ -2166,8 +2274,9 @@ discard block |
||
2166 | 2274 | } |
2167 | 2275 | |
2168 | 2276 | // Nothing to do? |
2169 | - if (empty($messages_columns)) |
|
2170 | - return true; |
|
2277 | + if (empty($messages_columns)) { |
|
2278 | + return true; |
|
2279 | + } |
|
2171 | 2280 | |
2172 | 2281 | // Change the post. |
2173 | 2282 | $smcFunc['db_query']('', ' |
@@ -2228,8 +2337,9 @@ discard block |
||
2228 | 2337 | // If there's a custom search index, it needs to be modified... |
2229 | 2338 | require_once($sourcedir . '/Search.php'); |
2230 | 2339 | $searchAPI = findSearchAPI(); |
2231 | - if (is_callable(array($searchAPI, 'postModified'))) |
|
2232 | - $searchAPI->postModified($msgOptions, $topicOptions, $posterOptions); |
|
2340 | + if (is_callable(array($searchAPI, 'postModified'))) { |
|
2341 | + $searchAPI->postModified($msgOptions, $topicOptions, $posterOptions); |
|
2342 | + } |
|
2233 | 2343 | |
2234 | 2344 | if (isset($msgOptions['subject'])) |
2235 | 2345 | { |
@@ -2243,14 +2353,16 @@ discard block |
||
2243 | 2353 | 'id_first_msg' => $msgOptions['id'], |
2244 | 2354 | ) |
2245 | 2355 | ); |
2246 | - if ($smcFunc['db_num_rows']($request) == 1) |
|
2247 | - updateStats('subject', $topicOptions['id'], $msgOptions['subject']); |
|
2356 | + if ($smcFunc['db_num_rows']($request) == 1) { |
|
2357 | + updateStats('subject', $topicOptions['id'], $msgOptions['subject']); |
|
2358 | + } |
|
2248 | 2359 | $smcFunc['db_free_result']($request); |
2249 | 2360 | } |
2250 | 2361 | |
2251 | 2362 | // Finally, if we are setting the approved state we need to do much more work :( |
2252 | - if ($modSettings['postmod_active'] && isset($msgOptions['approved'])) |
|
2253 | - approvePosts($msgOptions['id'], $msgOptions['approved']); |
|
2363 | + if ($modSettings['postmod_active'] && isset($msgOptions['approved'])) { |
|
2364 | + approvePosts($msgOptions['id'], $msgOptions['approved']); |
|
2365 | + } |
|
2254 | 2366 | |
2255 | 2367 | return true; |
2256 | 2368 | } |
@@ -2267,11 +2379,13 @@ discard block |
||
2267 | 2379 | { |
2268 | 2380 | global $smcFunc; |
2269 | 2381 | |
2270 | - if (!is_array($msgs)) |
|
2271 | - $msgs = array($msgs); |
|
2382 | + if (!is_array($msgs)) { |
|
2383 | + $msgs = array($msgs); |
|
2384 | + } |
|
2272 | 2385 | |
2273 | - if (empty($msgs)) |
|
2274 | - return false; |
|
2386 | + if (empty($msgs)) { |
|
2387 | + return false; |
|
2388 | + } |
|
2275 | 2389 | |
2276 | 2390 | // May as well start at the beginning, working out *what* we need to change. |
2277 | 2391 | $request = $smcFunc['db_query']('', ' |
@@ -2303,20 +2417,22 @@ discard block |
||
2303 | 2417 | $topics[] = $row['id_topic']; |
2304 | 2418 | |
2305 | 2419 | // Ensure our change array exists already. |
2306 | - if (!isset($topic_changes[$row['id_topic']])) |
|
2307 | - $topic_changes[$row['id_topic']] = array( |
|
2420 | + if (!isset($topic_changes[$row['id_topic']])) { |
|
2421 | + $topic_changes[$row['id_topic']] = array( |
|
2308 | 2422 | 'id_last_msg' => $row['id_last_msg'], |
2309 | 2423 | 'approved' => $row['topic_approved'], |
2310 | 2424 | 'replies' => 0, |
2311 | 2425 | 'unapproved_posts' => 0, |
2312 | 2426 | ); |
2313 | - if (!isset($board_changes[$row['id_board']])) |
|
2314 | - $board_changes[$row['id_board']] = array( |
|
2427 | + } |
|
2428 | + if (!isset($board_changes[$row['id_board']])) { |
|
2429 | + $board_changes[$row['id_board']] = array( |
|
2315 | 2430 | 'posts' => 0, |
2316 | 2431 | 'topics' => 0, |
2317 | 2432 | 'unapproved_posts' => 0, |
2318 | 2433 | 'unapproved_topics' => 0, |
2319 | 2434 | ); |
2435 | + } |
|
2320 | 2436 | |
2321 | 2437 | // If it's the first message then the topic state changes! |
2322 | 2438 | if ($row['id_msg'] == $row['id_first_msg']) |
@@ -2337,14 +2453,13 @@ discard block |
||
2337 | 2453 | 'poster' => $row['id_member'], |
2338 | 2454 | 'new_topic' => true, |
2339 | 2455 | ); |
2340 | - } |
|
2341 | - else |
|
2456 | + } else |
|
2342 | 2457 | { |
2343 | 2458 | $topic_changes[$row['id_topic']]['replies'] += $approve ? 1 : -1; |
2344 | 2459 | |
2345 | 2460 | // This will be a post... but don't notify unless it's not followed by approved ones. |
2346 | - if ($row['id_msg'] > $row['id_last_msg']) |
|
2347 | - $notification_posts[$row['id_topic']] = array( |
|
2461 | + if ($row['id_msg'] > $row['id_last_msg']) { |
|
2462 | + $notification_posts[$row['id_topic']] = array( |
|
2348 | 2463 | 'id' => $row['id_msg'], |
2349 | 2464 | 'body' => $row['body'], |
2350 | 2465 | 'subject' => $row['subject'], |
@@ -2355,28 +2470,33 @@ discard block |
||
2355 | 2470 | 'new_topic' => false, |
2356 | 2471 | 'msg' => $row['id_msg'], |
2357 | 2472 | ); |
2473 | + } |
|
2358 | 2474 | } |
2359 | 2475 | |
2360 | 2476 | // If this is being approved and id_msg is higher than the current id_last_msg then it changes. |
2361 | - if ($approve && $row['id_msg'] > $topic_changes[$row['id_topic']]['id_last_msg']) |
|
2362 | - $topic_changes[$row['id_topic']]['id_last_msg'] = $row['id_msg']; |
|
2477 | + if ($approve && $row['id_msg'] > $topic_changes[$row['id_topic']]['id_last_msg']) { |
|
2478 | + $topic_changes[$row['id_topic']]['id_last_msg'] = $row['id_msg']; |
|
2479 | + } |
|
2363 | 2480 | // If this is being unapproved, and it's equal to the id_last_msg we need to find a new one! |
2364 | - elseif (!$approve) |
|
2365 | - // Default to the first message and then we'll override in a bit ;) |
|
2481 | + elseif (!$approve) { |
|
2482 | + // Default to the first message and then we'll override in a bit ;) |
|
2366 | 2483 | $topic_changes[$row['id_topic']]['id_last_msg'] = $row['id_first_msg']; |
2484 | + } |
|
2367 | 2485 | |
2368 | 2486 | $topic_changes[$row['id_topic']]['unapproved_posts'] += $approve ? -1 : 1; |
2369 | 2487 | $board_changes[$row['id_board']]['unapproved_posts'] += $approve ? -1 : 1; |
2370 | 2488 | $board_changes[$row['id_board']]['posts'] += $approve ? 1 : -1; |
2371 | 2489 | |
2372 | 2490 | // Post count for the user? |
2373 | - if ($row['id_member'] && empty($row['count_posts'])) |
|
2374 | - $member_post_changes[$row['id_member']] = isset($member_post_changes[$row['id_member']]) ? $member_post_changes[$row['id_member']] + 1 : 1; |
|
2491 | + if ($row['id_member'] && empty($row['count_posts'])) { |
|
2492 | + $member_post_changes[$row['id_member']] = isset($member_post_changes[$row['id_member']]) ? $member_post_changes[$row['id_member']] + 1 : 1; |
|
2493 | + } |
|
2375 | 2494 | } |
2376 | 2495 | $smcFunc['db_free_result']($request); |
2377 | 2496 | |
2378 | - if (empty($msgs)) |
|
2379 | - return; |
|
2497 | + if (empty($msgs)) { |
|
2498 | + return; |
|
2499 | + } |
|
2380 | 2500 | |
2381 | 2501 | // Now we have the differences make the changes, first the easy one. |
2382 | 2502 | $smcFunc['db_query']('', ' |
@@ -2403,14 +2523,15 @@ discard block |
||
2403 | 2523 | 'approved' => 1, |
2404 | 2524 | ) |
2405 | 2525 | ); |
2406 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2407 | - $topic_changes[$row['id_topic']]['id_last_msg'] = $row['id_last_msg']; |
|
2526 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2527 | + $topic_changes[$row['id_topic']]['id_last_msg'] = $row['id_last_msg']; |
|
2528 | + } |
|
2408 | 2529 | $smcFunc['db_free_result']($request); |
2409 | 2530 | } |
2410 | 2531 | |
2411 | 2532 | // ... next the topics... |
2412 | - foreach ($topic_changes as $id => $changes) |
|
2413 | - $smcFunc['db_query']('', ' |
|
2533 | + foreach ($topic_changes as $id => $changes) { |
|
2534 | + $smcFunc['db_query']('', ' |
|
2414 | 2535 | UPDATE {db_prefix}topics |
2415 | 2536 | SET approved = {int:approved}, unapproved_posts = unapproved_posts + {int:unapproved_posts}, |
2416 | 2537 | num_replies = num_replies + {int:num_replies}, id_last_msg = {int:id_last_msg} |
@@ -2423,10 +2544,11 @@ discard block |
||
2423 | 2544 | 'id_topic' => $id, |
2424 | 2545 | ) |
2425 | 2546 | ); |
2547 | + } |
|
2426 | 2548 | |
2427 | 2549 | // ... finally the boards... |
2428 | - foreach ($board_changes as $id => $changes) |
|
2429 | - $smcFunc['db_query']('', ' |
|
2550 | + foreach ($board_changes as $id => $changes) { |
|
2551 | + $smcFunc['db_query']('', ' |
|
2430 | 2552 | UPDATE {db_prefix}boards |
2431 | 2553 | SET num_posts = num_posts + {int:num_posts}, unapproved_posts = unapproved_posts + {int:unapproved_posts}, |
2432 | 2554 | num_topics = num_topics + {int:num_topics}, unapproved_topics = unapproved_topics + {int:unapproved_topics} |
@@ -2439,13 +2561,14 @@ discard block |
||
2439 | 2561 | 'id_board' => $id, |
2440 | 2562 | ) |
2441 | 2563 | ); |
2564 | + } |
|
2442 | 2565 | |
2443 | 2566 | // Finally, least importantly, notifications! |
2444 | 2567 | if ($approve) |
2445 | 2568 | { |
2446 | 2569 | $task_rows = array(); |
2447 | - foreach (array_merge($notification_topics, $notification_posts) as $topic) |
|
2448 | - $task_rows[] = array( |
|
2570 | + foreach (array_merge($notification_topics, $notification_posts) as $topic) { |
|
2571 | + $task_rows[] = array( |
|
2449 | 2572 | '$sourcedir/tasks/CreatePost-Notify.php', 'CreatePost_Notify_Background', $smcFunc['json_encode'](array( |
2450 | 2573 | 'msgOptions' => array( |
2451 | 2574 | 'id' => $topic['msg'], |
@@ -2463,14 +2586,16 @@ discard block |
||
2463 | 2586 | 'type' => $topic['new_topic'] ? 'topic' : 'reply', |
2464 | 2587 | )), 0 |
2465 | 2588 | ); |
2589 | + } |
|
2466 | 2590 | |
2467 | - if ($notify) |
|
2468 | - $smcFunc['db_insert']('', |
|
2591 | + if ($notify) { |
|
2592 | + $smcFunc['db_insert']('', |
|
2469 | 2593 | '{db_prefix}background_tasks', |
2470 | 2594 | array('task_file' => 'string', 'task_class' => 'string', 'task_data' => 'string', 'claimed_time' => 'int'), |
2471 | 2595 | $task_rows, |
2472 | 2596 | array('id_task') |
2473 | 2597 | ); |
2598 | + } |
|
2474 | 2599 | |
2475 | 2600 | $smcFunc['db_query']('', ' |
2476 | 2601 | DELETE FROM {db_prefix}approval_queue |
@@ -2486,8 +2611,9 @@ discard block |
||
2486 | 2611 | else |
2487 | 2612 | { |
2488 | 2613 | $msgInserts = array(); |
2489 | - foreach ($msgs as $msg) |
|
2490 | - $msgInserts[] = array($msg); |
|
2614 | + foreach ($msgs as $msg) { |
|
2615 | + $msgInserts[] = array($msg); |
|
2616 | + } |
|
2491 | 2617 | |
2492 | 2618 | $smcFunc['db_insert']('ignore', |
2493 | 2619 | '{db_prefix}approval_queue', |
@@ -2501,9 +2627,10 @@ discard block |
||
2501 | 2627 | updateLastMessages(array_keys($board_changes)); |
2502 | 2628 | |
2503 | 2629 | // Post count for the members? |
2504 | - if (!empty($member_post_changes)) |
|
2505 | - foreach ($member_post_changes as $id_member => $count_change) |
|
2630 | + if (!empty($member_post_changes)) { |
|
2631 | + foreach ($member_post_changes as $id_member => $count_change) |
|
2506 | 2632 | updateMemberData($id_member, array('posts' => 'posts ' . ($approve ? '+' : '-') . ' ' . $count_change)); |
2633 | + } |
|
2507 | 2634 | |
2508 | 2635 | return true; |
2509 | 2636 | } |
@@ -2520,11 +2647,13 @@ discard block |
||
2520 | 2647 | { |
2521 | 2648 | global $smcFunc; |
2522 | 2649 | |
2523 | - if (!is_array($topics)) |
|
2524 | - $topics = array($topics); |
|
2650 | + if (!is_array($topics)) { |
|
2651 | + $topics = array($topics); |
|
2652 | + } |
|
2525 | 2653 | |
2526 | - if (empty($topics)) |
|
2527 | - return false; |
|
2654 | + if (empty($topics)) { |
|
2655 | + return false; |
|
2656 | + } |
|
2528 | 2657 | |
2529 | 2658 | $approve_type = $approve ? 0 : 1; |
2530 | 2659 | |
@@ -2540,8 +2669,9 @@ discard block |
||
2540 | 2669 | ) |
2541 | 2670 | ); |
2542 | 2671 | $msgs = array(); |
2543 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2544 | - $msgs[] = $row['id_msg']; |
|
2672 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2673 | + $msgs[] = $row['id_msg']; |
|
2674 | + } |
|
2545 | 2675 | $smcFunc['db_free_result']($request); |
2546 | 2676 | |
2547 | 2677 | return approvePosts($msgs, $approve); |
@@ -2564,11 +2694,13 @@ discard block |
||
2564 | 2694 | global $board_info, $board, $smcFunc; |
2565 | 2695 | |
2566 | 2696 | // Please - let's be sane. |
2567 | - if (empty($setboards)) |
|
2568 | - return false; |
|
2697 | + if (empty($setboards)) { |
|
2698 | + return false; |
|
2699 | + } |
|
2569 | 2700 | |
2570 | - if (!is_array($setboards)) |
|
2571 | - $setboards = array($setboards); |
|
2701 | + if (!is_array($setboards)) { |
|
2702 | + $setboards = array($setboards); |
|
2703 | + } |
|
2572 | 2704 | |
2573 | 2705 | // If we don't know the id_msg we need to find it. |
2574 | 2706 | if (!$id_msg) |
@@ -2586,15 +2718,16 @@ discard block |
||
2586 | 2718 | ) |
2587 | 2719 | ); |
2588 | 2720 | $lastMsg = array(); |
2589 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2590 | - $lastMsg[$row['id_board']] = $row['id_msg']; |
|
2721 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2722 | + $lastMsg[$row['id_board']] = $row['id_msg']; |
|
2723 | + } |
|
2591 | 2724 | $smcFunc['db_free_result']($request); |
2592 | - } |
|
2593 | - else |
|
2725 | + } else |
|
2594 | 2726 | { |
2595 | 2727 | // Just to note - there should only be one board passed if we are doing this. |
2596 | - foreach ($setboards as $id_board) |
|
2597 | - $lastMsg[$id_board] = $id_msg; |
|
2728 | + foreach ($setboards as $id_board) { |
|
2729 | + $lastMsg[$id_board] = $id_msg; |
|
2730 | + } |
|
2598 | 2731 | } |
2599 | 2732 | |
2600 | 2733 | $parent_boards = array(); |
@@ -2609,10 +2742,11 @@ discard block |
||
2609 | 2742 | $lastModified[$id_board] = 0; |
2610 | 2743 | } |
2611 | 2744 | |
2612 | - if (!empty($board) && $id_board == $board) |
|
2613 | - $parents = $board_info['parent_boards']; |
|
2614 | - else |
|
2615 | - $parents = getBoardParents($id_board); |
|
2745 | + if (!empty($board) && $id_board == $board) { |
|
2746 | + $parents = $board_info['parent_boards']; |
|
2747 | + } else { |
|
2748 | + $parents = getBoardParents($id_board); |
|
2749 | + } |
|
2616 | 2750 | |
2617 | 2751 | // Ignore any parents on the top child level. |
2618 | 2752 | // @todo Why? |
@@ -2621,10 +2755,11 @@ discard block |
||
2621 | 2755 | if ($parent['level'] != 0) |
2622 | 2756 | { |
2623 | 2757 | // If we're already doing this one as a board, is this a higher last modified? |
2624 | - if (isset($lastModified[$id]) && $lastModified[$id_board] > $lastModified[$id]) |
|
2625 | - $lastModified[$id] = $lastModified[$id_board]; |
|
2626 | - elseif (!isset($lastModified[$id]) && (!isset($parent_boards[$id]) || $parent_boards[$id] < $lastModified[$id_board])) |
|
2627 | - $parent_boards[$id] = $lastModified[$id_board]; |
|
2758 | + if (isset($lastModified[$id]) && $lastModified[$id_board] > $lastModified[$id]) { |
|
2759 | + $lastModified[$id] = $lastModified[$id_board]; |
|
2760 | + } elseif (!isset($lastModified[$id]) && (!isset($parent_boards[$id]) || $parent_boards[$id] < $lastModified[$id_board])) { |
|
2761 | + $parent_boards[$id] = $lastModified[$id_board]; |
|
2762 | + } |
|
2628 | 2763 | } |
2629 | 2764 | } |
2630 | 2765 | } |
@@ -2637,23 +2772,24 @@ discard block |
||
2637 | 2772 | // Finally, to save on queries make the changes... |
2638 | 2773 | foreach ($parent_boards as $id => $msg) |
2639 | 2774 | { |
2640 | - if (!isset($parent_updates[$msg])) |
|
2641 | - $parent_updates[$msg] = array($id); |
|
2642 | - else |
|
2643 | - $parent_updates[$msg][] = $id; |
|
2775 | + if (!isset($parent_updates[$msg])) { |
|
2776 | + $parent_updates[$msg] = array($id); |
|
2777 | + } else { |
|
2778 | + $parent_updates[$msg][] = $id; |
|
2779 | + } |
|
2644 | 2780 | } |
2645 | 2781 | |
2646 | 2782 | foreach ($lastMsg as $id => $msg) |
2647 | 2783 | { |
2648 | - if (!isset($board_updates[$msg . '-' . $lastModified[$id]])) |
|
2649 | - $board_updates[$msg . '-' . $lastModified[$id]] = array( |
|
2784 | + if (!isset($board_updates[$msg . '-' . $lastModified[$id]])) { |
|
2785 | + $board_updates[$msg . '-' . $lastModified[$id]] = array( |
|
2650 | 2786 | 'id' => $msg, |
2651 | 2787 | 'updated' => $lastModified[$id], |
2652 | 2788 | 'boards' => array($id) |
2653 | 2789 | ); |
2654 | - |
|
2655 | - else |
|
2656 | - $board_updates[$msg . '-' . $lastModified[$id]]['boards'][] = $id; |
|
2790 | + } else { |
|
2791 | + $board_updates[$msg . '-' . $lastModified[$id]]['boards'][] = $id; |
|
2792 | + } |
|
2657 | 2793 | } |
2658 | 2794 | |
2659 | 2795 | // Now commit the changes! |
@@ -2745,11 +2881,13 @@ discard block |
||
2745 | 2881 | global $txt, $mbname, $scripturl, $settings; |
2746 | 2882 | |
2747 | 2883 | // First things first, load up the email templates language file, if we need to. |
2748 | - if ($loadLang) |
|
2749 | - loadLanguage('EmailTemplates', $lang); |
|
2884 | + if ($loadLang) { |
|
2885 | + loadLanguage('EmailTemplates', $lang); |
|
2886 | + } |
|
2750 | 2887 | |
2751 | - if (!isset($txt[$template . '_subject']) || !isset($txt[$template . '_body'])) |
|
2752 | - fatal_lang_error('email_no_template', 'template', array($template)); |
|
2888 | + if (!isset($txt[$template . '_subject']) || !isset($txt[$template . '_body'])) { |
|
2889 | + fatal_lang_error('email_no_template', 'template', array($template)); |
|
2890 | + } |
|
2753 | 2891 | |
2754 | 2892 | $ret = array( |
2755 | 2893 | 'subject' => $txt[$template . '_subject'], |
@@ -2799,17 +2937,18 @@ discard block |
||
2799 | 2937 | function user_info_callback($matches) |
2800 | 2938 | { |
2801 | 2939 | global $user_info; |
2802 | - if (empty($matches[1])) |
|
2803 | - return ''; |
|
2940 | + if (empty($matches[1])) { |
|
2941 | + return ''; |
|
2942 | + } |
|
2804 | 2943 | |
2805 | 2944 | $use_ref = true; |
2806 | 2945 | $ref = &$user_info; |
2807 | 2946 | |
2808 | 2947 | foreach (explode('.', $matches[1]) as $index) |
2809 | 2948 | { |
2810 | - if ($use_ref && isset($ref[$index])) |
|
2811 | - $ref = &$ref[$index]; |
|
2812 | - else |
|
2949 | + if ($use_ref && isset($ref[$index])) { |
|
2950 | + $ref = &$ref[$index]; |
|
2951 | + } else |
|
2813 | 2952 | { |
2814 | 2953 | $use_ref = false; |
2815 | 2954 | break; |
@@ -2846,8 +2985,7 @@ discard block |
||
2846 | 2985 | if (!empty($lang_locale) && enchant_broker_dict_exists($context['enchant_broker'], $lang_locale)) |
2847 | 2986 | { |
2848 | 2987 | $enchant_link = enchant_broker_request_dict($context['enchant_broker'], $lang_locale); |
2849 | - } |
|
2850 | - elseif (enchant_broker_dict_exists($context['enchant_broker'], $txt['lang_dictionary'])) |
|
2988 | + } elseif (enchant_broker_dict_exists($context['enchant_broker'], $txt['lang_dictionary'])) |
|
2851 | 2989 | { |
2852 | 2990 | $enchant_link = enchant_broker_request_dict($context['enchant_broker'], $txt['lang_dictionary']); |
2853 | 2991 | } |
@@ -2857,8 +2995,7 @@ discard block |
||
2857 | 2995 | { |
2858 | 2996 | $context['provider'] = 'enchant'; |
2859 | 2997 | return $enchant_link; |
2860 | - } |
|
2861 | - else |
|
2998 | + } else |
|
2862 | 2999 | { |
2863 | 3000 | // Free up any resources used... |
2864 | 3001 | @enchant_broker_free($context['enchant_broker']); |
@@ -2879,8 +3016,9 @@ discard block |
||
2879 | 3016 | $pspell_link = pspell_new($txt['lang_dictionary'], $txt['lang_spelling'], '', strtr($context['character_set'], array('iso-' => 'iso', 'ISO-' => 'iso')), PSPELL_FAST | PSPELL_RUN_TOGETHER); |
2880 | 3017 | |
2881 | 3018 | // Most people don't have anything but English installed... So we use English as a last resort. |
2882 | - if (!$pspell_link) |
|
2883 | - $pspell_link = pspell_new('en', '', '', '', PSPELL_FAST | PSPELL_RUN_TOGETHER); |
|
3019 | + if (!$pspell_link) { |
|
3020 | + $pspell_link = pspell_new('en', '', '', '', PSPELL_FAST | PSPELL_RUN_TOGETHER); |
|
3021 | + } |
|
2884 | 3022 | |
2885 | 3023 | error_reporting($old); |
2886 | 3024 | ob_end_clean(); |
@@ -2920,8 +3058,7 @@ discard block |
||
2920 | 3058 | $word = iconv($txt['lang_character_set'], 'UTF-8', $word); |
2921 | 3059 | } |
2922 | 3060 | return enchant_dict_check($dict, $word); |
2923 | - } |
|
2924 | - elseif ($context['provider'] == 'pspell') |
|
3061 | + } elseif ($context['provider'] == 'pspell') |
|
2925 | 3062 | { |
2926 | 3063 | return pspell_check($dict, $word); |
2927 | 3064 | } |
@@ -2957,13 +3094,11 @@ discard block |
||
2957 | 3094 | } |
2958 | 3095 | |
2959 | 3096 | return $suggestions; |
2960 | - } |
|
2961 | - else |
|
3097 | + } else |
|
2962 | 3098 | { |
2963 | 3099 | return enchant_dict_suggest($dict, $word); |
2964 | 3100 | } |
2965 | - } |
|
2966 | - elseif ($context['provider'] == 'pspell') |
|
3101 | + } elseif ($context['provider'] == 'pspell') |
|
2967 | 3102 | { |
2968 | 3103 | return pspell_suggest($dict, $word); |
2969 | 3104 | } |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * Entry point for this section. |
@@ -38,8 +39,7 @@ discard block |
||
38 | 39 | 'stats' => 'SpiderStats', |
39 | 40 | ); |
40 | 41 | $default = 'stats'; |
41 | - } |
|
42 | - else |
|
42 | + } else |
|
43 | 43 | { |
44 | 44 | $subActions = array( |
45 | 45 | 'settings' => 'ManageSearchEngineSettings', |
@@ -90,11 +90,12 @@ discard block |
||
90 | 90 | { |
91 | 91 | disabledState = document.getElementById(\'spider_mode\').value == 0;'; |
92 | 92 | |
93 | - foreach ($config_vars as $variable) |
|
94 | - if ($variable[1] != 'spider_mode') |
|
93 | + foreach ($config_vars as $variable) { |
|
94 | + if ($variable[1] != 'spider_mode') |
|
95 | 95 | $javascript_function .= ' |
96 | 96 | if (document.getElementById(\'' . $variable[1] . '\')) |
97 | 97 | document.getElementById(\'' . $variable[1] . '\').disabled = disabledState;'; |
98 | + } |
|
98 | 99 | |
99 | 100 | $javascript_function .= ' |
100 | 101 | } |
@@ -102,8 +103,9 @@ discard block |
||
102 | 103 | |
103 | 104 | call_integration_hook('integrate_modify_search_engine_settings', array(&$config_vars)); |
104 | 105 | |
105 | - if ($return_config) |
|
106 | - return $config_vars; |
|
106 | + if ($return_config) { |
|
107 | + return $config_vars; |
|
108 | + } |
|
107 | 109 | |
108 | 110 | // We need to load the groups for the spider group thingy. |
109 | 111 | $request = $smcFunc['db_query']('', ' |
@@ -116,13 +118,15 @@ discard block |
||
116 | 118 | 'moderator_group' => 3, |
117 | 119 | ) |
118 | 120 | ); |
119 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
120 | - $config_vars['spider_group'][2][$row['id_group']] = $row['group_name']; |
|
121 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
122 | + $config_vars['spider_group'][2][$row['id_group']] = $row['group_name']; |
|
123 | + } |
|
121 | 124 | $smcFunc['db_free_result']($request); |
122 | 125 | |
123 | 126 | // Make sure it's valid - note that regular members are given id_group = 1 which is reversed in Load.php - no admins here! |
124 | - if (isset($_POST['spider_group']) && !isset($config_vars['spider_group'][2][$_POST['spider_group']])) |
|
125 | - $_POST['spider_group'] = 0; |
|
127 | + if (isset($_POST['spider_group']) && !isset($config_vars['spider_group'][2][$_POST['spider_group']])) { |
|
128 | + $_POST['spider_group'] = 0; |
|
129 | + } |
|
126 | 130 | |
127 | 131 | // We'll want this for our easy save. |
128 | 132 | require_once($sourcedir . '/ManageServer.php'); |
@@ -166,8 +170,9 @@ discard block |
||
166 | 170 | } |
167 | 171 | |
168 | 172 | // Are we adding a new one? |
169 | - if (!empty($_POST['addSpider'])) |
|
170 | - return EditSpider(); |
|
173 | + if (!empty($_POST['addSpider'])) { |
|
174 | + return EditSpider(); |
|
175 | + } |
|
171 | 176 | // User pressed the 'remove selection button'. |
172 | 177 | elseif (!empty($_POST['removeSpiders']) && !empty($_POST['remove']) && is_array($_POST['remove'])) |
173 | 178 | { |
@@ -175,8 +180,9 @@ discard block |
||
175 | 180 | validateToken('admin-ser'); |
176 | 181 | |
177 | 182 | // Make sure every entry is a proper integer. |
178 | - foreach ($_POST['remove'] as $index => $spider_id) |
|
179 | - $_POST['remove'][(int) $index] = (int) $spider_id; |
|
183 | + foreach ($_POST['remove'] as $index => $spider_id) { |
|
184 | + $_POST['remove'][(int) $index] = (int) $spider_id; |
|
185 | + } |
|
180 | 186 | |
181 | 187 | // Delete them all! |
182 | 188 | $smcFunc['db_query']('', ' |
@@ -215,8 +221,9 @@ discard block |
||
215 | 221 | ); |
216 | 222 | |
217 | 223 | $context['spider_last_seen'] = array(); |
218 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
219 | - $context['spider_last_seen'][$row['id_spider']] = $row['last_seen_time']; |
|
224 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
225 | + $context['spider_last_seen'][$row['id_spider']] = $row['last_seen_time']; |
|
226 | + } |
|
220 | 227 | $smcFunc['db_free_result']($request); |
221 | 228 | |
222 | 229 | createToken('admin-ser'); |
@@ -346,8 +353,9 @@ discard block |
||
346 | 353 | ) |
347 | 354 | ); |
348 | 355 | $spiders = array(); |
349 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
350 | - $spiders[$row['id_spider']] = $row; |
|
356 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
357 | + $spiders[$row['id_spider']] = $row; |
|
358 | + } |
|
351 | 359 | $smcFunc['db_free_result']($request); |
352 | 360 | |
353 | 361 | return $spiders; |
@@ -397,14 +405,15 @@ discard block |
||
397 | 405 | foreach ($ip_sets as $set) |
398 | 406 | { |
399 | 407 | $test = ip2range(trim($set)); |
400 | - if (!empty($test)) |
|
401 | - $ips[] = $set; |
|
408 | + if (!empty($test)) { |
|
409 | + $ips[] = $set; |
|
410 | + } |
|
402 | 411 | } |
403 | 412 | $ips = implode(',', $ips); |
404 | 413 | |
405 | 414 | // Goes in as it is... |
406 | - if ($context['id_spider']) |
|
407 | - $smcFunc['db_query']('', ' |
|
415 | + if ($context['id_spider']) { |
|
416 | + $smcFunc['db_query']('', ' |
|
408 | 417 | UPDATE {db_prefix}spiders |
409 | 418 | SET spider_name = {string:spider_name}, user_agent = {string:spider_agent}, |
410 | 419 | ip_info = {string:ip_info} |
@@ -416,8 +425,8 @@ discard block |
||
416 | 425 | 'ip_info' => $ips, |
417 | 426 | ) |
418 | 427 | ); |
419 | - else |
|
420 | - $smcFunc['db_insert']('insert', |
|
428 | + } else { |
|
429 | + $smcFunc['db_insert']('insert', |
|
421 | 430 | '{db_prefix}spiders', |
422 | 431 | array( |
423 | 432 | 'spider_name' => 'string', 'user_agent' => 'string', 'ip_info' => 'string', |
@@ -427,6 +436,7 @@ discard block |
||
427 | 436 | ), |
428 | 437 | array('id_spider') |
429 | 438 | ); |
439 | + } |
|
430 | 440 | |
431 | 441 | |
432 | 442 | cache_put_data('spider_search', null); |
@@ -454,13 +464,14 @@ discard block |
||
454 | 464 | 'current_spider' => $context['id_spider'], |
455 | 465 | ) |
456 | 466 | ); |
457 | - if ($row = $smcFunc['db_fetch_assoc']($request)) |
|
458 | - $context['spider'] = array( |
|
467 | + if ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
468 | + $context['spider'] = array( |
|
459 | 469 | 'id' => $row['id_spider'], |
460 | 470 | 'name' => $row['spider_name'], |
461 | 471 | 'agent' => $row['user_agent'], |
462 | 472 | 'ip_info' => $row['ip_info'], |
463 | 473 | ); |
474 | + } |
|
464 | 475 | $smcFunc['db_free_result']($request); |
465 | 476 | } |
466 | 477 | |
@@ -477,8 +488,9 @@ discard block |
||
477 | 488 | { |
478 | 489 | global $modSettings, $smcFunc; |
479 | 490 | |
480 | - if (isset($_SESSION['id_robot'])) |
|
481 | - unset($_SESSION['id_robot']); |
|
491 | + if (isset($_SESSION['id_robot'])) { |
|
492 | + unset($_SESSION['id_robot']); |
|
493 | + } |
|
482 | 494 | $_SESSION['robot_check'] = time(); |
483 | 495 | |
484 | 496 | // We cache the spider data for ten minutes if we can. |
@@ -492,15 +504,17 @@ discard block |
||
492 | 504 | ) |
493 | 505 | ); |
494 | 506 | $spider_data = array(); |
495 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
496 | - $spider_data[] = $row; |
|
507 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
508 | + $spider_data[] = $row; |
|
509 | + } |
|
497 | 510 | $smcFunc['db_free_result']($request); |
498 | 511 | |
499 | 512 | cache_put_data('spider_search', $spider_data, 600); |
500 | 513 | } |
501 | 514 | |
502 | - if (empty($spider_data)) |
|
503 | - return false; |
|
515 | + if (empty($spider_data)) { |
|
516 | + return false; |
|
517 | + } |
|
504 | 518 | |
505 | 519 | // Only do these bits once. |
506 | 520 | $ci_user_agent = strtolower($_SERVER['HTTP_USER_AGENT']); |
@@ -508,33 +522,38 @@ discard block |
||
508 | 522 | foreach ($spider_data as $spider) |
509 | 523 | { |
510 | 524 | // User agent is easy. |
511 | - if (!empty($spider['user_agent']) && strpos($ci_user_agent, strtolower($spider['user_agent'])) !== false) |
|
512 | - $_SESSION['id_robot'] = $spider['id_spider']; |
|
525 | + if (!empty($spider['user_agent']) && strpos($ci_user_agent, strtolower($spider['user_agent'])) !== false) { |
|
526 | + $_SESSION['id_robot'] = $spider['id_spider']; |
|
527 | + } |
|
513 | 528 | // IP stuff is harder. |
514 | 529 | elseif ($_SERVER['REMOTE_ADDR']) |
515 | 530 | { |
516 | 531 | $ips = explode(',', $spider['ip_info']); |
517 | 532 | foreach ($ips as $ip) |
518 | 533 | { |
519 | - if ($ip === '') |
|
520 | - continue; |
|
534 | + if ($ip === '') { |
|
535 | + continue; |
|
536 | + } |
|
521 | 537 | |
522 | 538 | $ip = ip2range($ip); |
523 | 539 | if (!empty($ip)) |
524 | 540 | { |
525 | - if (inet_ptod($ip['low']) <= inet_ptod($_SERVER['REMOTE_ADDR']) && inet_ptod($ip['high']) >= inet_ptod($_SERVER['REMOTE_ADDR'])) |
|
526 | - $_SESSION['id_robot'] = $spider['id_spider']; |
|
541 | + if (inet_ptod($ip['low']) <= inet_ptod($_SERVER['REMOTE_ADDR']) && inet_ptod($ip['high']) >= inet_ptod($_SERVER['REMOTE_ADDR'])) { |
|
542 | + $_SESSION['id_robot'] = $spider['id_spider']; |
|
543 | + } |
|
527 | 544 | } |
528 | 545 | } |
529 | 546 | } |
530 | 547 | |
531 | - if (isset($_SESSION['id_robot'])) |
|
532 | - break; |
|
548 | + if (isset($_SESSION['id_robot'])) { |
|
549 | + break; |
|
550 | + } |
|
533 | 551 | } |
534 | 552 | |
535 | 553 | // If this is low server tracking then log the spider here as opposed to the main logging function. |
536 | - if (!empty($modSettings['spider_mode']) && $modSettings['spider_mode'] == 1 && !empty($_SESSION['id_robot'])) |
|
537 | - logSpider(); |
|
554 | + if (!empty($modSettings['spider_mode']) && $modSettings['spider_mode'] == 1 && !empty($_SESSION['id_robot'])) { |
|
555 | + logSpider(); |
|
556 | + } |
|
538 | 557 | |
539 | 558 | return !empty($_SESSION['id_robot']) ? $_SESSION['id_robot'] : 0; |
540 | 559 | } |
@@ -548,8 +567,9 @@ discard block |
||
548 | 567 | { |
549 | 568 | global $smcFunc, $modSettings, $context; |
550 | 569 | |
551 | - if (empty($modSettings['spider_mode']) || empty($_SESSION['id_robot'])) |
|
552 | - return; |
|
570 | + if (empty($modSettings['spider_mode']) || empty($_SESSION['id_robot'])) { |
|
571 | + return; |
|
572 | + } |
|
553 | 573 | |
554 | 574 | // Attempt to update today's entry. |
555 | 575 | if ($modSettings['spider_mode'] == 1) |
@@ -590,9 +610,9 @@ discard block |
||
590 | 610 | $url = $_GET + array('USER_AGENT' => $_SERVER['HTTP_USER_AGENT']); |
591 | 611 | unset($url['sesc'], $url[$context['session_var']]); |
592 | 612 | $url = $smcFunc['json_encode']($url); |
613 | + } else { |
|
614 | + $url = ''; |
|
593 | 615 | } |
594 | - else |
|
595 | - $url = ''; |
|
596 | 616 | |
597 | 617 | $smcFunc['db_insert']('insert', |
598 | 618 | '{db_prefix}log_spider_hits', |
@@ -620,12 +640,14 @@ discard block |
||
620 | 640 | ) |
621 | 641 | ); |
622 | 642 | $spider_hits = array(); |
623 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
624 | - $spider_hits[] = $row; |
|
643 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
644 | + $spider_hits[] = $row; |
|
645 | + } |
|
625 | 646 | $smcFunc['db_free_result']($request); |
626 | 647 | |
627 | - if (empty($spider_hits)) |
|
628 | - return; |
|
648 | + if (empty($spider_hits)) { |
|
649 | + return; |
|
650 | + } |
|
629 | 651 | |
630 | 652 | // Attempt to update the master data. |
631 | 653 | $stat_inserts = array(); |
@@ -646,18 +668,20 @@ discard block |
||
646 | 668 | 'hits' => $stat['num_hits'], |
647 | 669 | ) |
648 | 670 | ); |
649 | - if ($smcFunc['db_affected_rows']() == 0) |
|
650 | - $stat_inserts[] = array($date, $stat['id_spider'], $stat['num_hits'], $stat['last_seen']); |
|
671 | + if ($smcFunc['db_affected_rows']() == 0) { |
|
672 | + $stat_inserts[] = array($date, $stat['id_spider'], $stat['num_hits'], $stat['last_seen']); |
|
673 | + } |
|
651 | 674 | } |
652 | 675 | |
653 | 676 | // New stats? |
654 | - if (!empty($stat_inserts)) |
|
655 | - $smcFunc['db_insert']('ignore', |
|
677 | + if (!empty($stat_inserts)) { |
|
678 | + $smcFunc['db_insert']('ignore', |
|
656 | 679 | '{db_prefix}log_spider_stats', |
657 | 680 | array('stat_date' => 'date', 'id_spider' => 'int', 'page_hits' => 'int', 'last_seen' => 'int'), |
658 | 681 | $stat_inserts, |
659 | 682 | array('stat_date', 'id_spider') |
660 | 683 | ); |
684 | + } |
|
661 | 685 | |
662 | 686 | // All processed. |
663 | 687 | $smcFunc['db_query']('', ' |
@@ -700,8 +724,7 @@ discard block |
||
700 | 724 | 'delete_period' => $deleteTime, |
701 | 725 | ) |
702 | 726 | ); |
703 | - } |
|
704 | - else |
|
727 | + } else |
|
705 | 728 | { |
706 | 729 | // Deleting all of them |
707 | 730 | $smcFunc['db_query']('', ' |
@@ -791,10 +814,11 @@ discard block |
||
791 | 814 | foreach ($context['spider_logs']['rows'] as $k => $row) |
792 | 815 | { |
793 | 816 | // Feature disabled? |
794 | - if (empty($row['data']['viewing']['value']) && isset($modSettings['spider_mode']) && $modSettings['spider_mode'] < 3) |
|
795 | - $context['spider_logs']['rows'][$k]['viewing']['value'] = '<em>' . $txt['spider_disabled'] . '</em>'; |
|
796 | - else |
|
797 | - $urls[$k] = array($row['data']['viewing']['value'], -1); |
|
817 | + if (empty($row['data']['viewing']['value']) && isset($modSettings['spider_mode']) && $modSettings['spider_mode'] < 3) { |
|
818 | + $context['spider_logs']['rows'][$k]['viewing']['value'] = '<em>' . $txt['spider_disabled'] . '</em>'; |
|
819 | + } else { |
|
820 | + $urls[$k] = array($row['data']['viewing']['value'], -1); |
|
821 | + } |
|
798 | 822 | } |
799 | 823 | |
800 | 824 | // Now stick in the new URLs. |
@@ -836,8 +860,9 @@ discard block |
||
836 | 860 | ) |
837 | 861 | ); |
838 | 862 | $spider_logs = array(); |
839 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
840 | - $spider_logs[] = $row; |
|
863 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
864 | + $spider_logs[] = $row; |
|
865 | + } |
|
841 | 866 | $smcFunc['db_free_result']($request); |
842 | 867 | |
843 | 868 | return $spider_logs; |
@@ -913,14 +938,18 @@ discard block |
||
913 | 938 | |
914 | 939 | // Prepare the dates for the drop down. |
915 | 940 | $date_choices = array(); |
916 | - for ($y = $min_year; $y <= $max_year; $y++) |
|
917 | - for ($m = 1; $m <= 12; $m++) |
|
941 | + for ($y = $min_year; $y <= $max_year; $y++) { |
|
942 | + for ($m = 1; |
|
943 | + } |
|
944 | + $m <= 12; $m++) |
|
918 | 945 | { |
919 | 946 | // This doesn't count? |
920 | - if ($y == $min_year && $m < $min_month) |
|
921 | - continue; |
|
922 | - if ($y == $max_year && $m > $max_month) |
|
923 | - break; |
|
947 | + if ($y == $min_year && $m < $min_month) { |
|
948 | + continue; |
|
949 | + } |
|
950 | + if ($y == $max_year && $m > $max_month) { |
|
951 | + break; |
|
952 | + } |
|
924 | 953 | |
925 | 954 | $date_choices[$y . $m] = $txt['months_short'][$m] . ' ' . $y; |
926 | 955 | } |
@@ -933,13 +962,14 @@ discard block |
||
933 | 962 | ' . $txt['spider_stats_select_month'] . ': |
934 | 963 | <select name="new_date" onchange="document.spider_stat_list.submit();">'; |
935 | 964 | |
936 | - if (empty($date_choices)) |
|
937 | - $date_select .= ' |
|
965 | + if (empty($date_choices)) { |
|
966 | + $date_select .= ' |
|
938 | 967 | <option></option>'; |
939 | - else |
|
940 | - foreach ($date_choices as $id => $text) |
|
968 | + } else { |
|
969 | + foreach ($date_choices as $id => $text) |
|
941 | 970 | $date_select .= ' |
942 | 971 | <option value="' . $id . '"' . ($current_date == $id ? ' selected' : '') . '>' . $text . '</option>'; |
972 | + } |
|
943 | 973 | |
944 | 974 | $date_select .= ' |
945 | 975 | </select> |
@@ -1063,8 +1093,9 @@ discard block |
||
1063 | 1093 | ) |
1064 | 1094 | ); |
1065 | 1095 | $spider_stats = array(); |
1066 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1067 | - $spider_stats[] = $row; |
|
1096 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1097 | + $spider_stats[] = $row; |
|
1098 | + } |
|
1068 | 1099 | $smcFunc['db_free_result']($request); |
1069 | 1100 | |
1070 | 1101 | return $spider_stats; |
@@ -1105,8 +1136,9 @@ discard block |
||
1105 | 1136 | array() |
1106 | 1137 | ); |
1107 | 1138 | $spiders = array(); |
1108 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1109 | - $spiders[$row['id_spider']] = $row['spider_name']; |
|
1139 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1140 | + $spiders[$row['id_spider']] = $row['spider_name']; |
|
1141 | + } |
|
1110 | 1142 | $smcFunc['db_free_result']($request); |
1111 | 1143 | |
1112 | 1144 | updateSettings(array('spider_name_cache' => $smcFunc['json_encode']($spiders))); |
@@ -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 | * This function works out what to do! |
@@ -24,9 +25,9 @@ discard block |
||
24 | 25 | global $time_start, $smcFunc; |
25 | 26 | |
26 | 27 | // Special case for doing the mail queue. |
27 | - if (isset($_GET['scheduled']) && $_GET['scheduled'] == 'mailq') |
|
28 | - ReduceMailQueue(); |
|
29 | - else |
|
28 | + if (isset($_GET['scheduled']) && $_GET['scheduled'] == 'mailq') { |
|
29 | + ReduceMailQueue(); |
|
30 | + } else |
|
30 | 31 | { |
31 | 32 | $task_string = ''; |
32 | 33 | |
@@ -53,18 +54,20 @@ discard block |
||
53 | 54 | |
54 | 55 | // How long in seconds it the gap? |
55 | 56 | $duration = $row['time_regularity']; |
56 | - if ($row['time_unit'] == 'm') |
|
57 | - $duration *= 60; |
|
58 | - elseif ($row['time_unit'] == 'h') |
|
59 | - $duration *= 3600; |
|
60 | - elseif ($row['time_unit'] == 'd') |
|
61 | - $duration *= 86400; |
|
62 | - elseif ($row['time_unit'] == 'w') |
|
63 | - $duration *= 604800; |
|
57 | + if ($row['time_unit'] == 'm') { |
|
58 | + $duration *= 60; |
|
59 | + } elseif ($row['time_unit'] == 'h') { |
|
60 | + $duration *= 3600; |
|
61 | + } elseif ($row['time_unit'] == 'd') { |
|
62 | + $duration *= 86400; |
|
63 | + } elseif ($row['time_unit'] == 'w') { |
|
64 | + $duration *= 604800; |
|
65 | + } |
|
64 | 66 | |
65 | 67 | // If we were really late running this task actually skip the next one. |
66 | - if (time() + ($duration / 2) > $next_time) |
|
67 | - $next_time += $duration; |
|
68 | + if (time() + ($duration / 2) > $next_time) { |
|
69 | + $next_time += $duration; |
|
70 | + } |
|
68 | 71 | |
69 | 72 | // Update it now, so no others run this! |
70 | 73 | $smcFunc['db_query']('', ' |
@@ -81,16 +84,19 @@ discard block |
||
81 | 84 | $affected_rows = $smcFunc['db_affected_rows'](); |
82 | 85 | |
83 | 86 | // What kind of task are we handling? |
84 | - if (!empty($row['callable'])) |
|
85 | - $task_string = $row['callable']; |
|
87 | + if (!empty($row['callable'])) { |
|
88 | + $task_string = $row['callable']; |
|
89 | + } |
|
86 | 90 | |
87 | 91 | // Default SMF task or old mods? |
88 | - elseif (function_exists('scheduled_' . $row['task'])) |
|
89 | - $task_string = 'scheduled_' . $row['task']; |
|
92 | + elseif (function_exists('scheduled_' . $row['task'])) { |
|
93 | + $task_string = 'scheduled_' . $row['task']; |
|
94 | + } |
|
90 | 95 | |
91 | 96 | // One last resource, the task name. |
92 | - elseif (!empty($row['task'])) |
|
93 | - $task_string = $row['task']; |
|
97 | + elseif (!empty($row['task'])) { |
|
98 | + $task_string = $row['task']; |
|
99 | + } |
|
94 | 100 | |
95 | 101 | // The function must exist or we are wasting our time, plus do some timestamp checking, and database check! |
96 | 102 | if (!empty($task_string) && (!isset($_GET['ts']) || $_GET['ts'] == $row['next_time']) && $affected_rows) |
@@ -101,11 +107,11 @@ discard block |
||
101 | 107 | $callable_task = call_helper($task_string, true); |
102 | 108 | |
103 | 109 | // Perform the task. |
104 | - if (!empty($callable_task)) |
|
105 | - $completed = call_user_func($callable_task); |
|
106 | - |
|
107 | - else |
|
108 | - $completed = false; |
|
110 | + if (!empty($callable_task)) { |
|
111 | + $completed = call_user_func($callable_task); |
|
112 | + } else { |
|
113 | + $completed = false; |
|
114 | + } |
|
109 | 115 | |
110 | 116 | // Log that we did it ;) |
111 | 117 | if ($completed) |
@@ -138,18 +144,20 @@ discard block |
||
138 | 144 | ) |
139 | 145 | ); |
140 | 146 | // No new task scheduled yet? |
141 | - if ($smcFunc['db_num_rows']($request) === 0) |
|
142 | - $nextEvent = time() + 86400; |
|
143 | - else |
|
144 | - list ($nextEvent) = $smcFunc['db_fetch_row']($request); |
|
147 | + if ($smcFunc['db_num_rows']($request) === 0) { |
|
148 | + $nextEvent = time() + 86400; |
|
149 | + } else { |
|
150 | + list ($nextEvent) = $smcFunc['db_fetch_row']($request); |
|
151 | + } |
|
145 | 152 | $smcFunc['db_free_result']($request); |
146 | 153 | |
147 | 154 | updateSettings(array('next_task_time' => $nextEvent)); |
148 | 155 | } |
149 | 156 | |
150 | 157 | // Shall we return? |
151 | - if (!isset($_GET['scheduled'])) |
|
152 | - return true; |
|
158 | + if (!isset($_GET['scheduled'])) { |
|
159 | + return true; |
|
160 | + } |
|
153 | 161 | |
154 | 162 | // Finally, send some stuff... |
155 | 163 | header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); |
@@ -181,16 +189,18 @@ discard block |
||
181 | 189 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
182 | 190 | { |
183 | 191 | // If this is no longer around we'll ignore it. |
184 | - if (empty($row['id_topic'])) |
|
185 | - continue; |
|
192 | + if (empty($row['id_topic'])) { |
|
193 | + continue; |
|
194 | + } |
|
186 | 195 | |
187 | 196 | // What type is it? |
188 | - if ($row['id_first_msg'] && $row['id_first_msg'] == $row['id_msg']) |
|
189 | - $type = 'topic'; |
|
190 | - elseif ($row['id_attach']) |
|
191 | - $type = 'attach'; |
|
192 | - else |
|
193 | - $type = 'msg'; |
|
197 | + if ($row['id_first_msg'] && $row['id_first_msg'] == $row['id_msg']) { |
|
198 | + $type = 'topic'; |
|
199 | + } elseif ($row['id_attach']) { |
|
200 | + $type = 'attach'; |
|
201 | + } else { |
|
202 | + $type = 'msg'; |
|
203 | + } |
|
194 | 204 | |
195 | 205 | // Add it to the array otherwise. |
196 | 206 | $notices[$row['id_board']][$type][] = array( |
@@ -211,8 +221,9 @@ discard block |
||
211 | 221 | ); |
212 | 222 | |
213 | 223 | // If nothing quit now. |
214 | - if (empty($notices)) |
|
215 | - return true; |
|
224 | + if (empty($notices)) { |
|
225 | + return true; |
|
226 | + } |
|
216 | 227 | |
217 | 228 | // Now we need to think about finding out *who* can approve - this is hard! |
218 | 229 | |
@@ -231,14 +242,16 @@ discard block |
||
231 | 242 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
232 | 243 | { |
233 | 244 | // Sorry guys, but we have to ignore guests AND members - it would be too many otherwise. |
234 | - if ($row['id_group'] < 2) |
|
235 | - continue; |
|
245 | + if ($row['id_group'] < 2) { |
|
246 | + continue; |
|
247 | + } |
|
236 | 248 | |
237 | 249 | $perms[$row['id_profile']][$row['add_deny'] ? 'add' : 'deny'][] = $row['id_group']; |
238 | 250 | |
239 | 251 | // Anyone who can access has to be considered. |
240 | - if ($row['add_deny']) |
|
241 | - $addGroups[] = $row['id_group']; |
|
252 | + if ($row['add_deny']) { |
|
253 | + $addGroups[] = $row['id_group']; |
|
254 | + } |
|
242 | 255 | } |
243 | 256 | $smcFunc['db_free_result']($request); |
244 | 257 | |
@@ -283,8 +296,9 @@ discard block |
||
283 | 296 | if (!empty($row['mod_prefs'])) |
284 | 297 | { |
285 | 298 | list(,, $pref_binary) = explode('|', $row['mod_prefs']); |
286 | - if (!($pref_binary & 4)) |
|
287 | - continue; |
|
299 | + if (!($pref_binary & 4)) { |
|
300 | + continue; |
|
301 | + } |
|
288 | 302 | } |
289 | 303 | |
290 | 304 | $members[$row['id_member']] = array( |
@@ -309,8 +323,9 @@ discard block |
||
309 | 323 | $emailbody = ''; |
310 | 324 | |
311 | 325 | // Load the language file as required. |
312 | - if (empty($current_language) || $current_language != $member['language']) |
|
313 | - $current_language = loadLanguage('EmailTemplates', $member['language'], false); |
|
326 | + if (empty($current_language) || $current_language != $member['language']) { |
|
327 | + $current_language = loadLanguage('EmailTemplates', $member['language'], false); |
|
328 | + } |
|
314 | 329 | |
315 | 330 | // Loop through each notice... |
316 | 331 | foreach ($notices as $board => $notice) |
@@ -318,29 +333,34 @@ discard block |
||
318 | 333 | $access = false; |
319 | 334 | |
320 | 335 | // Can they mod in this board? |
321 | - if (isset($mods[$id][$board])) |
|
322 | - $access = true; |
|
336 | + if (isset($mods[$id][$board])) { |
|
337 | + $access = true; |
|
338 | + } |
|
323 | 339 | |
324 | 340 | // Do the group check... |
325 | 341 | if (!$access && isset($perms[$profiles[$board]]['add'])) |
326 | 342 | { |
327 | 343 | // They can access?! |
328 | - if (array_intersect($perms[$profiles[$board]]['add'], $member['groups'])) |
|
329 | - $access = true; |
|
344 | + if (array_intersect($perms[$profiles[$board]]['add'], $member['groups'])) { |
|
345 | + $access = true; |
|
346 | + } |
|
330 | 347 | |
331 | 348 | // If they have deny rights don't consider them! |
332 | - if (isset($perms[$profiles[$board]]['deny'])) |
|
333 | - if (array_intersect($perms[$profiles[$board]]['deny'], $member['groups'])) |
|
349 | + if (isset($perms[$profiles[$board]]['deny'])) { |
|
350 | + if (array_intersect($perms[$profiles[$board]]['deny'], $member['groups'])) |
|
334 | 351 | $access = false; |
352 | + } |
|
335 | 353 | } |
336 | 354 | |
337 | 355 | // Finally, fix it for admins! |
338 | - if (in_array(1, $member['groups'])) |
|
339 | - $access = true; |
|
356 | + if (in_array(1, $member['groups'])) { |
|
357 | + $access = true; |
|
358 | + } |
|
340 | 359 | |
341 | 360 | // If they can't access it then give it a break! |
342 | - if (!$access) |
|
343 | - continue; |
|
361 | + if (!$access) { |
|
362 | + continue; |
|
363 | + } |
|
344 | 364 | |
345 | 365 | foreach ($notice as $type => $items) |
346 | 366 | { |
@@ -348,15 +368,17 @@ discard block |
||
348 | 368 | $emailbody .= $txt['scheduled_approval_email_' . $type] . "\n" . |
349 | 369 | '------------------------------------------------------' . "\n"; |
350 | 370 | |
351 | - foreach ($items as $item) |
|
352 | - $emailbody .= $item['subject'] . ' - ' . $item['href'] . "\n"; |
|
371 | + foreach ($items as $item) { |
|
372 | + $emailbody .= $item['subject'] . ' - ' . $item['href'] . "\n"; |
|
373 | + } |
|
353 | 374 | |
354 | 375 | $emailbody .= "\n"; |
355 | 376 | } |
356 | 377 | } |
357 | 378 | |
358 | - if ($emailbody == '') |
|
359 | - continue; |
|
379 | + if ($emailbody == '') { |
|
380 | + continue; |
|
381 | + } |
|
360 | 382 | |
361 | 383 | $replacements = array( |
362 | 384 | 'REALNAME' => $member['name'], |
@@ -397,8 +419,9 @@ discard block |
||
397 | 419 | ) |
398 | 420 | ); |
399 | 421 | $members = array(); |
400 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
401 | - $members[$row['id_member']] = $row['warning']; |
|
422 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
423 | + $members[$row['id_member']] = $row['warning']; |
|
424 | + } |
|
402 | 425 | $smcFunc['db_free_result']($request); |
403 | 426 | |
404 | 427 | // Have some members to check? |
@@ -420,17 +443,18 @@ discard block |
||
420 | 443 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
421 | 444 | { |
422 | 445 | // More than 24 hours ago? |
423 | - if ($row['last_warning'] <= time() - 86400) |
|
424 | - $member_changes[] = array( |
|
446 | + if ($row['last_warning'] <= time() - 86400) { |
|
447 | + $member_changes[] = array( |
|
425 | 448 | 'id' => $row['id_recipient'], |
426 | 449 | 'warning' => $members[$row['id_recipient']] >= $modSettings['warning_decrement'] ? $members[$row['id_recipient']] - $modSettings['warning_decrement'] : 0, |
427 | 450 | ); |
451 | + } |
|
428 | 452 | } |
429 | 453 | $smcFunc['db_free_result']($request); |
430 | 454 | |
431 | 455 | // Have some members to change? |
432 | - if (!empty($member_changes)) |
|
433 | - foreach ($member_changes as $change) |
|
456 | + if (!empty($member_changes)) { |
|
457 | + foreach ($member_changes as $change) |
|
434 | 458 | $smcFunc['db_query']('', ' |
435 | 459 | UPDATE {db_prefix}members |
436 | 460 | SET warning = {int:warning} |
@@ -440,6 +464,7 @@ discard block |
||
440 | 464 | 'id_member' => $change['id'], |
441 | 465 | ) |
442 | 466 | ); |
467 | + } |
|
443 | 468 | } |
444 | 469 | } |
445 | 470 | |
@@ -506,15 +531,17 @@ discard block |
||
506 | 531 | |
507 | 532 | // Store this useful data! |
508 | 533 | $boards[$row['id_board']] = $row['id_board']; |
509 | - if ($row['id_topic']) |
|
510 | - $notify['topics'][$row['id_topic']][] = $row['id_member']; |
|
511 | - else |
|
512 | - $notify['boards'][$row['id_board']][] = $row['id_member']; |
|
534 | + if ($row['id_topic']) { |
|
535 | + $notify['topics'][$row['id_topic']][] = $row['id_member']; |
|
536 | + } else { |
|
537 | + $notify['boards'][$row['id_board']][] = $row['id_member']; |
|
538 | + } |
|
513 | 539 | } |
514 | 540 | $smcFunc['db_free_result']($request); |
515 | 541 | |
516 | - if (empty($boards)) |
|
517 | - return true; |
|
542 | + if (empty($boards)) { |
|
543 | + return true; |
|
544 | + } |
|
518 | 545 | |
519 | 546 | // Just get the board names. |
520 | 547 | $request = $smcFunc['db_query']('', ' |
@@ -526,12 +553,14 @@ discard block |
||
526 | 553 | ) |
527 | 554 | ); |
528 | 555 | $boards = array(); |
529 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
530 | - $boards[$row['id_board']] = $row['name']; |
|
556 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
557 | + $boards[$row['id_board']] = $row['name']; |
|
558 | + } |
|
531 | 559 | $smcFunc['db_free_result']($request); |
532 | 560 | |
533 | - if (empty($boards)) |
|
534 | - return true; |
|
561 | + if (empty($boards)) { |
|
562 | + return true; |
|
563 | + } |
|
535 | 564 | |
536 | 565 | // Get the actual topics... |
537 | 566 | $request = $smcFunc['db_query']('', ' |
@@ -551,52 +580,57 @@ discard block |
||
551 | 580 | $types = array(); |
552 | 581 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
553 | 582 | { |
554 | - if (!isset($types[$row['note_type']][$row['id_board']])) |
|
555 | - $types[$row['note_type']][$row['id_board']] = array( |
|
583 | + if (!isset($types[$row['note_type']][$row['id_board']])) { |
|
584 | + $types[$row['note_type']][$row['id_board']] = array( |
|
556 | 585 | 'lines' => array(), |
557 | 586 | 'name' => $row['board_name'], |
558 | 587 | 'id' => $row['id_board'], |
559 | 588 | ); |
589 | + } |
|
560 | 590 | |
561 | 591 | if ($row['note_type'] == 'reply') |
562 | 592 | { |
563 | - if (isset($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']])) |
|
564 | - $types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['count']++; |
|
565 | - else |
|
566 | - $types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']] = array( |
|
593 | + if (isset($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']])) { |
|
594 | + $types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['count']++; |
|
595 | + } else { |
|
596 | + $types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']] = array( |
|
567 | 597 | 'id' => $row['id_topic'], |
568 | 598 | 'subject' => un_htmlspecialchars($row['subject']), |
569 | 599 | 'count' => 1, |
570 | 600 | ); |
571 | - } |
|
572 | - elseif ($row['note_type'] == 'topic') |
|
601 | + } |
|
602 | + } elseif ($row['note_type'] == 'topic') |
|
573 | 603 | { |
574 | - if (!isset($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']])) |
|
575 | - $types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']] = array( |
|
604 | + if (!isset($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']])) { |
|
605 | + $types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']] = array( |
|
576 | 606 | 'id' => $row['id_topic'], |
577 | 607 | 'subject' => un_htmlspecialchars($row['subject']), |
578 | 608 | ); |
579 | - } |
|
580 | - else |
|
609 | + } |
|
610 | + } else |
|
581 | 611 | { |
582 | - if (!isset($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']])) |
|
583 | - $types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']] = array( |
|
612 | + if (!isset($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']])) { |
|
613 | + $types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']] = array( |
|
584 | 614 | 'id' => $row['id_topic'], |
585 | 615 | 'subject' => un_htmlspecialchars($row['subject']), |
586 | 616 | 'starter' => $row['id_member_started'], |
587 | 617 | ); |
618 | + } |
|
588 | 619 | } |
589 | 620 | |
590 | 621 | $types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'] = array(); |
591 | - if (!empty($notify['topics'][$row['id_topic']])) |
|
592 | - $types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'] = array_merge($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'], $notify['topics'][$row['id_topic']]); |
|
593 | - if (!empty($notify['boards'][$row['id_board']])) |
|
594 | - $types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'] = array_merge($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'], $notify['boards'][$row['id_board']]); |
|
622 | + if (!empty($notify['topics'][$row['id_topic']])) { |
|
623 | + $types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'] = array_merge($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'], $notify['topics'][$row['id_topic']]); |
|
624 | + } |
|
625 | + if (!empty($notify['boards'][$row['id_board']])) { |
|
626 | + $types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'] = array_merge($types[$row['note_type']][$row['id_board']]['lines'][$row['id_topic']]['members'], $notify['boards'][$row['id_board']]); |
|
627 | + } |
|
595 | 628 | } |
596 | 629 | $smcFunc['db_free_result']($request); |
597 | 630 | |
598 | - if (empty($types)) |
|
599 | - return true; |
|
631 | + if (empty($types)) { |
|
632 | + return true; |
|
633 | + } |
|
600 | 634 | |
601 | 635 | // Let's load all the languages into a cache thingy. |
602 | 636 | $langtxt = array(); |
@@ -637,8 +671,9 @@ discard block |
||
637 | 671 | $notify_types = !empty($prefs[$mid]['msg_notify_type']) ? $prefs[$mid]['msg_notify_type'] : 1; |
638 | 672 | |
639 | 673 | // Did they not elect to choose this? |
640 | - if ($frequency == 4 && !$is_weekly || $frequency == 3 && $is_weekly || $notify_types == 4) |
|
641 | - continue; |
|
674 | + if ($frequency == 4 && !$is_weekly || $frequency == 3 && $is_weekly || $notify_types == 4) { |
|
675 | + continue; |
|
676 | + } |
|
642 | 677 | |
643 | 678 | // Right character set! |
644 | 679 | $context['character_set'] = empty($modSettings['global_character_set']) ? $langtxt[$lang]['char_set'] : $modSettings['global_character_set']; |
@@ -654,39 +689,43 @@ discard block |
||
654 | 689 | if (isset($types['topic'])) |
655 | 690 | { |
656 | 691 | $titled = false; |
657 | - foreach ($types['topic'] as $id => $board) |
|
658 | - foreach ($board['lines'] as $topic) |
|
692 | + foreach ($types['topic'] as $id => $board) { |
|
693 | + foreach ($board['lines'] as $topic) |
|
659 | 694 | if (in_array($mid, $topic['members'])) |
660 | 695 | { |
661 | 696 | if (!$titled) |
662 | 697 | { |
663 | 698 | $email['body'] .= "\n" . $langtxt[$lang]['new_topics'] . ':' . "\n" . '-----------------------------------------------'; |
699 | + } |
|
664 | 700 | $titled = true; |
665 | 701 | } |
666 | 702 | $email['body'] .= "\n" . sprintf($langtxt[$lang]['topic_lines'], $topic['subject'], $board['name']); |
667 | 703 | } |
668 | - if ($titled) |
|
669 | - $email['body'] .= "\n"; |
|
704 | + if ($titled) { |
|
705 | + $email['body'] .= "\n"; |
|
706 | + } |
|
670 | 707 | } |
671 | 708 | |
672 | 709 | // What about replies? |
673 | 710 | if (isset($types['reply'])) |
674 | 711 | { |
675 | 712 | $titled = false; |
676 | - foreach ($types['reply'] as $id => $board) |
|
677 | - foreach ($board['lines'] as $topic) |
|
713 | + foreach ($types['reply'] as $id => $board) { |
|
714 | + foreach ($board['lines'] as $topic) |
|
678 | 715 | if (in_array($mid, $topic['members'])) |
679 | 716 | { |
680 | 717 | if (!$titled) |
681 | 718 | { |
682 | 719 | $email['body'] .= "\n" . $langtxt[$lang]['new_replies'] . ':' . "\n" . '-----------------------------------------------'; |
720 | + } |
|
683 | 721 | $titled = true; |
684 | 722 | } |
685 | 723 | $email['body'] .= "\n" . ($topic['count'] == 1 ? sprintf($langtxt[$lang]['replies_one'], $topic['subject']) : sprintf($langtxt[$lang]['replies_many'], $topic['count'], $topic['subject'])); |
686 | 724 | } |
687 | 725 | |
688 | - if ($titled) |
|
689 | - $email['body'] .= "\n"; |
|
726 | + if ($titled) { |
|
727 | + $email['body'] .= "\n"; |
|
728 | + } |
|
690 | 729 | } |
691 | 730 | |
692 | 731 | // Finally, moderation actions! |
@@ -695,24 +734,27 @@ discard block |
||
695 | 734 | $titled = false; |
696 | 735 | foreach ($types as $note_type => $type) |
697 | 736 | { |
698 | - if ($note_type == 'topic' || $note_type == 'reply') |
|
699 | - continue; |
|
737 | + if ($note_type == 'topic' || $note_type == 'reply') { |
|
738 | + continue; |
|
739 | + } |
|
700 | 740 | |
701 | - foreach ($type as $id => $board) |
|
702 | - foreach ($board['lines'] as $topic) |
|
741 | + foreach ($type as $id => $board) { |
|
742 | + foreach ($board['lines'] as $topic) |
|
703 | 743 | if (in_array($mid, $topic['members'])) |
704 | 744 | { |
705 | 745 | if (!$titled) |
706 | 746 | { |
707 | 747 | $email['body'] .= "\n" . $langtxt[$lang]['mod_actions'] . ':' . "\n" . '-----------------------------------------------'; |
748 | + } |
|
708 | 749 | $titled = true; |
709 | 750 | } |
710 | 751 | $email['body'] .= "\n" . sprintf($langtxt[$lang][$note_type], $topic['subject']); |
711 | 752 | } |
712 | 753 | } |
713 | 754 | } |
714 | - if ($titled) |
|
715 | - $email['body'] .= "\n"; |
|
755 | + if ($titled) { |
|
756 | + $email['body'] .= "\n"; |
|
757 | + } |
|
716 | 758 | |
717 | 759 | // Then just say our goodbyes! |
718 | 760 | $email['body'] .= "\n\n" . $txt['regards_team']; |
@@ -740,8 +782,7 @@ discard block |
||
740 | 782 | 'not_daily' => 0, |
741 | 783 | ) |
742 | 784 | ); |
743 | - } |
|
744 | - else |
|
785 | + } else |
|
745 | 786 | { |
746 | 787 | // Clear any only weekly ones, and stop us from sending daily again. |
747 | 788 | $smcFunc['db_query']('', ' |
@@ -803,16 +844,19 @@ discard block |
||
803 | 844 | global $modSettings, $smcFunc, $sourcedir; |
804 | 845 | |
805 | 846 | // Are we intending another script to be sending out the queue? |
806 | - if (!empty($modSettings['mail_queue_use_cron']) && empty($force_send)) |
|
807 | - return false; |
|
847 | + if (!empty($modSettings['mail_queue_use_cron']) && empty($force_send)) { |
|
848 | + return false; |
|
849 | + } |
|
808 | 850 | |
809 | 851 | // By default send 5 at once. |
810 | - if (!$number) |
|
811 | - $number = empty($modSettings['mail_quantity']) ? 5 : $modSettings['mail_quantity']; |
|
852 | + if (!$number) { |
|
853 | + $number = empty($modSettings['mail_quantity']) ? 5 : $modSettings['mail_quantity']; |
|
854 | + } |
|
812 | 855 | |
813 | 856 | // If we came with a timestamp, and that doesn't match the next event, then someone else has beaten us. |
814 | - if (isset($_GET['ts']) && $_GET['ts'] != $modSettings['mail_next_send'] && empty($force_send)) |
|
815 | - return false; |
|
857 | + if (isset($_GET['ts']) && $_GET['ts'] != $modSettings['mail_next_send'] && empty($force_send)) { |
|
858 | + return false; |
|
859 | + } |
|
816 | 860 | |
817 | 861 | // By default move the next sending on by 10 seconds, and require an affected row. |
818 | 862 | if (!$override_limit) |
@@ -829,8 +873,9 @@ discard block |
||
829 | 873 | 'last_send' => $modSettings['mail_next_send'], |
830 | 874 | ) |
831 | 875 | ); |
832 | - if ($smcFunc['db_affected_rows']() == 0) |
|
833 | - return false; |
|
876 | + if ($smcFunc['db_affected_rows']() == 0) { |
|
877 | + return false; |
|
878 | + } |
|
834 | 879 | $modSettings['mail_next_send'] = time() + $delay; |
835 | 880 | } |
836 | 881 | |
@@ -851,8 +896,9 @@ discard block |
||
851 | 896 | $mn += $number; |
852 | 897 | } |
853 | 898 | // No more I'm afraid, return! |
854 | - else |
|
855 | - return false; |
|
899 | + else { |
|
900 | + return false; |
|
901 | + } |
|
856 | 902 | |
857 | 903 | // Reflect that we're about to send some, do it now to be safe. |
858 | 904 | updateSettings(array('mail_recent' => $mt . '|' . $mn)); |
@@ -887,14 +933,15 @@ discard block |
||
887 | 933 | $smcFunc['db_free_result']($request); |
888 | 934 | |
889 | 935 | // Delete, delete, delete!!! |
890 | - if (!empty($ids)) |
|
891 | - $smcFunc['db_query']('', ' |
|
936 | + if (!empty($ids)) { |
|
937 | + $smcFunc['db_query']('', ' |
|
892 | 938 | DELETE FROM {db_prefix}mail_queue |
893 | 939 | WHERE id_mail IN ({array_int:mail_list})', |
894 | 940 | array( |
895 | 941 | 'mail_list' => $ids, |
896 | 942 | ) |
897 | 943 | ); |
944 | + } |
|
898 | 945 | |
899 | 946 | // Don't believe we have any left? |
900 | 947 | if (count($ids) < $number) |
@@ -912,11 +959,13 @@ discard block |
||
912 | 959 | ); |
913 | 960 | } |
914 | 961 | |
915 | - if (empty($ids)) |
|
916 | - return false; |
|
962 | + if (empty($ids)) { |
|
963 | + return false; |
|
964 | + } |
|
917 | 965 | |
918 | - if (!empty($modSettings['mail_type']) && $modSettings['smtp_host'] != '') |
|
919 | - require_once($sourcedir . '/Subs-Post.php'); |
|
966 | + if (!empty($modSettings['mail_type']) && $modSettings['smtp_host'] != '') { |
|
967 | + require_once($sourcedir . '/Subs-Post.php'); |
|
968 | + } |
|
920 | 969 | |
921 | 970 | // Send each email, yea! |
922 | 971 | $failed_emails = array(); |
@@ -936,15 +985,17 @@ discard block |
||
936 | 985 | |
937 | 986 | // Try to stop a timeout, this would be bad... |
938 | 987 | @set_time_limit(300); |
939 | - if (function_exists('apache_reset_timeout')) |
|
940 | - @apache_reset_timeout(); |
|
988 | + if (function_exists('apache_reset_timeout')) { |
|
989 | + @apache_reset_timeout(); |
|
990 | + } |
|
991 | + } else { |
|
992 | + $result = smtp_mail(array($email['to']), $email['subject'], $email['body'], $email['headers']); |
|
941 | 993 | } |
942 | - else |
|
943 | - $result = smtp_mail(array($email['to']), $email['subject'], $email['body'], $email['headers']); |
|
944 | 994 | |
945 | 995 | // Hopefully it sent? |
946 | - if (!$result) |
|
947 | - $failed_emails[] = array($email['to'], $email['body'], $email['subject'], $email['headers'], $email['send_html'], $email['time_sent'], $email['private']); |
|
996 | + if (!$result) { |
|
997 | + $failed_emails[] = array($email['to'], $email['body'], $email['subject'], $email['headers'], $email['send_html'], $email['time_sent'], $email['private']); |
|
998 | + } |
|
948 | 999 | } |
949 | 1000 | |
950 | 1001 | // Any emails that didn't send? |
@@ -959,8 +1010,8 @@ discard block |
||
959 | 1010 | ); |
960 | 1011 | |
961 | 1012 | // If we have failed to many times, tell mail to wait a bit and try again. |
962 | - if ($modSettings['mail_failed_attempts'] > 5) |
|
963 | - $smcFunc['db_query']('', ' |
|
1013 | + if ($modSettings['mail_failed_attempts'] > 5) { |
|
1014 | + $smcFunc['db_query']('', ' |
|
964 | 1015 | UPDATE {db_prefix}settings |
965 | 1016 | SET value = {string:next_mail_send} |
966 | 1017 | WHERE variable = {literal:mail_next_send} |
@@ -969,6 +1020,7 @@ discard block |
||
969 | 1020 | 'next_mail_send' => time() + 60, |
970 | 1021 | 'last_send' => $modSettings['mail_next_send'], |
971 | 1022 | )); |
1023 | + } |
|
972 | 1024 | |
973 | 1025 | // Add our email back to the queue, manually. |
974 | 1026 | $smcFunc['db_insert']('insert', |
@@ -981,8 +1033,8 @@ discard block |
||
981 | 1033 | return false; |
982 | 1034 | } |
983 | 1035 | // We where unable to send the email, clear our failed attempts. |
984 | - elseif (!empty($modSettings['mail_failed_attempts'])) |
|
985 | - $smcFunc['db_query']('', ' |
|
1036 | + elseif (!empty($modSettings['mail_failed_attempts'])) { |
|
1037 | + $smcFunc['db_query']('', ' |
|
986 | 1038 | UPDATE {db_prefix}settings |
987 | 1039 | SET value = {string:zero} |
988 | 1040 | WHERE variable = {string:mail_failed_attempts}', |
@@ -990,6 +1042,7 @@ discard block |
||
990 | 1042 | 'zero' => '0', |
991 | 1043 | 'mail_failed_attempts' => 'mail_failed_attempts', |
992 | 1044 | )); |
1045 | + } |
|
993 | 1046 | |
994 | 1047 | // Had something to send... |
995 | 1048 | return true; |
@@ -1006,16 +1059,18 @@ discard block |
||
1006 | 1059 | global $modSettings, $smcFunc; |
1007 | 1060 | |
1008 | 1061 | $task_query = ''; |
1009 | - if (!is_array($tasks)) |
|
1010 | - $tasks = array($tasks); |
|
1062 | + if (!is_array($tasks)) { |
|
1063 | + $tasks = array($tasks); |
|
1064 | + } |
|
1011 | 1065 | |
1012 | 1066 | // Actually have something passed? |
1013 | 1067 | if (!empty($tasks)) |
1014 | 1068 | { |
1015 | - if (!isset($tasks[0]) || is_numeric($tasks[0])) |
|
1016 | - $task_query = ' AND id_task IN ({array_int:tasks})'; |
|
1017 | - else |
|
1018 | - $task_query = ' AND task IN ({array_string:tasks})'; |
|
1069 | + if (!isset($tasks[0]) || is_numeric($tasks[0])) { |
|
1070 | + $task_query = ' AND id_task IN ({array_int:tasks})'; |
|
1071 | + } else { |
|
1072 | + $task_query = ' AND task IN ({array_string:tasks})'; |
|
1073 | + } |
|
1019 | 1074 | } |
1020 | 1075 | $nextTaskTime = empty($tasks) ? time() + 86400 : $modSettings['next_task_time']; |
1021 | 1076 | |
@@ -1036,20 +1091,22 @@ discard block |
||
1036 | 1091 | $next_time = next_time($row['time_regularity'], $row['time_unit'], $row['time_offset']); |
1037 | 1092 | |
1038 | 1093 | // Only bother moving the task if it's out of place or we're forcing it! |
1039 | - if ($forceUpdate || $next_time < $row['next_time'] || $row['next_time'] < time()) |
|
1040 | - $tasks[$row['id_task']] = $next_time; |
|
1041 | - else |
|
1042 | - $next_time = $row['next_time']; |
|
1094 | + if ($forceUpdate || $next_time < $row['next_time'] || $row['next_time'] < time()) { |
|
1095 | + $tasks[$row['id_task']] = $next_time; |
|
1096 | + } else { |
|
1097 | + $next_time = $row['next_time']; |
|
1098 | + } |
|
1043 | 1099 | |
1044 | 1100 | // If this is sooner than the current next task, make this the next task. |
1045 | - if ($next_time < $nextTaskTime) |
|
1046 | - $nextTaskTime = $next_time; |
|
1101 | + if ($next_time < $nextTaskTime) { |
|
1102 | + $nextTaskTime = $next_time; |
|
1103 | + } |
|
1047 | 1104 | } |
1048 | 1105 | $smcFunc['db_free_result']($request); |
1049 | 1106 | |
1050 | 1107 | // Now make the changes! |
1051 | - foreach ($tasks as $id => $time) |
|
1052 | - $smcFunc['db_query']('', ' |
|
1108 | + foreach ($tasks as $id => $time) { |
|
1109 | + $smcFunc['db_query']('', ' |
|
1053 | 1110 | UPDATE {db_prefix}scheduled_tasks |
1054 | 1111 | SET next_time = {int:next_time} |
1055 | 1112 | WHERE id_task = {int:id_task}', |
@@ -1058,11 +1115,13 @@ discard block |
||
1058 | 1115 | 'id_task' => $id, |
1059 | 1116 | ) |
1060 | 1117 | ); |
1118 | + } |
|
1061 | 1119 | |
1062 | 1120 | // If the next task is now different update. |
1063 | - if ($modSettings['next_task_time'] != $nextTaskTime) |
|
1064 | - updateSettings(array('next_task_time' => $nextTaskTime)); |
|
1065 | -} |
|
1121 | + if ($modSettings['next_task_time'] != $nextTaskTime) { |
|
1122 | + updateSettings(array('next_task_time' => $nextTaskTime)); |
|
1123 | + } |
|
1124 | + } |
|
1066 | 1125 | |
1067 | 1126 | /** |
1068 | 1127 | * Simply returns a time stamp of the next instance of these time parameters. |
@@ -1075,8 +1134,9 @@ discard block |
||
1075 | 1134 | function next_time($regularity, $unit, $offset) |
1076 | 1135 | { |
1077 | 1136 | // Just in case! |
1078 | - if ($regularity == 0) |
|
1079 | - $regularity = 2; |
|
1137 | + if ($regularity == 0) { |
|
1138 | + $regularity = 2; |
|
1139 | + } |
|
1080 | 1140 | |
1081 | 1141 | $curMin = date('i', time()); |
1082 | 1142 | |
@@ -1086,15 +1146,16 @@ discard block |
||
1086 | 1146 | $off = date('i', $offset); |
1087 | 1147 | |
1088 | 1148 | // If it's now just pretend it ain't, |
1089 | - if ($off == $curMin) |
|
1090 | - $next_time = time() + $regularity; |
|
1091 | - else |
|
1149 | + if ($off == $curMin) { |
|
1150 | + $next_time = time() + $regularity; |
|
1151 | + } else |
|
1092 | 1152 | { |
1093 | 1153 | // Make sure that the offset is always in the past. |
1094 | 1154 | $off = $off > $curMin ? $off - 60 : $off; |
1095 | 1155 | |
1096 | - while ($off <= $curMin) |
|
1097 | - $off += $regularity; |
|
1156 | + while ($off <= $curMin) { |
|
1157 | + $off += $regularity; |
|
1158 | + } |
|
1098 | 1159 | |
1099 | 1160 | // Now we know when the time should be! |
1100 | 1161 | $next_time = time() + 60 * ($off - $curMin); |
@@ -1114,11 +1175,13 @@ discard block |
||
1114 | 1175 | // Default we'll jump in hours. |
1115 | 1176 | $applyOffset = 3600; |
1116 | 1177 | // 24 hours = 1 day. |
1117 | - if ($unit == 'd') |
|
1118 | - $applyOffset = 86400; |
|
1178 | + if ($unit == 'd') { |
|
1179 | + $applyOffset = 86400; |
|
1180 | + } |
|
1119 | 1181 | // Otherwise a week. |
1120 | - if ($unit == 'w') |
|
1121 | - $applyOffset = 604800; |
|
1182 | + if ($unit == 'w') { |
|
1183 | + $applyOffset = 604800; |
|
1184 | + } |
|
1122 | 1185 | |
1123 | 1186 | $applyOffset *= $regularity; |
1124 | 1187 | |
@@ -1155,8 +1218,9 @@ discard block |
||
1155 | 1218 | $settings[$row['variable']] = $row['value']; |
1156 | 1219 | |
1157 | 1220 | // Is this the default theme? |
1158 | - if (in_array($row['variable'], array('theme_dir', 'theme_url', 'images_url')) && $row['id_theme'] == '1') |
|
1159 | - $settings['default_' . $row['variable']] = $row['value']; |
|
1221 | + if (in_array($row['variable'], array('theme_dir', 'theme_url', 'images_url')) && $row['id_theme'] == '1') { |
|
1222 | + $settings['default_' . $row['variable']] = $row['value']; |
|
1223 | + } |
|
1160 | 1224 | } |
1161 | 1225 | $smcFunc['db_free_result']($result); |
1162 | 1226 | |
@@ -1166,12 +1230,14 @@ discard block |
||
1166 | 1230 | $settings['template_dirs'] = array($settings['theme_dir']); |
1167 | 1231 | |
1168 | 1232 | // Based on theme (if there is one). |
1169 | - if (!empty($settings['base_theme_dir'])) |
|
1170 | - $settings['template_dirs'][] = $settings['base_theme_dir']; |
|
1233 | + if (!empty($settings['base_theme_dir'])) { |
|
1234 | + $settings['template_dirs'][] = $settings['base_theme_dir']; |
|
1235 | + } |
|
1171 | 1236 | |
1172 | 1237 | // Lastly the default theme. |
1173 | - if ($settings['theme_dir'] != $settings['default_theme_dir']) |
|
1174 | - $settings['template_dirs'][] = $settings['default_theme_dir']; |
|
1238 | + if ($settings['theme_dir'] != $settings['default_theme_dir']) { |
|
1239 | + $settings['template_dirs'][] = $settings['default_theme_dir']; |
|
1240 | + } |
|
1175 | 1241 | } |
1176 | 1242 | |
1177 | 1243 | // Assume we want this. |
@@ -1318,8 +1384,9 @@ discard block |
||
1318 | 1384 | // Ok should we prune the logs? |
1319 | 1385 | if (!empty($modSettings['pruningOptions'])) |
1320 | 1386 | { |
1321 | - if (!empty($modSettings['pruningOptions']) && strpos($modSettings['pruningOptions'], ',') !== false) |
|
1322 | - list ($modSettings['pruneErrorLog'], $modSettings['pruneModLog'], $modSettings['pruneBanLog'], $modSettings['pruneReportLog'], $modSettings['pruneScheduledTaskLog'], $modSettings['pruneSpiderHitLog']) = explode(',', $modSettings['pruningOptions']); |
|
1387 | + if (!empty($modSettings['pruningOptions']) && strpos($modSettings['pruningOptions'], ',') !== false) { |
|
1388 | + list ($modSettings['pruneErrorLog'], $modSettings['pruneModLog'], $modSettings['pruneBanLog'], $modSettings['pruneReportLog'], $modSettings['pruneScheduledTaskLog'], $modSettings['pruneSpiderHitLog']) = explode(',', $modSettings['pruningOptions']); |
|
1389 | + } |
|
1323 | 1390 | |
1324 | 1391 | if (!empty($modSettings['pruneErrorLog'])) |
1325 | 1392 | { |
@@ -1385,8 +1452,9 @@ discard block |
||
1385 | 1452 | ) |
1386 | 1453 | ); |
1387 | 1454 | |
1388 | - while ($row = $smcFunc['db_fetch_row']($result)) |
|
1389 | - $reports[] = $row[0]; |
|
1455 | + while ($row = $smcFunc['db_fetch_row']($result)) { |
|
1456 | + $reports[] = $row[0]; |
|
1457 | + } |
|
1390 | 1458 | |
1391 | 1459 | $smcFunc['db_free_result']($result); |
1392 | 1460 | |
@@ -1548,8 +1616,9 @@ discard block |
||
1548 | 1616 | $emaildata = loadEmailTemplate('paid_subscription_reminder', $replacements, empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile']); |
1549 | 1617 | |
1550 | 1618 | // Send the actual email. |
1551 | - if ($notifyPrefs[$row['id_member']] & 0x02) |
|
1552 | - sendmail($row['email_address'], $emaildata['subject'], $emaildata['body'], null, 'paid_sub_remind', $emaildata['is_html'], 2); |
|
1619 | + if ($notifyPrefs[$row['id_member']] & 0x02) { |
|
1620 | + sendmail($row['email_address'], $emaildata['subject'], $emaildata['body'], null, 'paid_sub_remind', $emaildata['is_html'], 2); |
|
1621 | + } |
|
1553 | 1622 | |
1554 | 1623 | if ($notifyPrefs[$row['id_member']] & 0x01) |
1555 | 1624 | { |
@@ -1572,18 +1641,19 @@ discard block |
||
1572 | 1641 | } |
1573 | 1642 | |
1574 | 1643 | // Insert the alerts if any |
1575 | - if (!empty($alert_rows)) |
|
1576 | - $smcFunc['db_insert']('', |
|
1644 | + if (!empty($alert_rows)) { |
|
1645 | + $smcFunc['db_insert']('', |
|
1577 | 1646 | '{db_prefix}user_alerts', |
1578 | 1647 | array('alert_time' => 'int', 'id_member' => 'int', 'id_member_started' => 'int', 'member_name' => 'string', |
1579 | 1648 | 'content_type' => 'string', 'content_id' => 'int', 'content_action' => 'string', 'is_read' => 'int', 'extra' => 'string'), |
1580 | 1649 | $alert_rows, |
1581 | 1650 | array() |
1582 | 1651 | ); |
1652 | + } |
|
1583 | 1653 | |
1584 | 1654 | // Mark the reminder as sent. |
1585 | - if (!empty($subs_reminded)) |
|
1586 | - $smcFunc['db_query']('', ' |
|
1655 | + if (!empty($subs_reminded)) { |
|
1656 | + $smcFunc['db_query']('', ' |
|
1587 | 1657 | UPDATE {db_prefix}log_subscribed |
1588 | 1658 | SET reminder_sent = {int:reminder_sent} |
1589 | 1659 | WHERE id_sublog IN ({array_int:subscription_list})', |
@@ -1592,6 +1662,7 @@ discard block |
||
1592 | 1662 | 'reminder_sent' => 1, |
1593 | 1663 | ) |
1594 | 1664 | ); |
1665 | + } |
|
1595 | 1666 | |
1596 | 1667 | return true; |
1597 | 1668 | } |
@@ -1607,13 +1678,13 @@ discard block |
||
1607 | 1678 | // We need to know where this thing is going. |
1608 | 1679 | if (!empty($modSettings['currentAttachmentUploadDir'])) |
1609 | 1680 | { |
1610 | - if (!is_array($modSettings['attachmentUploadDir'])) |
|
1611 | - $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
1681 | + if (!is_array($modSettings['attachmentUploadDir'])) { |
|
1682 | + $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
1683 | + } |
|
1612 | 1684 | |
1613 | 1685 | // Just use the current path for temp files. |
1614 | 1686 | $attach_dirs = $modSettings['attachmentUploadDir']; |
1615 | - } |
|
1616 | - else |
|
1687 | + } else |
|
1617 | 1688 | { |
1618 | 1689 | $attach_dirs = array($modSettings['attachmentUploadDir']); |
1619 | 1690 | } |
@@ -1632,14 +1703,16 @@ discard block |
||
1632 | 1703 | |
1633 | 1704 | while ($file = readdir($dir)) |
1634 | 1705 | { |
1635 | - if ($file == '.' || $file == '..') |
|
1636 | - continue; |
|
1706 | + if ($file == '.' || $file == '..') { |
|
1707 | + continue; |
|
1708 | + } |
|
1637 | 1709 | |
1638 | 1710 | if (strpos($file, 'post_tmp_') !== false) |
1639 | 1711 | { |
1640 | 1712 | // Temp file is more than 5 hours old! |
1641 | - if (filemtime($attach_dir . '/' . $file) < time() - 18000) |
|
1642 | - @unlink($attach_dir . '/' . $file); |
|
1713 | + if (filemtime($attach_dir . '/' . $file) < time() - 18000) { |
|
1714 | + @unlink($attach_dir . '/' . $file); |
|
1715 | + } |
|
1643 | 1716 | } |
1644 | 1717 | } |
1645 | 1718 | closedir($dir); |
@@ -1672,8 +1745,9 @@ discard block |
||
1672 | 1745 | ) |
1673 | 1746 | ); |
1674 | 1747 | |
1675 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
1676 | - $topics[] = $row[0]; |
|
1748 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
1749 | + $topics[] = $row[0]; |
|
1750 | + } |
|
1677 | 1751 | $smcFunc['db_free_result']($request); |
1678 | 1752 | |
1679 | 1753 | // Zap, your gone |
@@ -1693,8 +1767,9 @@ discard block |
||
1693 | 1767 | { |
1694 | 1768 | global $smcFunc, $sourcedir, $modSettings; |
1695 | 1769 | |
1696 | - if (empty($modSettings['drafts_keep_days'])) |
|
1697 | - return true; |
|
1770 | + if (empty($modSettings['drafts_keep_days'])) { |
|
1771 | + return true; |
|
1772 | + } |
|
1698 | 1773 | |
1699 | 1774 | // init |
1700 | 1775 | $drafts = array(); |
@@ -1712,8 +1787,9 @@ discard block |
||
1712 | 1787 | ) |
1713 | 1788 | ); |
1714 | 1789 | |
1715 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
1716 | - $drafts[] = (int) $row[0]; |
|
1790 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
1791 | + $drafts[] = (int) $row[0]; |
|
1792 | + } |
|
1717 | 1793 | $smcFunc['db_free_result']($request); |
1718 | 1794 | |
1719 | 1795 | // If we have old one, remove them |
@@ -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,12 +1115,13 @@ 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 | switch ($custom['placement']) |
1087 | 1121 | { |
1088 | 1122 | case 1: |
1089 | 1123 | $output['custom_fields']['icons'][] = $custom; |
1124 | + } |
|
1090 | 1125 | break; |
1091 | 1126 | case 2: |
1092 | 1127 | $output['custom_fields']['above_signature'][] = $custom; |
@@ -1129,22 +1164,28 @@ discard block |
||
1129 | 1164 | $context['search_params'][$k] = $v; |
1130 | 1165 | } |
1131 | 1166 | } |
1132 | - if (isset($_REQUEST['search'])) |
|
1133 | - $context['search_params']['search'] = un_htmlspecialchars($_REQUEST['search']); |
|
1167 | + if (isset($_REQUEST['search'])) { |
|
1168 | + $context['search_params']['search'] = un_htmlspecialchars($_REQUEST['search']); |
|
1169 | + } |
|
1134 | 1170 | |
1135 | - if (isset($context['search_params']['search'])) |
|
1136 | - $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']); |
|
1137 | - if (isset($context['search_params']['userspec'])) |
|
1138 | - $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']); |
|
1171 | + if (isset($context['search_params']['search'])) { |
|
1172 | + $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']); |
|
1173 | + } |
|
1174 | + if (isset($context['search_params']['userspec'])) { |
|
1175 | + $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']); |
|
1176 | + } |
|
1139 | 1177 | |
1140 | - if (!empty($context['search_params']['searchtype'])) |
|
1141 | - $context['search_params']['searchtype'] = 2; |
|
1178 | + if (!empty($context['search_params']['searchtype'])) { |
|
1179 | + $context['search_params']['searchtype'] = 2; |
|
1180 | + } |
|
1142 | 1181 | |
1143 | - if (!empty($context['search_params']['minage'])) |
|
1144 | - $context['search_params']['minage'] = (int) $context['search_params']['minage']; |
|
1182 | + if (!empty($context['search_params']['minage'])) { |
|
1183 | + $context['search_params']['minage'] = (int) $context['search_params']['minage']; |
|
1184 | + } |
|
1145 | 1185 | |
1146 | - if (!empty($context['search_params']['maxage'])) |
|
1147 | - $context['search_params']['maxage'] = (int) $context['search_params']['maxage']; |
|
1186 | + if (!empty($context['search_params']['maxage'])) { |
|
1187 | + $context['search_params']['maxage'] = (int) $context['search_params']['maxage']; |
|
1188 | + } |
|
1148 | 1189 | |
1149 | 1190 | $context['search_params']['subject_only'] = !empty($context['search_params']['subject_only']); |
1150 | 1191 | $context['search_params']['show_complete'] = !empty($context['search_params']['show_complete']); |
@@ -1171,8 +1212,9 @@ discard block |
||
1171 | 1212 | $context['search_errors']['messages'] = array(); |
1172 | 1213 | foreach ($context['search_errors'] as $search_error => $dummy) |
1173 | 1214 | { |
1174 | - if ($search_error == 'messages') |
|
1175 | - continue; |
|
1215 | + if ($search_error == 'messages') { |
|
1216 | + continue; |
|
1217 | + } |
|
1176 | 1218 | |
1177 | 1219 | $context['search_errors']['messages'][] = $txt['error_' . $search_error]; |
1178 | 1220 | } |
@@ -1194,8 +1236,9 @@ discard block |
||
1194 | 1236 | global $scripturl, $modSettings, $user_info, $context, $txt; |
1195 | 1237 | global $memberContext, $smcFunc; |
1196 | 1238 | |
1197 | - if (!empty($context['load_average']) && !empty($modSettings['loadavg_search']) && $context['load_average'] >= $modSettings['loadavg_search']) |
|
1198 | - fatal_lang_error('loadavg_search_disabled', false); |
|
1239 | + if (!empty($context['load_average']) && !empty($modSettings['loadavg_search']) && $context['load_average'] >= $modSettings['loadavg_search']) { |
|
1240 | + fatal_lang_error('loadavg_search_disabled', false); |
|
1241 | + } |
|
1199 | 1242 | |
1200 | 1243 | /** |
1201 | 1244 | * @todo For the moment force the folder to the inbox. |
@@ -1224,35 +1267,40 @@ discard block |
||
1224 | 1267 | $context['start'] = isset($_GET['start']) ? (int) $_GET['start'] : 0; |
1225 | 1268 | |
1226 | 1269 | // Store whether simple search was used (needed if the user wants to do another query). |
1227 | - if (!isset($search_params['advanced'])) |
|
1228 | - $search_params['advanced'] = empty($_REQUEST['advanced']) ? 0 : 1; |
|
1270 | + if (!isset($search_params['advanced'])) { |
|
1271 | + $search_params['advanced'] = empty($_REQUEST['advanced']) ? 0 : 1; |
|
1272 | + } |
|
1229 | 1273 | |
1230 | 1274 | // 1 => 'allwords' (default, don't set as param) / 2 => 'anywords'. |
1231 | - if (!empty($search_params['searchtype']) || (!empty($_REQUEST['searchtype']) && $_REQUEST['searchtype'] == 2)) |
|
1232 | - $search_params['searchtype'] = 2; |
|
1275 | + if (!empty($search_params['searchtype']) || (!empty($_REQUEST['searchtype']) && $_REQUEST['searchtype'] == 2)) { |
|
1276 | + $search_params['searchtype'] = 2; |
|
1277 | + } |
|
1233 | 1278 | |
1234 | 1279 | // Minimum age of messages. Default to zero (don't set param in that case). |
1235 | - if (!empty($search_params['minage']) || (!empty($_REQUEST['minage']) && $_REQUEST['minage'] > 0)) |
|
1236 | - $search_params['minage'] = !empty($search_params['minage']) ? (int) $search_params['minage'] : (int) $_REQUEST['minage']; |
|
1280 | + if (!empty($search_params['minage']) || (!empty($_REQUEST['minage']) && $_REQUEST['minage'] > 0)) { |
|
1281 | + $search_params['minage'] = !empty($search_params['minage']) ? (int) $search_params['minage'] : (int) $_REQUEST['minage']; |
|
1282 | + } |
|
1237 | 1283 | |
1238 | 1284 | // Maximum age of messages. Default to infinite (9999 days: param not set). |
1239 | - if (!empty($search_params['maxage']) || (!empty($_REQUEST['maxage']) && $_REQUEST['maxage'] != 9999)) |
|
1240 | - $search_params['maxage'] = !empty($search_params['maxage']) ? (int) $search_params['maxage'] : (int) $_REQUEST['maxage']; |
|
1285 | + if (!empty($search_params['maxage']) || (!empty($_REQUEST['maxage']) && $_REQUEST['maxage'] != 9999)) { |
|
1286 | + $search_params['maxage'] = !empty($search_params['maxage']) ? (int) $search_params['maxage'] : (int) $_REQUEST['maxage']; |
|
1287 | + } |
|
1241 | 1288 | |
1242 | 1289 | $search_params['subject_only'] = !empty($search_params['subject_only']) || !empty($_REQUEST['subject_only']); |
1243 | 1290 | $search_params['show_complete'] = !empty($search_params['show_complete']) || !empty($_REQUEST['show_complete']); |
1244 | 1291 | |
1245 | 1292 | // Default the user name to a wildcard matching every user (*). |
1246 | - if (!empty($search_params['user_spec']) || (!empty($_REQUEST['userspec']) && $_REQUEST['userspec'] != '*')) |
|
1247 | - $search_params['userspec'] = isset($search_params['userspec']) ? $search_params['userspec'] : $_REQUEST['userspec']; |
|
1293 | + if (!empty($search_params['user_spec']) || (!empty($_REQUEST['userspec']) && $_REQUEST['userspec'] != '*')) { |
|
1294 | + $search_params['userspec'] = isset($search_params['userspec']) ? $search_params['userspec'] : $_REQUEST['userspec']; |
|
1295 | + } |
|
1248 | 1296 | |
1249 | 1297 | // This will be full of all kinds of parameters! |
1250 | 1298 | $searchq_parameters = array(); |
1251 | 1299 | |
1252 | 1300 | // If there's no specific user, then don't mention it in the main query. |
1253 | - if (empty($search_params['userspec'])) |
|
1254 | - $userQuery = ''; |
|
1255 | - else |
|
1301 | + if (empty($search_params['userspec'])) { |
|
1302 | + $userQuery = ''; |
|
1303 | + } else |
|
1256 | 1304 | { |
1257 | 1305 | $userString = strtr($smcFunc['htmlspecialchars']($search_params['userspec'], ENT_QUOTES), array('"' => '"')); |
1258 | 1306 | $userString = strtr($userString, array('%' => '\%', '_' => '\_', '*' => '%', '?' => '_')); |
@@ -1264,8 +1312,9 @@ discard block |
||
1264 | 1312 | { |
1265 | 1313 | $possible_users[$k] = trim($possible_users[$k]); |
1266 | 1314 | |
1267 | - if (strlen($possible_users[$k]) == 0) |
|
1268 | - unset($possible_users[$k]); |
|
1315 | + if (strlen($possible_users[$k]) == 0) { |
|
1316 | + unset($possible_users[$k]); |
|
1317 | + } |
|
1269 | 1318 | } |
1270 | 1319 | |
1271 | 1320 | if (!empty($possible_users)) |
@@ -1277,8 +1326,9 @@ discard block |
||
1277 | 1326 | { |
1278 | 1327 | $where_params['name_' . $k] = $v; |
1279 | 1328 | $where_clause[] = '{raw:real_name} LIKE {string:name_' . $k . '}'; |
1280 | - if (!isset($where_params['real_name'])) |
|
1281 | - $where_params['real_name'] = $smcFunc['db_case_sensitive'] ? 'LOWER(real_name)' : 'real_name'; |
|
1329 | + if (!isset($where_params['real_name'])) { |
|
1330 | + $where_params['real_name'] = $smcFunc['db_case_sensitive'] ? 'LOWER(real_name)' : 'real_name'; |
|
1331 | + } |
|
1282 | 1332 | } |
1283 | 1333 | |
1284 | 1334 | // Who matches those criteria? |
@@ -1291,28 +1341,28 @@ discard block |
||
1291 | 1341 | ); |
1292 | 1342 | |
1293 | 1343 | // Simply do nothing if there're too many members matching the criteria. |
1294 | - if ($smcFunc['db_num_rows']($request) > $maxMembersToSearch) |
|
1295 | - $userQuery = ''; |
|
1296 | - elseif ($smcFunc['db_num_rows']($request) == 0) |
|
1344 | + if ($smcFunc['db_num_rows']($request) > $maxMembersToSearch) { |
|
1345 | + $userQuery = ''; |
|
1346 | + } elseif ($smcFunc['db_num_rows']($request) == 0) |
|
1297 | 1347 | { |
1298 | 1348 | $userQuery = 'AND pm.id_member_from = 0 AND ({raw:pm_from_name} LIKE {raw:guest_user_name_implode})'; |
1299 | 1349 | $searchq_parameters['guest_user_name_implode'] = '\'' . implode('\' OR ' . ($smcFunc['db_case_sensitive'] ? 'LOWER(pm.from_name)' : 'pm.from_name') . ' LIKE \'', $possible_users) . '\''; |
1300 | 1350 | $searchq_parameters['pm_from_name'] = $smcFunc['db_case_sensitive'] ? 'LOWER(pm.from_name)' : 'pm.from_name'; |
1301 | - } |
|
1302 | - else |
|
1351 | + } else |
|
1303 | 1352 | { |
1304 | 1353 | $memberlist = array(); |
1305 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1306 | - $memberlist[] = $row['id_member']; |
|
1354 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1355 | + $memberlist[] = $row['id_member']; |
|
1356 | + } |
|
1307 | 1357 | $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})))'; |
1308 | 1358 | $searchq_parameters['guest_user_name_implode'] = '\'' . implode('\' OR ' . ($smcFunc['db_case_sensitive'] ? 'LOWER(pm.from_name)' : 'pm.from_name') . ' LIKE \'', $possible_users) . '\''; |
1309 | 1359 | $searchq_parameters['member_list'] = $memberlist; |
1310 | 1360 | $searchq_parameters['pm_from_name'] = $smcFunc['db_case_sensitive'] ? 'LOWER(pm.from_name)' : 'pm.from_name'; |
1311 | 1361 | } |
1312 | 1362 | $smcFunc['db_free_result']($request); |
1363 | + } else { |
|
1364 | + $userQuery = ''; |
|
1313 | 1365 | } |
1314 | - else |
|
1315 | - $userQuery = ''; |
|
1316 | 1366 | } |
1317 | 1367 | |
1318 | 1368 | // Setup the sorting variables... |
@@ -1320,8 +1370,9 @@ discard block |
||
1320 | 1370 | $sort_columns = array( |
1321 | 1371 | 'pm.id_pm', |
1322 | 1372 | ); |
1323 | - if (empty($search_params['sort']) && !empty($_REQUEST['sort'])) |
|
1324 | - list ($search_params['sort'], $search_params['sort_dir']) = array_pad(explode('|', $_REQUEST['sort']), 2, ''); |
|
1373 | + if (empty($search_params['sort']) && !empty($_REQUEST['sort'])) { |
|
1374 | + list ($search_params['sort'], $search_params['sort_dir']) = array_pad(explode('|', $_REQUEST['sort']), 2, ''); |
|
1375 | + } |
|
1325 | 1376 | $search_params['sort'] = !empty($search_params['sort']) && in_array($search_params['sort'], $sort_columns) ? $search_params['sort'] : 'pm.id_pm'; |
1326 | 1377 | $search_params['sort_dir'] = !empty($search_params['sort_dir']) && $search_params['sort_dir'] == 'asc' ? 'asc' : 'desc'; |
1327 | 1378 | |
@@ -1331,24 +1382,27 @@ discard block |
||
1331 | 1382 | if ($context['folder'] == 'inbox' && !empty($search_params['advanced']) && $context['currently_using_labels']) |
1332 | 1383 | { |
1333 | 1384 | // Came here from pagination? Put them back into $_REQUEST for sanitization. |
1334 | - if (isset($search_params['labels'])) |
|
1335 | - $_REQUEST['searchlabel'] = explode(',', $search_params['labels']); |
|
1385 | + if (isset($search_params['labels'])) { |
|
1386 | + $_REQUEST['searchlabel'] = explode(',', $search_params['labels']); |
|
1387 | + } |
|
1336 | 1388 | |
1337 | 1389 | // Assuming we have some labels - make them all integers. |
1338 | 1390 | if (!empty($_REQUEST['searchlabel']) && is_array($_REQUEST['searchlabel'])) |
1339 | 1391 | { |
1340 | - foreach ($_REQUEST['searchlabel'] as $key => $id) |
|
1341 | - $_REQUEST['searchlabel'][$key] = (int) $id; |
|
1392 | + foreach ($_REQUEST['searchlabel'] as $key => $id) { |
|
1393 | + $_REQUEST['searchlabel'][$key] = (int) $id; |
|
1394 | + } |
|
1395 | + } else { |
|
1396 | + $_REQUEST['searchlabel'] = array(); |
|
1342 | 1397 | } |
1343 | - else |
|
1344 | - $_REQUEST['searchlabel'] = array(); |
|
1345 | 1398 | |
1346 | 1399 | // Now that everything is cleaned up a bit, make the labels a param. |
1347 | 1400 | $search_params['labels'] = implode(',', $_REQUEST['searchlabel']); |
1348 | 1401 | |
1349 | 1402 | // No labels selected? That must be an error! |
1350 | - if (empty($_REQUEST['searchlabel'])) |
|
1351 | - $context['search_errors']['no_labels_selected'] = true; |
|
1403 | + if (empty($_REQUEST['searchlabel'])) { |
|
1404 | + $context['search_errors']['no_labels_selected'] = true; |
|
1405 | + } |
|
1352 | 1406 | // Otherwise prepare the query! |
1353 | 1407 | elseif (count($_REQUEST['searchlabel']) != count($context['labels'])) |
1354 | 1408 | { |
@@ -1371,8 +1425,7 @@ discard block |
||
1371 | 1425 | // Not searching the inbox - PM must be labeled |
1372 | 1426 | $labelQuery = ' AND pml.id_label IN ({array_int:labels})'; |
1373 | 1427 | $labelJoin = ' INNER JOIN {db_prefix}pm_labeled_messages AS pml ON (pml.id_pm = pmr.id_pm)'; |
1374 | - } |
|
1375 | - else |
|
1428 | + } else |
|
1376 | 1429 | { |
1377 | 1430 | // Searching the inbox - PM doesn't have to be labeled |
1378 | 1431 | $labelQuery = ' AND (' . substr($labelQuery, 5) . ' OR pml.id_label IN ({array_int:labels}))'; |
@@ -1387,8 +1440,9 @@ discard block |
||
1387 | 1440 | // What are we actually searching for? |
1388 | 1441 | $search_params['search'] = !empty($search_params['search']) ? $search_params['search'] : (isset($_REQUEST['search']) ? $_REQUEST['search'] : ''); |
1389 | 1442 | // If we ain't got nothing - we should error! |
1390 | - if (!isset($search_params['search']) || $search_params['search'] == '') |
|
1391 | - $context['search_errors']['invalid_search_string'] = true; |
|
1443 | + if (!isset($search_params['search']) || $search_params['search'] == '') { |
|
1444 | + $context['search_errors']['invalid_search_string'] = true; |
|
1445 | + } |
|
1392 | 1446 | |
1393 | 1447 | // Extract phrase parts first (e.g. some words "this is a phrase" some more words.) |
1394 | 1448 | preg_match_all('~(?:^|\s)([-]?)"([^"]+)"(?:$|\s)~' . ($context['utf8'] ? 'u' : ''), $search_params['search'], $matches, PREG_PATTERN_ORDER); |
@@ -1401,12 +1455,14 @@ discard block |
||
1401 | 1455 | $excludedWords = array(); |
1402 | 1456 | |
1403 | 1457 | // .. first, we check for things like -"some words", but not "-some words". |
1404 | - foreach ($matches[1] as $index => $word) |
|
1405 | - if ($word == '-') |
|
1458 | + foreach ($matches[1] as $index => $word) { |
|
1459 | + if ($word == '-') |
|
1406 | 1460 | { |
1407 | 1461 | $word = $smcFunc['strtolower'](trim($searchArray[$index])); |
1408 | - if (strlen($word) > 0) |
|
1409 | - $excludedWords[] = $word; |
|
1462 | + } |
|
1463 | + if (strlen($word) > 0) { |
|
1464 | + $excludedWords[] = $word; |
|
1465 | + } |
|
1410 | 1466 | unset($searchArray[$index]); |
1411 | 1467 | } |
1412 | 1468 | |
@@ -1416,8 +1472,9 @@ discard block |
||
1416 | 1472 | if (strpos(trim($word), '-') === 0) |
1417 | 1473 | { |
1418 | 1474 | $word = substr($smcFunc['strtolower']($word), 1); |
1419 | - if (strlen($word) > 0) |
|
1420 | - $excludedWords[] = $word; |
|
1475 | + if (strlen($word) > 0) { |
|
1476 | + $excludedWords[] = $word; |
|
1477 | + } |
|
1421 | 1478 | unset($tempSearch[$index]); |
1422 | 1479 | } |
1423 | 1480 | } |
@@ -1428,9 +1485,9 @@ discard block |
||
1428 | 1485 | foreach ($searchArray as $index => $value) |
1429 | 1486 | { |
1430 | 1487 | $searchArray[$index] = $smcFunc['strtolower'](trim($value)); |
1431 | - if ($searchArray[$index] == '') |
|
1432 | - unset($searchArray[$index]); |
|
1433 | - else |
|
1488 | + if ($searchArray[$index] == '') { |
|
1489 | + unset($searchArray[$index]); |
|
1490 | + } else |
|
1434 | 1491 | { |
1435 | 1492 | // Sort out entities first. |
1436 | 1493 | $searchArray[$index] = $smcFunc['htmlspecialchars']($searchArray[$index]); |
@@ -1440,27 +1497,32 @@ discard block |
||
1440 | 1497 | |
1441 | 1498 | // Create an array of replacements for highlighting. |
1442 | 1499 | $context['mark'] = array(); |
1443 | - foreach ($searchArray as $word) |
|
1444 | - $context['mark'][$word] = '<strong class="highlight">' . $word . '</strong>'; |
|
1500 | + foreach ($searchArray as $word) { |
|
1501 | + $context['mark'][$word] = '<strong class="highlight">' . $word . '</strong>'; |
|
1502 | + } |
|
1445 | 1503 | |
1446 | 1504 | // This contains *everything* |
1447 | 1505 | $searchWords = array_merge($searchArray, $excludedWords); |
1448 | 1506 | |
1449 | 1507 | // Make sure at least one word is being searched for. |
1450 | - if (empty($searchArray)) |
|
1451 | - $context['search_errors']['invalid_search_string'] = true; |
|
1508 | + if (empty($searchArray)) { |
|
1509 | + $context['search_errors']['invalid_search_string'] = true; |
|
1510 | + } |
|
1452 | 1511 | |
1453 | 1512 | // Sort out the search query so the user can edit it - if they want. |
1454 | 1513 | $context['search_params'] = $search_params; |
1455 | - if (isset($context['search_params']['search'])) |
|
1456 | - $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']); |
|
1457 | - if (isset($context['search_params']['userspec'])) |
|
1458 | - $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']); |
|
1514 | + if (isset($context['search_params']['search'])) { |
|
1515 | + $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']); |
|
1516 | + } |
|
1517 | + if (isset($context['search_params']['userspec'])) { |
|
1518 | + $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']); |
|
1519 | + } |
|
1459 | 1520 | |
1460 | 1521 | // Now we have all the parameters, combine them together for pagination and the like... |
1461 | 1522 | $context['params'] = array(); |
1462 | - foreach ($search_params as $k => $v) |
|
1463 | - $context['params'][] = $k . '|\'|' . $v; |
|
1523 | + foreach ($search_params as $k => $v) { |
|
1524 | + $context['params'][] = $k . '|\'|' . $v; |
|
1525 | + } |
|
1464 | 1526 | $context['params'] = base64_encode(implode('|"|', $context['params'])); |
1465 | 1527 | |
1466 | 1528 | // Compile the subject query part. |
@@ -1468,26 +1530,31 @@ discard block |
||
1468 | 1530 | |
1469 | 1531 | foreach ($searchWords as $index => $word) |
1470 | 1532 | { |
1471 | - if ($word == '') |
|
1472 | - continue; |
|
1533 | + if ($word == '') { |
|
1534 | + continue; |
|
1535 | + } |
|
1473 | 1536 | |
1474 | - if ($search_params['subject_only']) |
|
1475 | - $andQueryParts[] = 'pm.subject' . (in_array($word, $excludedWords) ? ' NOT' : '') . ' LIKE {string:search_' . $index . '}'; |
|
1476 | - else |
|
1477 | - $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 . '})'; |
|
1537 | + if ($search_params['subject_only']) { |
|
1538 | + $andQueryParts[] = 'pm.subject' . (in_array($word, $excludedWords) ? ' NOT' : '') . ' LIKE {string:search_' . $index . '}'; |
|
1539 | + } else { |
|
1540 | + $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 . '})'; |
|
1541 | + } |
|
1478 | 1542 | $searchq_parameters['search_' . $index] = '%' . strtr($word, array('_' => '\\_', '%' => '\\%')) . '%'; |
1479 | 1543 | } |
1480 | 1544 | |
1481 | 1545 | $searchQuery = ' 1=1'; |
1482 | - if (!empty($andQueryParts)) |
|
1483 | - $searchQuery = implode(!empty($search_params['searchtype']) && $search_params['searchtype'] == 2 ? ' OR ' : ' AND ', $andQueryParts); |
|
1546 | + if (!empty($andQueryParts)) { |
|
1547 | + $searchQuery = implode(!empty($search_params['searchtype']) && $search_params['searchtype'] == 2 ? ' OR ' : ' AND ', $andQueryParts); |
|
1548 | + } |
|
1484 | 1549 | |
1485 | 1550 | // Age limits? |
1486 | 1551 | $timeQuery = ''; |
1487 | - if (!empty($search_params['minage'])) |
|
1488 | - $timeQuery .= ' AND pm.msgtime < ' . (time() - $search_params['minage'] * 86400); |
|
1489 | - if (!empty($search_params['maxage'])) |
|
1490 | - $timeQuery .= ' AND pm.msgtime > ' . (time() - $search_params['maxage'] * 86400); |
|
1552 | + if (!empty($search_params['minage'])) { |
|
1553 | + $timeQuery .= ' AND pm.msgtime < ' . (time() - $search_params['minage'] * 86400); |
|
1554 | + } |
|
1555 | + if (!empty($search_params['maxage'])) { |
|
1556 | + $timeQuery .= ' AND pm.msgtime > ' . (time() - $search_params['maxage'] * 86400); |
|
1557 | + } |
|
1491 | 1558 | |
1492 | 1559 | // If we have errors - return back to the first screen... |
1493 | 1560 | if (!empty($context['search_errors'])) |
@@ -1573,8 +1640,9 @@ discard block |
||
1573 | 1640 | ) |
1574 | 1641 | ); |
1575 | 1642 | $real_pm_ids = array(); |
1576 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1577 | - $real_pm_ids[$row['id_pm_head']] = $row['id_pm']; |
|
1643 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1644 | + $real_pm_ids[$row['id_pm_head']] = $row['id_pm']; |
|
1645 | + } |
|
1578 | 1646 | $smcFunc['db_free_result']($request); |
1579 | 1647 | } |
1580 | 1648 | |
@@ -1604,8 +1672,9 @@ discard block |
||
1604 | 1672 | ); |
1605 | 1673 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1606 | 1674 | { |
1607 | - if ($context['folder'] == 'sent' || empty($row['bcc'])) |
|
1608 | - $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>'; |
|
1675 | + if ($context['folder'] == 'sent' || empty($row['bcc'])) { |
|
1676 | + $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>'; |
|
1677 | + } |
|
1609 | 1678 | |
1610 | 1679 | if ($row['id_member_to'] == $user_info['id'] && $context['folder'] != 'sent') |
1611 | 1680 | { |
@@ -1626,12 +1695,14 @@ discard block |
||
1626 | 1695 | while ($row2 = $smcFunc['db_fetch_assoc']($request2)) |
1627 | 1696 | { |
1628 | 1697 | $l_id = $row2['id_label']; |
1629 | - if (isset($context['labels'][$l_id])) |
|
1630 | - $context['message_labels'][$row['id_pm']][$l_id] = array('id' => $l_id, 'name' => $context['labels'][$l_id]['name']); |
|
1698 | + if (isset($context['labels'][$l_id])) { |
|
1699 | + $context['message_labels'][$row['id_pm']][$l_id] = array('id' => $l_id, 'name' => $context['labels'][$l_id]['name']); |
|
1700 | + } |
|
1631 | 1701 | |
1632 | 1702 | // Here we find the first label on a message - for linking to posts in results |
1633 | - if (!isset($context['first_label'][$row['id_pm']]) && $row['in_inbox'] != 1) |
|
1634 | - $context['first_label'][$row['id_pm']] = $l_id; |
|
1703 | + if (!isset($context['first_label'][$row['id_pm']]) && $row['in_inbox'] != 1) { |
|
1704 | + $context['first_label'][$row['id_pm']] = $l_id; |
|
1705 | + } |
|
1635 | 1706 | } |
1636 | 1707 | |
1637 | 1708 | $smcFunc['db_free_result']($request2); |
@@ -1758,8 +1829,9 @@ discard block |
||
1758 | 1829 | list ($postCount) = $smcFunc['db_fetch_row']($request); |
1759 | 1830 | $smcFunc['db_free_result']($request); |
1760 | 1831 | |
1761 | - if (!empty($postCount) && $postCount >= $modSettings['pm_posts_per_hour']) |
|
1762 | - fatal_lang_error('pm_too_many_per_hour', true, array($modSettings['pm_posts_per_hour'])); |
|
1832 | + if (!empty($postCount) && $postCount >= $modSettings['pm_posts_per_hour']) { |
|
1833 | + fatal_lang_error('pm_too_many_per_hour', true, array($modSettings['pm_posts_per_hour'])); |
|
1834 | + } |
|
1763 | 1835 | } |
1764 | 1836 | |
1765 | 1837 | // Quoting/Replying to a message? |
@@ -1768,8 +1840,9 @@ discard block |
||
1768 | 1840 | $pmsg = (int) $_REQUEST['pmsg']; |
1769 | 1841 | |
1770 | 1842 | // Make sure this is yours. |
1771 | - if (!isAccessiblePM($pmsg)) |
|
1772 | - fatal_lang_error('no_access', false); |
|
1843 | + if (!isAccessiblePM($pmsg)) { |
|
1844 | + fatal_lang_error('no_access', false); |
|
1845 | + } |
|
1773 | 1846 | |
1774 | 1847 | // Work out whether this is one you've received? |
1775 | 1848 | $request = $smcFunc['db_query']('', ' |
@@ -1806,8 +1879,9 @@ discard block |
||
1806 | 1879 | 'id_pm' => $pmsg, |
1807 | 1880 | ) |
1808 | 1881 | ); |
1809 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1810 | - fatal_lang_error('pm_not_yours', false); |
|
1882 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1883 | + fatal_lang_error('pm_not_yours', false); |
|
1884 | + } |
|
1811 | 1885 | $row_quoted = $smcFunc['db_fetch_assoc']($request); |
1812 | 1886 | $smcFunc['db_free_result']($request); |
1813 | 1887 | |
@@ -1818,9 +1892,9 @@ discard block |
||
1818 | 1892 | // Add 'Re: ' to it.... |
1819 | 1893 | if (!isset($context['response_prefix']) && !($context['response_prefix'] = cache_get_data('response_prefix'))) |
1820 | 1894 | { |
1821 | - if ($language === $user_info['language']) |
|
1822 | - $context['response_prefix'] = $txt['response_prefix']; |
|
1823 | - else |
|
1895 | + if ($language === $user_info['language']) { |
|
1896 | + $context['response_prefix'] = $txt['response_prefix']; |
|
1897 | + } else |
|
1824 | 1898 | { |
1825 | 1899 | loadLanguage('index', $language, false); |
1826 | 1900 | $context['response_prefix'] = $txt['response_prefix']; |
@@ -1829,22 +1903,25 @@ discard block |
||
1829 | 1903 | cache_put_data('response_prefix', $context['response_prefix'], 600); |
1830 | 1904 | } |
1831 | 1905 | $form_subject = $row_quoted['subject']; |
1832 | - if ($context['reply'] && trim($context['response_prefix']) != '' && $smcFunc['strpos']($form_subject, trim($context['response_prefix'])) !== 0) |
|
1833 | - $form_subject = $context['response_prefix'] . $form_subject; |
|
1906 | + if ($context['reply'] && trim($context['response_prefix']) != '' && $smcFunc['strpos']($form_subject, trim($context['response_prefix'])) !== 0) { |
|
1907 | + $form_subject = $context['response_prefix'] . $form_subject; |
|
1908 | + } |
|
1834 | 1909 | |
1835 | 1910 | if (isset($_REQUEST['quote'])) |
1836 | 1911 | { |
1837 | 1912 | // Remove any nested quotes and <br>... |
1838 | 1913 | $form_message = preg_replace('~<br ?/?' . '>~i', "\n", $row_quoted['body']); |
1839 | - if (!empty($modSettings['removeNestedQuotes'])) |
|
1840 | - $form_message = preg_replace(array('~\n?\[quote.*?\].+?\[/quote\]\n?~is', '~^\n~', '~\[/quote\]~'), '', $form_message); |
|
1841 | - if (empty($row_quoted['id_member'])) |
|
1842 | - $form_message = '[quote author="' . $row_quoted['real_name'] . '"]' . "\n" . $form_message . "\n" . '[/quote]'; |
|
1843 | - else |
|
1844 | - $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]'; |
|
1914 | + if (!empty($modSettings['removeNestedQuotes'])) { |
|
1915 | + $form_message = preg_replace(array('~\n?\[quote.*?\].+?\[/quote\]\n?~is', '~^\n~', '~\[/quote\]~'), '', $form_message); |
|
1916 | + } |
|
1917 | + if (empty($row_quoted['id_member'])) { |
|
1918 | + $form_message = '[quote author="' . $row_quoted['real_name'] . '"]' . "\n" . $form_message . "\n" . '[/quote]'; |
|
1919 | + } else { |
|
1920 | + $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]'; |
|
1921 | + } |
|
1922 | + } else { |
|
1923 | + $form_message = ''; |
|
1845 | 1924 | } |
1846 | - else |
|
1847 | - $form_message = ''; |
|
1848 | 1925 | |
1849 | 1926 | // Do the BBC thang on the message. |
1850 | 1927 | $row_quoted['body'] = parse_bbc($row_quoted['body'], true, 'pm' . $row_quoted['id_pm']); |
@@ -1865,8 +1942,7 @@ discard block |
||
1865 | 1942 | 'timestamp' => forum_time(true, $row_quoted['msgtime']), |
1866 | 1943 | 'body' => $row_quoted['body'] |
1867 | 1944 | ); |
1868 | - } |
|
1869 | - else |
|
1945 | + } else |
|
1870 | 1946 | { |
1871 | 1947 | $context['quoted_message'] = false; |
1872 | 1948 | $form_subject = ''; |
@@ -1885,11 +1961,12 @@ discard block |
||
1885 | 1961 | if ($_REQUEST['u'] == 'all' && isset($row_quoted)) |
1886 | 1962 | { |
1887 | 1963 | // Firstly, to reply to all we clearly already have $row_quoted - so have the original member from. |
1888 | - if ($row_quoted['id_member'] != $user_info['id']) |
|
1889 | - $context['recipients']['to'][] = array( |
|
1964 | + if ($row_quoted['id_member'] != $user_info['id']) { |
|
1965 | + $context['recipients']['to'][] = array( |
|
1890 | 1966 | 'id' => $row_quoted['id_member'], |
1891 | 1967 | 'name' => $smcFunc['htmlspecialchars']($row_quoted['real_name']), |
1892 | 1968 | ); |
1969 | + } |
|
1893 | 1970 | |
1894 | 1971 | // Now to get the others. |
1895 | 1972 | $request = $smcFunc['db_query']('', ' |
@@ -1905,18 +1982,19 @@ discard block |
||
1905 | 1982 | 'not_bcc' => 0, |
1906 | 1983 | ) |
1907 | 1984 | ); |
1908 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1909 | - $context['recipients']['to'][] = array( |
|
1985 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1986 | + $context['recipients']['to'][] = array( |
|
1910 | 1987 | 'id' => $row['id_member'], |
1911 | 1988 | 'name' => $row['real_name'], |
1912 | 1989 | ); |
1990 | + } |
|
1913 | 1991 | $smcFunc['db_free_result']($request); |
1914 | - } |
|
1915 | - else |
|
1992 | + } else |
|
1916 | 1993 | { |
1917 | 1994 | $_REQUEST['u'] = explode(',', $_REQUEST['u']); |
1918 | - foreach ($_REQUEST['u'] as $key => $uID) |
|
1919 | - $_REQUEST['u'][$key] = (int) $uID; |
|
1995 | + foreach ($_REQUEST['u'] as $key => $uID) { |
|
1996 | + $_REQUEST['u'][$key] = (int) $uID; |
|
1997 | + } |
|
1920 | 1998 | |
1921 | 1999 | $_REQUEST['u'] = array_unique($_REQUEST['u']); |
1922 | 2000 | |
@@ -1930,22 +2008,24 @@ discard block |
||
1930 | 2008 | 'limit' => count($_REQUEST['u']), |
1931 | 2009 | ) |
1932 | 2010 | ); |
1933 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1934 | - $context['recipients']['to'][] = array( |
|
2011 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2012 | + $context['recipients']['to'][] = array( |
|
1935 | 2013 | 'id' => $row['id_member'], |
1936 | 2014 | 'name' => $row['real_name'], |
1937 | 2015 | ); |
2016 | + } |
|
1938 | 2017 | $smcFunc['db_free_result']($request); |
1939 | 2018 | } |
1940 | 2019 | |
1941 | 2020 | // Get a literal name list in case the user has JavaScript disabled. |
1942 | 2021 | $names = array(); |
1943 | - foreach ($context['recipients']['to'] as $to) |
|
1944 | - $names[] = $to['name']; |
|
2022 | + foreach ($context['recipients']['to'] as $to) { |
|
2023 | + $names[] = $to['name']; |
|
2024 | + } |
|
1945 | 2025 | $context['to_value'] = empty($names) ? '' : '"' . implode('", "', $names) . '"'; |
2026 | + } else { |
|
2027 | + $context['to_value'] = ''; |
|
1946 | 2028 | } |
1947 | - else |
|
1948 | - $context['to_value'] = ''; |
|
1949 | 2029 | |
1950 | 2030 | // Set the defaults... |
1951 | 2031 | $context['subject'] = $form_subject; |
@@ -2015,8 +2095,9 @@ discard block |
||
2015 | 2095 | |
2016 | 2096 | // validate with loadMemberData() |
2017 | 2097 | $memberResult = loadMemberData($user_info['id'], false); |
2018 | - if (!$memberResult) |
|
2019 | - fatal_lang_error('not_a_user', false); |
|
2098 | + if (!$memberResult) { |
|
2099 | + fatal_lang_error('not_a_user', false); |
|
2100 | + } |
|
2020 | 2101 | list ($memID) = $memberResult; |
2021 | 2102 | |
2022 | 2103 | // drafts is where the functions reside |
@@ -2042,9 +2123,9 @@ discard block |
||
2042 | 2123 | $context['sub_template'] = 'send'; |
2043 | 2124 | loadJavaScriptFile('PersonalMessage.js', array('defer' => false), 'smf_pms'); |
2044 | 2125 | loadJavaScriptFile('suggest.js', array('defer' => false), 'smf_suggest'); |
2126 | + } else { |
|
2127 | + $context['sub_template'] = 'pm'; |
|
2045 | 2128 | } |
2046 | - else |
|
2047 | - $context['sub_template'] = 'pm'; |
|
2048 | 2129 | |
2049 | 2130 | $context['page_title'] = $txt['send_message']; |
2050 | 2131 | |
@@ -2105,10 +2186,11 @@ discard block |
||
2105 | 2186 | ); |
2106 | 2187 | if ($smcFunc['db_num_rows']($request) == 0) |
2107 | 2188 | { |
2108 | - if (!isset($_REQUEST['xml'])) |
|
2109 | - fatal_lang_error('pm_not_yours', false); |
|
2110 | - else |
|
2111 | - $error_types[] = 'pm_not_yours'; |
|
2189 | + if (!isset($_REQUEST['xml'])) { |
|
2190 | + fatal_lang_error('pm_not_yours', false); |
|
2191 | + } else { |
|
2192 | + $error_types[] = 'pm_not_yours'; |
|
2193 | + } |
|
2112 | 2194 | } |
2113 | 2195 | $row_quoted = $smcFunc['db_fetch_assoc']($request); |
2114 | 2196 | $smcFunc['db_free_result']($request); |
@@ -2155,14 +2237,16 @@ discard block |
||
2155 | 2237 | $context['post_error'][$error_type] = true; |
2156 | 2238 | if (isset($txt['error_' . $error_type])) |
2157 | 2239 | { |
2158 | - if ($error_type == 'long_message') |
|
2159 | - $txt['error_' . $error_type] = sprintf($txt['error_' . $error_type], $modSettings['max_messageLength']); |
|
2240 | + if ($error_type == 'long_message') { |
|
2241 | + $txt['error_' . $error_type] = sprintf($txt['error_' . $error_type], $modSettings['max_messageLength']); |
|
2242 | + } |
|
2160 | 2243 | $context['post_error']['messages'][] = $txt['error_' . $error_type]; |
2161 | 2244 | } |
2162 | 2245 | |
2163 | 2246 | // If it's not a minor error flag it as such. |
2164 | - if (!in_array($error_type, array('new_reply', 'not_approved', 'new_replies', 'old_topic', 'need_qr_verification', 'no_subject'))) |
|
2165 | - $context['error_type'] = 'serious'; |
|
2247 | + if (!in_array($error_type, array('new_reply', 'not_approved', 'new_replies', 'old_topic', 'need_qr_verification', 'no_subject'))) { |
|
2248 | + $context['error_type'] = 'serious'; |
|
2249 | + } |
|
2166 | 2250 | } |
2167 | 2251 | |
2168 | 2252 | // We need to load the editor once more. |
@@ -2220,8 +2304,9 @@ discard block |
||
2220 | 2304 | require_once($sourcedir . '/Subs-Auth.php'); |
2221 | 2305 | |
2222 | 2306 | // PM Drafts enabled and needed? |
2223 | - if ($context['drafts_pm_save'] && (isset($_POST['save_draft']) || isset($_POST['id_pm_draft']))) |
|
2224 | - require_once($sourcedir . '/Drafts.php'); |
|
2307 | + if ($context['drafts_pm_save'] && (isset($_POST['save_draft']) || isset($_POST['id_pm_draft']))) { |
|
2308 | + require_once($sourcedir . '/Drafts.php'); |
|
2309 | + } |
|
2225 | 2310 | |
2226 | 2311 | loadLanguage('PersonalMessage', '', false); |
2227 | 2312 | |
@@ -2251,24 +2336,27 @@ discard block |
||
2251 | 2336 | |
2252 | 2337 | if (!empty($postCount) && $postCount >= $modSettings['pm_posts_per_hour']) |
2253 | 2338 | { |
2254 | - if (!isset($_REQUEST['xml'])) |
|
2255 | - fatal_lang_error('pm_too_many_per_hour', true, array($modSettings['pm_posts_per_hour'])); |
|
2256 | - else |
|
2257 | - $post_errors[] = 'pm_too_many_per_hour'; |
|
2339 | + if (!isset($_REQUEST['xml'])) { |
|
2340 | + fatal_lang_error('pm_too_many_per_hour', true, array($modSettings['pm_posts_per_hour'])); |
|
2341 | + } else { |
|
2342 | + $post_errors[] = 'pm_too_many_per_hour'; |
|
2343 | + } |
|
2258 | 2344 | } |
2259 | 2345 | } |
2260 | 2346 | |
2261 | 2347 | // If your session timed out, show an error, but do allow to re-submit. |
2262 | - if (!isset($_REQUEST['xml']) && checkSession('post', '', false) != '') |
|
2263 | - $post_errors[] = 'session_timeout'; |
|
2348 | + if (!isset($_REQUEST['xml']) && checkSession('post', '', false) != '') { |
|
2349 | + $post_errors[] = 'session_timeout'; |
|
2350 | + } |
|
2264 | 2351 | |
2265 | 2352 | $_REQUEST['subject'] = isset($_REQUEST['subject']) ? trim($_REQUEST['subject']) : ''; |
2266 | 2353 | $_REQUEST['to'] = empty($_POST['to']) ? (empty($_GET['to']) ? '' : $_GET['to']) : $_POST['to']; |
2267 | 2354 | $_REQUEST['bcc'] = empty($_POST['bcc']) ? (empty($_GET['bcc']) ? '' : $_GET['bcc']) : $_POST['bcc']; |
2268 | 2355 | |
2269 | 2356 | // Route the input from the 'u' parameter to the 'to'-list. |
2270 | - if (!empty($_POST['u'])) |
|
2271 | - $_POST['recipient_to'] = explode(',', $_POST['u']); |
|
2357 | + if (!empty($_POST['u'])) { |
|
2358 | + $_POST['recipient_to'] = explode(',', $_POST['u']); |
|
2359 | + } |
|
2272 | 2360 | |
2273 | 2361 | // Construct the list of recipients. |
2274 | 2362 | $recipientList = array(); |
@@ -2280,8 +2368,9 @@ discard block |
||
2280 | 2368 | $recipientList[$recipientType] = array(); |
2281 | 2369 | if (!empty($_POST['recipient_' . $recipientType]) && is_array($_POST['recipient_' . $recipientType])) |
2282 | 2370 | { |
2283 | - foreach ($_POST['recipient_' . $recipientType] as $recipient) |
|
2284 | - $recipientList[$recipientType][] = (int) $recipient; |
|
2371 | + foreach ($_POST['recipient_' . $recipientType] as $recipient) { |
|
2372 | + $recipientList[$recipientType][] = (int) $recipient; |
|
2373 | + } |
|
2285 | 2374 | } |
2286 | 2375 | |
2287 | 2376 | // Are there also literal names set? |
@@ -2295,10 +2384,11 @@ discard block |
||
2295 | 2384 | |
2296 | 2385 | foreach ($namedRecipientList[$recipientType] as $index => $recipient) |
2297 | 2386 | { |
2298 | - if (strlen(trim($recipient)) > 0) |
|
2299 | - $namedRecipientList[$recipientType][$index] = $smcFunc['htmlspecialchars']($smcFunc['strtolower'](trim($recipient))); |
|
2300 | - else |
|
2301 | - unset($namedRecipientList[$recipientType][$index]); |
|
2387 | + if (strlen(trim($recipient)) > 0) { |
|
2388 | + $namedRecipientList[$recipientType][$index] = $smcFunc['htmlspecialchars']($smcFunc['strtolower'](trim($recipient))); |
|
2389 | + } else { |
|
2390 | + unset($namedRecipientList[$recipientType][$index]); |
|
2391 | + } |
|
2302 | 2392 | } |
2303 | 2393 | |
2304 | 2394 | if (!empty($namedRecipientList[$recipientType])) |
@@ -2328,8 +2418,9 @@ discard block |
||
2328 | 2418 | } |
2329 | 2419 | |
2330 | 2420 | // Selected a recipient to be deleted? Remove them now. |
2331 | - if (!empty($_POST['delete_recipient'])) |
|
2332 | - $recipientList[$recipientType] = array_diff($recipientList[$recipientType], array((int) $_POST['delete_recipient'])); |
|
2421 | + if (!empty($_POST['delete_recipient'])) { |
|
2422 | + $recipientList[$recipientType] = array_diff($recipientList[$recipientType], array((int) $_POST['delete_recipient'])); |
|
2423 | + } |
|
2333 | 2424 | |
2334 | 2425 | // Make sure we don't include the same name twice |
2335 | 2426 | $recipientList[$recipientType] = array_unique($recipientList[$recipientType]); |
@@ -2339,8 +2430,9 @@ discard block |
||
2339 | 2430 | $is_recipient_change = !empty($_POST['delete_recipient']) || !empty($_POST['to_submit']) || !empty($_POST['bcc_submit']); |
2340 | 2431 | |
2341 | 2432 | // Check if there's at least one recipient. |
2342 | - if (empty($recipientList['to']) && empty($recipientList['bcc'])) |
|
2343 | - $post_errors[] = 'no_to'; |
|
2433 | + if (empty($recipientList['to']) && empty($recipientList['bcc'])) { |
|
2434 | + $post_errors[] = 'no_to'; |
|
2435 | + } |
|
2344 | 2436 | |
2345 | 2437 | // Make sure that we remove the members who did get it from the screen. |
2346 | 2438 | if (!$is_recipient_change) |
@@ -2354,28 +2446,31 @@ discard block |
||
2354 | 2446 | // Since we already have a post error, remove the previous one. |
2355 | 2447 | $post_errors = array_diff($post_errors, array('no_to')); |
2356 | 2448 | |
2357 | - foreach ($namesNotFound[$recipientType] as $name) |
|
2358 | - $context['send_log']['failed'][] = sprintf($txt['pm_error_user_not_found'], $name); |
|
2449 | + foreach ($namesNotFound[$recipientType] as $name) { |
|
2450 | + $context['send_log']['failed'][] = sprintf($txt['pm_error_user_not_found'], $name); |
|
2451 | + } |
|
2359 | 2452 | } |
2360 | 2453 | } |
2361 | 2454 | } |
2362 | 2455 | |
2363 | 2456 | // Did they make any mistakes? |
2364 | - if ($_REQUEST['subject'] == '') |
|
2365 | - $post_errors[] = 'no_subject'; |
|
2366 | - if (!isset($_REQUEST['message']) || $_REQUEST['message'] == '') |
|
2367 | - $post_errors[] = 'no_message'; |
|
2368 | - elseif (!empty($modSettings['max_messageLength']) && $smcFunc['strlen']($_REQUEST['message']) > $modSettings['max_messageLength']) |
|
2369 | - $post_errors[] = 'long_message'; |
|
2370 | - else |
|
2457 | + if ($_REQUEST['subject'] == '') { |
|
2458 | + $post_errors[] = 'no_subject'; |
|
2459 | + } |
|
2460 | + if (!isset($_REQUEST['message']) || $_REQUEST['message'] == '') { |
|
2461 | + $post_errors[] = 'no_message'; |
|
2462 | + } elseif (!empty($modSettings['max_messageLength']) && $smcFunc['strlen']($_REQUEST['message']) > $modSettings['max_messageLength']) { |
|
2463 | + $post_errors[] = 'long_message'; |
|
2464 | + } else |
|
2371 | 2465 | { |
2372 | 2466 | // Preparse the message. |
2373 | 2467 | $message = $_REQUEST['message']; |
2374 | 2468 | preparsecode($message); |
2375 | 2469 | |
2376 | 2470 | // Make sure there's still some content left without the tags. |
2377 | - if ($smcFunc['htmltrim'](strip_tags(parse_bbc($smcFunc['htmlspecialchars']($message, ENT_QUOTES), false), '<img>')) === '' && (!allowedTo('admin_forum') || strpos($message, '[html]') === false)) |
|
2378 | - $post_errors[] = 'no_message'; |
|
2471 | + if ($smcFunc['htmltrim'](strip_tags(parse_bbc($smcFunc['htmlspecialchars']($message, ENT_QUOTES), false), '<img>')) === '' && (!allowedTo('admin_forum') || strpos($message, '[html]') === false)) { |
|
2472 | + $post_errors[] = 'no_message'; |
|
2473 | + } |
|
2379 | 2474 | } |
2380 | 2475 | |
2381 | 2476 | // Wrong verification code? |
@@ -2387,13 +2482,15 @@ discard block |
||
2387 | 2482 | ); |
2388 | 2483 | $context['require_verification'] = create_control_verification($verificationOptions, true); |
2389 | 2484 | |
2390 | - if (is_array($context['require_verification'])) |
|
2391 | - $post_errors = array_merge($post_errors, $context['require_verification']); |
|
2485 | + if (is_array($context['require_verification'])) { |
|
2486 | + $post_errors = array_merge($post_errors, $context['require_verification']); |
|
2487 | + } |
|
2392 | 2488 | } |
2393 | 2489 | |
2394 | 2490 | // If they did, give a chance to make ammends. |
2395 | - if (!empty($post_errors) && !$is_recipient_change && !isset($_REQUEST['preview']) && !isset($_REQUEST['xml'])) |
|
2396 | - return messagePostError($post_errors, $namedRecipientList, $recipientList); |
|
2491 | + if (!empty($post_errors) && !$is_recipient_change && !isset($_REQUEST['preview']) && !isset($_REQUEST['xml'])) { |
|
2492 | + return messagePostError($post_errors, $namedRecipientList, $recipientList); |
|
2493 | + } |
|
2397 | 2494 | |
2398 | 2495 | // Want to take a second glance before you send? |
2399 | 2496 | if (isset($_REQUEST['preview'])) |
@@ -2424,8 +2521,9 @@ discard block |
||
2424 | 2521 | foreach ($namesNotFound as $recipientType => $names) |
2425 | 2522 | { |
2426 | 2523 | $post_errors[] = 'bad_' . $recipientType; |
2427 | - foreach ($names as $name) |
|
2428 | - $context['send_log']['failed'][] = sprintf($txt['pm_error_user_not_found'], $name); |
|
2524 | + foreach ($names as $name) { |
|
2525 | + $context['send_log']['failed'][] = sprintf($txt['pm_error_user_not_found'], $name); |
|
2526 | + } |
|
2429 | 2527 | } |
2430 | 2528 | |
2431 | 2529 | return messagePostError(array(), $namedRecipientList, $recipientList); |
@@ -2455,13 +2553,14 @@ discard block |
||
2455 | 2553 | checkSubmitOnce('check'); |
2456 | 2554 | |
2457 | 2555 | // Do the actual sending of the PM. |
2458 | - if (!empty($recipientList['to']) || !empty($recipientList['bcc'])) |
|
2459 | - $context['send_log'] = sendpm($recipientList, $_REQUEST['subject'], $_REQUEST['message'], true, null, !empty($_REQUEST['pm_head']) ? (int) $_REQUEST['pm_head'] : 0); |
|
2460 | - else |
|
2461 | - $context['send_log'] = array( |
|
2556 | + if (!empty($recipientList['to']) || !empty($recipientList['bcc'])) { |
|
2557 | + $context['send_log'] = sendpm($recipientList, $_REQUEST['subject'], $_REQUEST['message'], true, null, !empty($_REQUEST['pm_head']) ? (int) $_REQUEST['pm_head'] : 0); |
|
2558 | + } else { |
|
2559 | + $context['send_log'] = array( |
|
2462 | 2560 | 'sent' => array(), |
2463 | 2561 | 'failed' => array() |
2464 | 2562 | ); |
2563 | + } |
|
2465 | 2564 | |
2466 | 2565 | // Mark the message as "replied to". |
2467 | 2566 | if (!empty($context['send_log']['sent']) && !empty($_REQUEST['replied_to']) && isset($_REQUEST['f']) && $_REQUEST['f'] == 'inbox') |
@@ -2479,11 +2578,12 @@ discard block |
||
2479 | 2578 | } |
2480 | 2579 | |
2481 | 2580 | // If one or more of the recipient were invalid, go back to the post screen with the failed usernames. |
2482 | - if (!empty($context['send_log']['failed'])) |
|
2483 | - return messagePostError($post_errors, $namesNotFound, array( |
|
2581 | + if (!empty($context['send_log']['failed'])) { |
|
2582 | + return messagePostError($post_errors, $namesNotFound, array( |
|
2484 | 2583 | 'to' => array_intersect($recipientList['to'], $context['send_log']['failed']), |
2485 | 2584 | 'bcc' => array_intersect($recipientList['bcc'], $context['send_log']['failed']) |
2486 | 2585 | )); |
2586 | + } |
|
2487 | 2587 | |
2488 | 2588 | // Message sent successfully? |
2489 | 2589 | if (!empty($context['send_log']) && empty($context['send_log']['failed'])) |
@@ -2491,8 +2591,9 @@ discard block |
||
2491 | 2591 | $context['current_label_redirect'] = $context['current_label_redirect'] . ';done=sent'; |
2492 | 2592 | |
2493 | 2593 | // If we had a PM draft for this one, then its time to remove it since it was just sent |
2494 | - if ($context['drafts_pm_save'] && !empty($_POST['id_pm_draft'])) |
|
2495 | - DeleteDraft($_POST['id_pm_draft']); |
|
2594 | + if ($context['drafts_pm_save'] && !empty($_POST['id_pm_draft'])) { |
|
2595 | + DeleteDraft($_POST['id_pm_draft']); |
|
2596 | + } |
|
2496 | 2597 | } |
2497 | 2598 | |
2498 | 2599 | // Go back to the where they sent from, if possible... |
@@ -2507,24 +2608,28 @@ discard block |
||
2507 | 2608 | |
2508 | 2609 | checkSession('request'); |
2509 | 2610 | |
2510 | - if (isset($_REQUEST['del_selected'])) |
|
2511 | - $_REQUEST['pm_action'] = 'delete'; |
|
2611 | + if (isset($_REQUEST['del_selected'])) { |
|
2612 | + $_REQUEST['pm_action'] = 'delete'; |
|
2613 | + } |
|
2512 | 2614 | |
2513 | 2615 | if (isset($_REQUEST['pm_action']) && $_REQUEST['pm_action'] != '' && !empty($_REQUEST['pms']) && is_array($_REQUEST['pms'])) |
2514 | 2616 | { |
2515 | - foreach ($_REQUEST['pms'] as $pm) |
|
2516 | - $_REQUEST['pm_actions'][(int) $pm] = $_REQUEST['pm_action']; |
|
2617 | + foreach ($_REQUEST['pms'] as $pm) { |
|
2618 | + $_REQUEST['pm_actions'][(int) $pm] = $_REQUEST['pm_action']; |
|
2619 | + } |
|
2517 | 2620 | } |
2518 | 2621 | |
2519 | - if (empty($_REQUEST['pm_actions'])) |
|
2520 | - redirectexit($context['current_label_redirect']); |
|
2622 | + if (empty($_REQUEST['pm_actions'])) { |
|
2623 | + redirectexit($context['current_label_redirect']); |
|
2624 | + } |
|
2521 | 2625 | |
2522 | 2626 | // If we are in conversation, we may need to apply this to every message in the conversation. |
2523 | 2627 | if ($context['display_mode'] == 2 && isset($_REQUEST['conversation'])) |
2524 | 2628 | { |
2525 | 2629 | $id_pms = array(); |
2526 | - foreach ($_REQUEST['pm_actions'] as $pm => $dummy) |
|
2527 | - $id_pms[] = (int) $pm; |
|
2630 | + foreach ($_REQUEST['pm_actions'] as $pm => $dummy) { |
|
2631 | + $id_pms[] = (int) $pm; |
|
2632 | + } |
|
2528 | 2633 | |
2529 | 2634 | $request = $smcFunc['db_query']('', ' |
2530 | 2635 | SELECT id_pm_head, id_pm |
@@ -2535,8 +2640,9 @@ discard block |
||
2535 | 2640 | ) |
2536 | 2641 | ); |
2537 | 2642 | $pm_heads = array(); |
2538 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2539 | - $pm_heads[$row['id_pm_head']] = $row['id_pm']; |
|
2643 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2644 | + $pm_heads[$row['id_pm_head']] = $row['id_pm']; |
|
2645 | + } |
|
2540 | 2646 | $smcFunc['db_free_result']($request); |
2541 | 2647 | |
2542 | 2648 | $request = $smcFunc['db_query']('', ' |
@@ -2550,8 +2656,9 @@ discard block |
||
2550 | 2656 | // Copy the action from the single to PM to the others. |
2551 | 2657 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
2552 | 2658 | { |
2553 | - if (isset($pm_heads[$row['id_pm_head']]) && isset($_REQUEST['pm_actions'][$pm_heads[$row['id_pm_head']]])) |
|
2554 | - $_REQUEST['pm_actions'][$row['id_pm']] = $_REQUEST['pm_actions'][$pm_heads[$row['id_pm_head']]]; |
|
2659 | + if (isset($pm_heads[$row['id_pm_head']]) && isset($_REQUEST['pm_actions'][$pm_heads[$row['id_pm_head']]])) { |
|
2660 | + $_REQUEST['pm_actions'][$row['id_pm']] = $_REQUEST['pm_actions'][$pm_heads[$row['id_pm_head']]]; |
|
2661 | + } |
|
2555 | 2662 | } |
2556 | 2663 | $smcFunc['db_free_result']($request); |
2557 | 2664 | } |
@@ -2562,22 +2669,21 @@ discard block |
||
2562 | 2669 | $labels = array(); |
2563 | 2670 | foreach ($_REQUEST['pm_actions'] as $pm => $action) |
2564 | 2671 | { |
2565 | - if ($action === 'delete') |
|
2566 | - $to_delete[] = (int) $pm; |
|
2567 | - else |
|
2672 | + if ($action === 'delete') { |
|
2673 | + $to_delete[] = (int) $pm; |
|
2674 | + } else |
|
2568 | 2675 | { |
2569 | 2676 | if (substr($action, 0, 4) == 'add_') |
2570 | 2677 | { |
2571 | 2678 | $type = 'add'; |
2572 | 2679 | $action = substr($action, 4); |
2573 | - } |
|
2574 | - elseif (substr($action, 0, 4) == 'rem_') |
|
2680 | + } elseif (substr($action, 0, 4) == 'rem_') |
|
2575 | 2681 | { |
2576 | 2682 | $type = 'rem'; |
2577 | 2683 | $action = substr($action, 4); |
2684 | + } else { |
|
2685 | + $type = 'unk'; |
|
2578 | 2686 | } |
2579 | - else |
|
2580 | - $type = 'unk'; |
|
2581 | 2687 | |
2582 | 2688 | if ($action == '-1' || (int) $action > 0) |
2583 | 2689 | { |
@@ -2588,8 +2694,9 @@ discard block |
||
2588 | 2694 | } |
2589 | 2695 | |
2590 | 2696 | // Deleting, it looks like? |
2591 | - if (!empty($to_delete)) |
|
2592 | - deleteMessages($to_delete, $context['display_mode'] == 2 ? null : $context['folder']); |
|
2697 | + if (!empty($to_delete)) { |
|
2698 | + deleteMessages($to_delete, $context['display_mode'] == 2 ? null : $context['folder']); |
|
2699 | + } |
|
2593 | 2700 | |
2594 | 2701 | // Are we labeling anything? |
2595 | 2702 | if (!empty($to_label) && $context['folder'] == 'inbox') |
@@ -2655,8 +2762,7 @@ discard block |
||
2655 | 2762 | } |
2656 | 2763 | |
2657 | 2764 | $smcFunc['db_free_result']($request2); |
2658 | - } |
|
2659 | - elseif ($type == 'rem') |
|
2765 | + } elseif ($type == 'rem') |
|
2660 | 2766 | { |
2661 | 2767 | // If we're removing from the inbox, see if we have at least one other label. |
2662 | 2768 | // This query is faster than the one above |
@@ -2688,21 +2794,25 @@ discard block |
||
2688 | 2794 | if ($to_label[$row['id_pm']] != '-1') |
2689 | 2795 | { |
2690 | 2796 | // If this label is in the list and we're not adding it, remove it |
2691 | - if (array_key_exists($to_label[$row['id_pm']], $labels) && $type !== 'add') |
|
2692 | - unset($labels[$to_label[$row['id_pm']]]); |
|
2693 | - else if ($type !== 'rem') |
|
2694 | - $labels[$to_label[$row['id_pm']]] = $to_label[$row['id_pm']]; |
|
2797 | + if (array_key_exists($to_label[$row['id_pm']], $labels) && $type !== 'add') { |
|
2798 | + unset($labels[$to_label[$row['id_pm']]]); |
|
2799 | + } else if ($type !== 'rem') { |
|
2800 | + $labels[$to_label[$row['id_pm']]] = $to_label[$row['id_pm']]; |
|
2801 | + } |
|
2695 | 2802 | } |
2696 | 2803 | |
2697 | 2804 | // Removing all labels or just removing the inbox label |
2698 | - if ($type == 'rem' && empty($labels)) |
|
2699 | - $in_inbox = (empty($context['can_remove_inbox']) ? 1 : 0); |
|
2805 | + if ($type == 'rem' && empty($labels)) { |
|
2806 | + $in_inbox = (empty($context['can_remove_inbox']) ? 1 : 0); |
|
2807 | + } |
|
2700 | 2808 | // Adding new labels, but removing inbox and applying new ones |
2701 | - elseif ($type == 'add' && !empty($options['pm_remove_inbox_label']) && !empty($labels)) |
|
2702 | - $in_inbox = 0; |
|
2809 | + elseif ($type == 'add' && !empty($options['pm_remove_inbox_label']) && !empty($labels)) { |
|
2810 | + $in_inbox = 0; |
|
2811 | + } |
|
2703 | 2812 | // Just adding it to the inbox |
2704 | - else |
|
2705 | - $in_inbox = 1; |
|
2813 | + else { |
|
2814 | + $in_inbox = 1; |
|
2815 | + } |
|
2706 | 2816 | |
2707 | 2817 | // Are we adding it to or removing it from the inbox? |
2708 | 2818 | if ($in_inbox != $row['in_inbox']) |
@@ -2744,8 +2854,9 @@ discard block |
||
2744 | 2854 | if (!empty($labels_to_apply)) |
2745 | 2855 | { |
2746 | 2856 | $inserts = array(); |
2747 | - foreach ($labels_to_apply as $label) |
|
2748 | - $inserts[] = array($row['id_pm'], $label); |
|
2857 | + foreach ($labels_to_apply as $label) { |
|
2858 | + $inserts[] = array($row['id_pm'], $label); |
|
2859 | + } |
|
2749 | 2860 | |
2750 | 2861 | $smcFunc['db_insert']('', |
2751 | 2862 | '{db_prefix}pm_labeled_messages', |
@@ -2789,11 +2900,13 @@ discard block |
||
2789 | 2900 | checkSession('get'); |
2790 | 2901 | |
2791 | 2902 | // If all then delete all messages the user has. |
2792 | - if ($_REQUEST['f'] == 'all') |
|
2793 | - deleteMessages(null, null); |
|
2903 | + if ($_REQUEST['f'] == 'all') { |
|
2904 | + deleteMessages(null, null); |
|
2905 | + } |
|
2794 | 2906 | // Otherwise just the selected folder. |
2795 | - else |
|
2796 | - deleteMessages(null, $_REQUEST['f'] != 'sent' ? 'inbox' : 'sent'); |
|
2907 | + else { |
|
2908 | + deleteMessages(null, $_REQUEST['f'] != 'sent' ? 'inbox' : 'sent'); |
|
2909 | + } |
|
2797 | 2910 | |
2798 | 2911 | // Done... all gone. |
2799 | 2912 | redirectexit($context['current_label_redirect']); |
@@ -2830,8 +2943,9 @@ discard block |
||
2830 | 2943 | 'msgtime' => $deleteTime, |
2831 | 2944 | ) |
2832 | 2945 | ); |
2833 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
2834 | - $toDelete[] = $row[0]; |
|
2946 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
2947 | + $toDelete[] = $row[0]; |
|
2948 | + } |
|
2835 | 2949 | $smcFunc['db_free_result']($request); |
2836 | 2950 | |
2837 | 2951 | // Select all messages in their inbox older than $deleteTime. |
@@ -2848,8 +2962,9 @@ discard block |
||
2848 | 2962 | 'msgtime' => $deleteTime, |
2849 | 2963 | ) |
2850 | 2964 | ); |
2851 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2852 | - $toDelete[] = $row['id_pm']; |
|
2965 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2966 | + $toDelete[] = $row['id_pm']; |
|
2967 | + } |
|
2853 | 2968 | $smcFunc['db_free_result']($request); |
2854 | 2969 | |
2855 | 2970 | // Delete the actual messages. |
@@ -2880,26 +2995,29 @@ discard block |
||
2880 | 2995 | { |
2881 | 2996 | global $user_info, $smcFunc; |
2882 | 2997 | |
2883 | - if ($owner === null) |
|
2884 | - $owner = array($user_info['id']); |
|
2885 | - elseif (empty($owner)) |
|
2886 | - return; |
|
2887 | - elseif (!is_array($owner)) |
|
2888 | - $owner = array($owner); |
|
2998 | + if ($owner === null) { |
|
2999 | + $owner = array($user_info['id']); |
|
3000 | + } elseif (empty($owner)) { |
|
3001 | + return; |
|
3002 | + } elseif (!is_array($owner)) { |
|
3003 | + $owner = array($owner); |
|
3004 | + } |
|
2889 | 3005 | |
2890 | 3006 | if ($personal_messages !== null) |
2891 | 3007 | { |
2892 | - if (empty($personal_messages) || !is_array($personal_messages)) |
|
2893 | - return; |
|
3008 | + if (empty($personal_messages) || !is_array($personal_messages)) { |
|
3009 | + return; |
|
3010 | + } |
|
2894 | 3011 | |
2895 | - foreach ($personal_messages as $index => $delete_id) |
|
2896 | - $personal_messages[$index] = (int) $delete_id; |
|
3012 | + foreach ($personal_messages as $index => $delete_id) { |
|
3013 | + $personal_messages[$index] = (int) $delete_id; |
|
3014 | + } |
|
2897 | 3015 | |
2898 | 3016 | $where = ' |
2899 | 3017 | AND id_pm IN ({array_int:pm_list})'; |
3018 | + } else { |
|
3019 | + $where = ''; |
|
2900 | 3020 | } |
2901 | - else |
|
2902 | - $where = ''; |
|
2903 | 3021 | |
2904 | 3022 | if ($folder == 'sent' || $folder === null) |
2905 | 3023 | { |
@@ -2934,17 +3052,19 @@ discard block |
||
2934 | 3052 | // ...And update the statistics accordingly - now including unread messages!. |
2935 | 3053 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
2936 | 3054 | { |
2937 | - if ($row['is_read']) |
|
2938 | - updateMemberData($row['id_member'], array('instant_messages' => $where == '' ? 0 : 'instant_messages - ' . $row['num_deleted_messages'])); |
|
2939 | - else |
|
2940 | - 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'])); |
|
3055 | + if ($row['is_read']) { |
|
3056 | + updateMemberData($row['id_member'], array('instant_messages' => $where == '' ? 0 : 'instant_messages - ' . $row['num_deleted_messages'])); |
|
3057 | + } else { |
|
3058 | + 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'])); |
|
3059 | + } |
|
2941 | 3060 | |
2942 | 3061 | // If this is the current member we need to make their message count correct. |
2943 | 3062 | if ($user_info['id'] == $row['id_member']) |
2944 | 3063 | { |
2945 | 3064 | $user_info['messages'] -= $row['num_deleted_messages']; |
2946 | - if (!($row['is_read'])) |
|
2947 | - $user_info['unread_messages'] -= $row['num_deleted_messages']; |
|
3065 | + if (!($row['is_read'])) { |
|
3066 | + $user_info['unread_messages'] -= $row['num_deleted_messages']; |
|
3067 | + } |
|
2948 | 3068 | } |
2949 | 3069 | } |
2950 | 3070 | $smcFunc['db_free_result']($request); |
@@ -3012,8 +3132,9 @@ discard block |
||
3012 | 3132 | ) |
3013 | 3133 | ); |
3014 | 3134 | $remove_pms = array(); |
3015 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
3016 | - $remove_pms[] = $row['sender']; |
|
3135 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
3136 | + $remove_pms[] = $row['sender']; |
|
3137 | + } |
|
3017 | 3138 | $smcFunc['db_free_result']($request); |
3018 | 3139 | |
3019 | 3140 | if (!empty($remove_pms)) |
@@ -3058,8 +3179,9 @@ discard block |
||
3058 | 3179 | { |
3059 | 3180 | global $user_info, $context, $smcFunc; |
3060 | 3181 | |
3061 | - if ($owner === null) |
|
3062 | - $owner = $user_info['id']; |
|
3182 | + if ($owner === null) { |
|
3183 | + $owner = $user_info['id']; |
|
3184 | + } |
|
3063 | 3185 | |
3064 | 3186 | $in_inbox = ''; |
3065 | 3187 | |
@@ -3083,8 +3205,7 @@ discard block |
||
3083 | 3205 | } |
3084 | 3206 | |
3085 | 3207 | $smcFunc['db_free_result']($get_messages); |
3086 | - } |
|
3087 | - elseif ($label = '-1') |
|
3208 | + } elseif ($label = '-1') |
|
3088 | 3209 | { |
3089 | 3210 | // Marking all PMs in your inbox read |
3090 | 3211 | $in_inbox = ' |
@@ -3109,8 +3230,9 @@ discard block |
||
3109 | 3230 | { |
3110 | 3231 | if ($owner == $user_info['id']) |
3111 | 3232 | { |
3112 | - foreach ($context['labels'] as $label) |
|
3113 | - $context['labels'][(int) $label['id']]['unread_messages'] = 0; |
|
3233 | + foreach ($context['labels'] as $label) { |
|
3234 | + $context['labels'][(int) $label['id']]['unread_messages'] = 0; |
|
3235 | + } |
|
3114 | 3236 | } |
3115 | 3237 | |
3116 | 3238 | $result = $smcFunc['db_query']('', ' |
@@ -3130,8 +3252,9 @@ discard block |
||
3130 | 3252 | { |
3131 | 3253 | $total_unread += $row['num']; |
3132 | 3254 | |
3133 | - if ($owner != $user_info['id'] || empty($row['id_pm'])) |
|
3134 | - continue; |
|
3255 | + if ($owner != $user_info['id'] || empty($row['id_pm'])) { |
|
3256 | + continue; |
|
3257 | + } |
|
3135 | 3258 | |
3136 | 3259 | $this_labels = array(); |
3137 | 3260 | |
@@ -3155,11 +3278,13 @@ discard block |
||
3155 | 3278 | |
3156 | 3279 | $smcFunc['db_free_result']($result2); |
3157 | 3280 | |
3158 | - foreach ($this_labels as $this_label) |
|
3159 | - $context['labels'][$this_label]['unread_messages'] += $row['num']; |
|
3281 | + foreach ($this_labels as $this_label) { |
|
3282 | + $context['labels'][$this_label]['unread_messages'] += $row['num']; |
|
3283 | + } |
|
3160 | 3284 | |
3161 | - if ($row['in_inbox'] == 1) |
|
3162 | - $context['labels'][-1]['unread_messages'] += $row['num']; |
|
3285 | + if ($row['in_inbox'] == 1) { |
|
3286 | + $context['labels'][-1]['unread_messages'] += $row['num']; |
|
3287 | + } |
|
3163 | 3288 | } |
3164 | 3289 | $smcFunc['db_free_result']($result); |
3165 | 3290 | |
@@ -3168,8 +3293,9 @@ discard block |
||
3168 | 3293 | updateMemberData($owner, array('unread_messages' => $total_unread)); |
3169 | 3294 | |
3170 | 3295 | // If it was for the current member, reflect this in the $user_info array too. |
3171 | - if ($owner == $user_info['id']) |
|
3172 | - $user_info['unread_messages'] = $total_unread; |
|
3296 | + if ($owner == $user_info['id']) { |
|
3297 | + $user_info['unread_messages'] = $total_unread; |
|
3298 | + } |
|
3173 | 3299 | } |
3174 | 3300 | } |
3175 | 3301 | |
@@ -3197,8 +3323,9 @@ discard block |
||
3197 | 3323 | // Add all existing labels to the array to save, slashing them as necessary... |
3198 | 3324 | foreach ($context['labels'] as $label) |
3199 | 3325 | { |
3200 | - if ($label['id'] != -1) |
|
3201 | - $the_labels[$label['id']] = $label['name']; |
|
3326 | + if ($label['id'] != -1) { |
|
3327 | + $the_labels[$label['id']] = $label['name']; |
|
3328 | + } |
|
3202 | 3329 | } |
3203 | 3330 | |
3204 | 3331 | if (isset($_POST[$context['session_var']])) |
@@ -3217,8 +3344,9 @@ discard block |
||
3217 | 3344 | { |
3218 | 3345 | $_POST['label'] = strtr($smcFunc['htmlspecialchars'](trim($_POST['label'])), array(',' => ',')); |
3219 | 3346 | |
3220 | - if ($smcFunc['strlen']($_POST['label']) > 30) |
|
3221 | - $_POST['label'] = $smcFunc['substr']($_POST['label'], 0, 30); |
|
3347 | + if ($smcFunc['strlen']($_POST['label']) > 30) { |
|
3348 | + $_POST['label'] = $smcFunc['substr']($_POST['label'], 0, 30); |
|
3349 | + } |
|
3222 | 3350 | if ($_POST['label'] != '') |
3223 | 3351 | { |
3224 | 3352 | $the_labels[] = $_POST['label']; |
@@ -3239,24 +3367,25 @@ discard block |
||
3239 | 3367 | { |
3240 | 3368 | foreach ($the_labels as $id => $name) |
3241 | 3369 | { |
3242 | - if ($id == -1) |
|
3243 | - continue; |
|
3244 | - elseif (isset($_POST['label_name'][$id])) |
|
3370 | + if ($id == -1) { |
|
3371 | + continue; |
|
3372 | + } elseif (isset($_POST['label_name'][$id])) |
|
3245 | 3373 | { |
3246 | 3374 | $_POST['label_name'][$id] = trim(strtr($smcFunc['htmlspecialchars']($_POST['label_name'][$id]), array(',' => ','))); |
3247 | 3375 | |
3248 | - if ($smcFunc['strlen']($_POST['label_name'][$id]) > 30) |
|
3249 | - $_POST['label_name'][$id] = $smcFunc['substr']($_POST['label_name'][$id], 0, 30); |
|
3376 | + if ($smcFunc['strlen']($_POST['label_name'][$id]) > 30) { |
|
3377 | + $_POST['label_name'][$id] = $smcFunc['substr']($_POST['label_name'][$id], 0, 30); |
|
3378 | + } |
|
3250 | 3379 | if ($_POST['label_name'][$id] != '') |
3251 | 3380 | { |
3252 | 3381 | // Changing the name of this label? |
3253 | - if ($the_labels[$id] != $_POST['label_name'][$id]) |
|
3254 | - $label_updates[$id] = $_POST['label_name'][$id]; |
|
3382 | + if ($the_labels[$id] != $_POST['label_name'][$id]) { |
|
3383 | + $label_updates[$id] = $_POST['label_name'][$id]; |
|
3384 | + } |
|
3255 | 3385 | |
3256 | 3386 | $the_labels[(int) $id] = $_POST['label_name'][$id]; |
3257 | 3387 | |
3258 | - } |
|
3259 | - else |
|
3388 | + } else |
|
3260 | 3389 | { |
3261 | 3390 | unset($the_labels[(int) $id]); |
3262 | 3391 | $labels_to_remove[] = $id; |
@@ -3270,8 +3399,9 @@ discard block |
||
3270 | 3399 | if (!empty($labels_to_add)) |
3271 | 3400 | { |
3272 | 3401 | $inserts = array(); |
3273 | - foreach ($labels_to_add AS $label) |
|
3274 | - $inserts[] = array($user_info['id'], $label); |
|
3402 | + foreach ($labels_to_add AS $label) { |
|
3403 | + $inserts[] = array($user_info['id'], $label); |
|
3404 | + } |
|
3275 | 3405 | |
3276 | 3406 | $smcFunc['db_insert']('', '{db_prefix}pm_labels', array('id_member' => 'int', 'name' => 'string-30'), $inserts, array()); |
3277 | 3407 | } |
@@ -3361,8 +3491,9 @@ discard block |
||
3361 | 3491 | // Each action... |
3362 | 3492 | foreach ($rule['actions'] as $k2 => $action) |
3363 | 3493 | { |
3364 | - if ($action['t'] != 'lab' || !in_array($action['v'], $labels_to_remove)) |
|
3365 | - continue; |
|
3494 | + if ($action['t'] != 'lab' || !in_array($action['v'], $labels_to_remove)) { |
|
3495 | + continue; |
|
3496 | + } |
|
3366 | 3497 | |
3367 | 3498 | $rule_changes[] = $rule['id']; |
3368 | 3499 | |
@@ -3377,8 +3508,8 @@ discard block |
||
3377 | 3508 | { |
3378 | 3509 | $rule_changes = array_unique($rule_changes); |
3379 | 3510 | // Update/delete as appropriate. |
3380 | - foreach ($rule_changes as $k => $id) |
|
3381 | - if (!empty($context['rules'][$id]['actions'])) |
|
3511 | + foreach ($rule_changes as $k => $id) { |
|
3512 | + if (!empty($context['rules'][$id]['actions'])) |
|
3382 | 3513 | { |
3383 | 3514 | $smcFunc['db_query']('', ' |
3384 | 3515 | UPDATE {db_prefix}pm_rules |
@@ -3391,12 +3522,13 @@ discard block |
||
3391 | 3522 | 'actions' => $smcFunc['json_encode']($context['rules'][$id]['actions']), |
3392 | 3523 | ) |
3393 | 3524 | ); |
3525 | + } |
|
3394 | 3526 | unset($rule_changes[$k]); |
3395 | 3527 | } |
3396 | 3528 | |
3397 | 3529 | // Anything left here means it's lost all actions... |
3398 | - if (!empty($rule_changes)) |
|
3399 | - $smcFunc['db_query']('', ' |
|
3530 | + if (!empty($rule_changes)) { |
|
3531 | + $smcFunc['db_query']('', ' |
|
3400 | 3532 | DELETE FROM {db_prefix}pm_rules |
3401 | 3533 | WHERE id_rule IN ({array_int:rule_list}) |
3402 | 3534 | AND id_member = {int:current_member}', |
@@ -3405,6 +3537,7 @@ discard block |
||
3405 | 3537 | 'rule_list' => $rule_changes, |
3406 | 3538 | ) |
3407 | 3539 | ); |
3540 | + } |
|
3408 | 3541 | } |
3409 | 3542 | |
3410 | 3543 | // Make sure we're not caching this! |
@@ -3474,8 +3607,9 @@ discard block |
||
3474 | 3607 | // Save the fields. |
3475 | 3608 | saveProfileFields(); |
3476 | 3609 | |
3477 | - if (!empty($profile_vars)) |
|
3478 | - updateMemberData($user_info['id'], $profile_vars); |
|
3610 | + if (!empty($profile_vars)) { |
|
3611 | + updateMemberData($user_info['id'], $profile_vars); |
|
3612 | + } |
|
3479 | 3613 | } |
3480 | 3614 | |
3481 | 3615 | setupProfileContext( |
@@ -3500,13 +3634,15 @@ discard block |
||
3500 | 3634 | global $user_info, $language, $modSettings, $smcFunc; |
3501 | 3635 | |
3502 | 3636 | // Check that this feature is even enabled! |
3503 | - if (empty($modSettings['enableReportPM']) || empty($_REQUEST['pmsg'])) |
|
3504 | - fatal_lang_error('no_access', false); |
|
3637 | + if (empty($modSettings['enableReportPM']) || empty($_REQUEST['pmsg'])) { |
|
3638 | + fatal_lang_error('no_access', false); |
|
3639 | + } |
|
3505 | 3640 | |
3506 | 3641 | $pmsg = (int) $_REQUEST['pmsg']; |
3507 | 3642 | |
3508 | - if (!isAccessiblePM($pmsg, 'inbox')) |
|
3509 | - fatal_lang_error('no_access', false); |
|
3643 | + if (!isAccessiblePM($pmsg, 'inbox')) { |
|
3644 | + fatal_lang_error('no_access', false); |
|
3645 | + } |
|
3510 | 3646 | |
3511 | 3647 | $context['pm_id'] = $pmsg; |
3512 | 3648 | $context['page_title'] = $txt['pm_report_title']; |
@@ -3528,8 +3664,9 @@ discard block |
||
3528 | 3664 | ) |
3529 | 3665 | ); |
3530 | 3666 | $context['admins'] = array(); |
3531 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
3532 | - $context['admins'][$row['id_member']] = $row['real_name']; |
|
3667 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
3668 | + $context['admins'][$row['id_member']] = $row['real_name']; |
|
3669 | + } |
|
3533 | 3670 | $smcFunc['db_free_result']($request); |
3534 | 3671 | |
3535 | 3672 | // How many admins in total? |
@@ -3558,8 +3695,9 @@ discard block |
||
3558 | 3695 | ) |
3559 | 3696 | ); |
3560 | 3697 | // Can only be a hacker here! |
3561 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
3562 | - fatal_lang_error('no_access', false); |
|
3698 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
3699 | + fatal_lang_error('no_access', false); |
|
3700 | + } |
|
3563 | 3701 | list ($subject, $body, $time, $memberFromID, $memberFromName) = $smcFunc['db_fetch_row']($request); |
3564 | 3702 | $smcFunc['db_free_result']($request); |
3565 | 3703 | |
@@ -3583,15 +3721,17 @@ discard block |
||
3583 | 3721 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
3584 | 3722 | { |
3585 | 3723 | // If it's hidden still don't reveal their names - privacy after all ;) |
3586 | - if ($row['bcc']) |
|
3587 | - $hidden_recipients++; |
|
3588 | - else |
|
3589 | - $recipients[] = '[url=' . $scripturl . '?action=profile;u=' . $row['id_member_to'] . ']' . $row['to_name'] . '[/url]'; |
|
3724 | + if ($row['bcc']) { |
|
3725 | + $hidden_recipients++; |
|
3726 | + } else { |
|
3727 | + $recipients[] = '[url=' . $scripturl . '?action=profile;u=' . $row['id_member_to'] . ']' . $row['to_name'] . '[/url]'; |
|
3728 | + } |
|
3590 | 3729 | } |
3591 | 3730 | $smcFunc['db_free_result']($request); |
3592 | 3731 | |
3593 | - if ($hidden_recipients) |
|
3594 | - $recipients[] = sprintf($txt['pm_report_pm_hidden'], $hidden_recipients); |
|
3732 | + if ($hidden_recipients) { |
|
3733 | + $recipients[] = sprintf($txt['pm_report_pm_hidden'], $hidden_recipients); |
|
3734 | + } |
|
3595 | 3735 | |
3596 | 3736 | // Now let's get out and loop through the admins. |
3597 | 3737 | $request = $smcFunc['db_query']('', ' |
@@ -3607,8 +3747,9 @@ discard block |
||
3607 | 3747 | ); |
3608 | 3748 | |
3609 | 3749 | // Maybe we shouldn't advertise this? |
3610 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
3611 | - fatal_lang_error('no_access', false); |
|
3750 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
3751 | + fatal_lang_error('no_access', false); |
|
3752 | + } |
|
3612 | 3753 | |
3613 | 3754 | $memberFromName = un_htmlspecialchars($memberFromName); |
3614 | 3755 | |
@@ -3627,8 +3768,9 @@ discard block |
||
3627 | 3768 | // Make the body. |
3628 | 3769 | $report_body = str_replace(array('{REPORTER}', '{SENDER}'), array(un_htmlspecialchars($user_info['name']), $memberFromName), $txt['pm_report_pm_user_sent']); |
3629 | 3770 | $report_body .= "\n" . '[b]' . $_POST['reason'] . '[/b]' . "\n\n"; |
3630 | - if (!empty($recipients)) |
|
3631 | - $report_body .= $txt['pm_report_pm_other_recipients'] . ' ' . implode(', ', $recipients) . "\n\n"; |
|
3771 | + if (!empty($recipients)) { |
|
3772 | + $report_body .= $txt['pm_report_pm_other_recipients'] . ' ' . implode(', ', $recipients) . "\n\n"; |
|
3773 | + } |
|
3632 | 3774 | $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]'; |
3633 | 3775 | |
3634 | 3776 | // Plonk it in the array ;) |
@@ -3648,12 +3790,14 @@ discard block |
||
3648 | 3790 | $smcFunc['db_free_result']($request); |
3649 | 3791 | |
3650 | 3792 | // Send a different email for each language. |
3651 | - foreach ($messagesToSend as $lang => $message) |
|
3652 | - sendpm($message['recipients'], $message['subject'], $message['body']); |
|
3793 | + foreach ($messagesToSend as $lang => $message) { |
|
3794 | + sendpm($message['recipients'], $message['subject'], $message['body']); |
|
3795 | + } |
|
3653 | 3796 | |
3654 | 3797 | // Give the user their own language back! |
3655 | - if (!empty($modSettings['userLanguage'])) |
|
3656 | - loadLanguage('PersonalMessage', '', false); |
|
3798 | + if (!empty($modSettings['userLanguage'])) { |
|
3799 | + loadLanguage('PersonalMessage', '', false); |
|
3800 | + } |
|
3657 | 3801 | |
3658 | 3802 | // Leave them with a template. |
3659 | 3803 | $context['sub_template'] = 'report_message_complete'; |
@@ -3699,8 +3843,9 @@ discard block |
||
3699 | 3843 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
3700 | 3844 | { |
3701 | 3845 | // Hide hidden groups! |
3702 | - if ($row['hidden'] && !$row['can_moderate'] && !allowedTo('manage_membergroups')) |
|
3703 | - continue; |
|
3846 | + if ($row['hidden'] && !$row['can_moderate'] && !allowedTo('manage_membergroups')) { |
|
3847 | + continue; |
|
3848 | + } |
|
3704 | 3849 | |
3705 | 3850 | $context['groups'][$row['id_group']] = $row['group_name']; |
3706 | 3851 | } |
@@ -3726,9 +3871,10 @@ discard block |
||
3726 | 3871 | $context['rule'] = $context['rules'][$context['rid']]; |
3727 | 3872 | $members = array(); |
3728 | 3873 | // Need to get member names! |
3729 | - foreach ($context['rule']['criteria'] as $k => $criteria) |
|
3730 | - if ($criteria['t'] == 'mid' && !empty($criteria['v'])) |
|
3874 | + foreach ($context['rule']['criteria'] as $k => $criteria) { |
|
3875 | + if ($criteria['t'] == 'mid' && !empty($criteria['v'])) |
|
3731 | 3876 | $members[(int) $criteria['v']] = $k; |
3877 | + } |
|
3732 | 3878 | |
3733 | 3879 | if (!empty($members)) |
3734 | 3880 | { |
@@ -3740,19 +3886,20 @@ discard block |
||
3740 | 3886 | 'member_list' => array_keys($members), |
3741 | 3887 | ) |
3742 | 3888 | ); |
3743 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
3744 | - $context['rule']['criteria'][$members[$row['id_member']]]['v'] = $row['member_name']; |
|
3889 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
3890 | + $context['rule']['criteria'][$members[$row['id_member']]]['v'] = $row['member_name']; |
|
3891 | + } |
|
3745 | 3892 | $smcFunc['db_free_result']($request); |
3746 | 3893 | } |
3747 | - } |
|
3748 | - else |
|
3749 | - $context['rule'] = array( |
|
3894 | + } else { |
|
3895 | + $context['rule'] = array( |
|
3750 | 3896 | 'id' => '', |
3751 | 3897 | 'name' => '', |
3752 | 3898 | 'criteria' => array(), |
3753 | 3899 | 'actions' => array(), |
3754 | 3900 | 'logic' => 'and', |
3755 | 3901 | ); |
3902 | + } |
|
3756 | 3903 | } |
3757 | 3904 | // Saving? |
3758 | 3905 | elseif (isset($_GET['save'])) |
@@ -3762,22 +3909,25 @@ discard block |
||
3762 | 3909 | |
3763 | 3910 | // Name is easy! |
3764 | 3911 | $ruleName = $smcFunc['htmlspecialchars'](trim($_POST['rule_name'])); |
3765 | - if (empty($ruleName)) |
|
3766 | - fatal_lang_error('pm_rule_no_name', false); |
|
3912 | + if (empty($ruleName)) { |
|
3913 | + fatal_lang_error('pm_rule_no_name', false); |
|
3914 | + } |
|
3767 | 3915 | |
3768 | 3916 | // Sanity check... |
3769 | - if (empty($_POST['ruletype']) || empty($_POST['acttype'])) |
|
3770 | - fatal_lang_error('pm_rule_no_criteria', false); |
|
3917 | + if (empty($_POST['ruletype']) || empty($_POST['acttype'])) { |
|
3918 | + fatal_lang_error('pm_rule_no_criteria', false); |
|
3919 | + } |
|
3771 | 3920 | |
3772 | 3921 | // Let's do the criteria first - it's also hardest! |
3773 | 3922 | $criteria = array(); |
3774 | 3923 | foreach ($_POST['ruletype'] as $ind => $type) |
3775 | 3924 | { |
3776 | 3925 | // Check everything is here... |
3777 | - if ($type == 'gid' && (!isset($_POST['ruledefgroup'][$ind]) || !isset($context['groups'][$_POST['ruledefgroup'][$ind]]))) |
|
3778 | - continue; |
|
3779 | - elseif ($type != 'bud' && !isset($_POST['ruledef'][$ind])) |
|
3780 | - continue; |
|
3926 | + if ($type == 'gid' && (!isset($_POST['ruledefgroup'][$ind]) || !isset($context['groups'][$_POST['ruledefgroup'][$ind]]))) { |
|
3927 | + continue; |
|
3928 | + } elseif ($type != 'bud' && !isset($_POST['ruledef'][$ind])) { |
|
3929 | + continue; |
|
3930 | + } |
|
3781 | 3931 | |
3782 | 3932 | // Members need to be found. |
3783 | 3933 | if ($type == 'mid') |
@@ -3801,13 +3951,13 @@ discard block |
||
3801 | 3951 | $smcFunc['db_free_result']($request); |
3802 | 3952 | |
3803 | 3953 | $criteria[] = array('t' => 'mid', 'v' => $memID); |
3954 | + } elseif ($type == 'bud') { |
|
3955 | + $criteria[] = array('t' => 'bud', 'v' => 1); |
|
3956 | + } elseif ($type == 'gid') { |
|
3957 | + $criteria[] = array('t' => 'gid', 'v' => (int) $_POST['ruledefgroup'][$ind]); |
|
3958 | + } elseif (in_array($type, array('sub', 'msg')) && trim($_POST['ruledef'][$ind]) != '') { |
|
3959 | + $criteria[] = array('t' => $type, 'v' => $smcFunc['htmlspecialchars'](trim($_POST['ruledef'][$ind]))); |
|
3804 | 3960 | } |
3805 | - elseif ($type == 'bud') |
|
3806 | - $criteria[] = array('t' => 'bud', 'v' => 1); |
|
3807 | - elseif ($type == 'gid') |
|
3808 | - $criteria[] = array('t' => 'gid', 'v' => (int) $_POST['ruledefgroup'][$ind]); |
|
3809 | - elseif (in_array($type, array('sub', 'msg')) && trim($_POST['ruledef'][$ind]) != '') |
|
3810 | - $criteria[] = array('t' => $type, 'v' => $smcFunc['htmlspecialchars'](trim($_POST['ruledef'][$ind]))); |
|
3811 | 3961 | } |
3812 | 3962 | |
3813 | 3963 | // Also do the actions! |
@@ -3817,26 +3967,29 @@ discard block |
||
3817 | 3967 | foreach ($_POST['acttype'] as $ind => $type) |
3818 | 3968 | { |
3819 | 3969 | // Picking a valid label? |
3820 | - if ($type == 'lab' && (!isset($_POST['labdef'][$ind]) || !isset($context['labels'][$_POST['labdef'][$ind]]))) |
|
3821 | - continue; |
|
3970 | + if ($type == 'lab' && (!isset($_POST['labdef'][$ind]) || !isset($context['labels'][$_POST['labdef'][$ind]]))) { |
|
3971 | + continue; |
|
3972 | + } |
|
3822 | 3973 | |
3823 | 3974 | // Record what we're doing. |
3824 | - if ($type == 'del') |
|
3825 | - $doDelete = 1; |
|
3826 | - elseif ($type == 'lab') |
|
3827 | - $actions[] = array('t' => 'lab', 'v' => (int) $_POST['labdef'][$ind]); |
|
3975 | + if ($type == 'del') { |
|
3976 | + $doDelete = 1; |
|
3977 | + } elseif ($type == 'lab') { |
|
3978 | + $actions[] = array('t' => 'lab', 'v' => (int) $_POST['labdef'][$ind]); |
|
3979 | + } |
|
3828 | 3980 | } |
3829 | 3981 | |
3830 | - if (empty($criteria) || (empty($actions) && !$doDelete)) |
|
3831 | - fatal_lang_error('pm_rule_no_criteria', false); |
|
3982 | + if (empty($criteria) || (empty($actions) && !$doDelete)) { |
|
3983 | + fatal_lang_error('pm_rule_no_criteria', false); |
|
3984 | + } |
|
3832 | 3985 | |
3833 | 3986 | // What are we storing? |
3834 | 3987 | $criteria = $smcFunc['json_encode']($criteria); |
3835 | 3988 | $actions = $smcFunc['json_encode']($actions); |
3836 | 3989 | |
3837 | 3990 | // Create the rule? |
3838 | - if (empty($context['rid'])) |
|
3839 | - $smcFunc['db_insert']('', |
|
3991 | + if (empty($context['rid'])) { |
|
3992 | + $smcFunc['db_insert']('', |
|
3840 | 3993 | '{db_prefix}pm_rules', |
3841 | 3994 | array( |
3842 | 3995 | 'id_member' => 'int', 'rule_name' => 'string', 'criteria' => 'string', 'actions' => 'string', |
@@ -3847,8 +4000,8 @@ discard block |
||
3847 | 4000 | ), |
3848 | 4001 | array('id_rule') |
3849 | 4002 | ); |
3850 | - else |
|
3851 | - $smcFunc['db_query']('', ' |
|
4003 | + } else { |
|
4004 | + $smcFunc['db_query']('', ' |
|
3852 | 4005 | UPDATE {db_prefix}pm_rules |
3853 | 4006 | SET rule_name = {string:rule_name}, criteria = {string:criteria}, actions = {string:actions}, |
3854 | 4007 | delete_pm = {int:delete_pm}, is_or = {int:is_or} |
@@ -3864,6 +4017,7 @@ discard block |
||
3864 | 4017 | 'actions' => $actions, |
3865 | 4018 | ) |
3866 | 4019 | ); |
4020 | + } |
|
3867 | 4021 | |
3868 | 4022 | redirectexit('action=pm;sa=manrules'); |
3869 | 4023 | } |
@@ -3872,11 +4026,12 @@ discard block |
||
3872 | 4026 | { |
3873 | 4027 | checkSession(); |
3874 | 4028 | $toDelete = array(); |
3875 | - foreach ($_POST['delrule'] as $k => $v) |
|
3876 | - $toDelete[] = (int) $k; |
|
4029 | + foreach ($_POST['delrule'] as $k => $v) { |
|
4030 | + $toDelete[] = (int) $k; |
|
4031 | + } |
|
3877 | 4032 | |
3878 | - if (!empty($toDelete)) |
|
3879 | - $smcFunc['db_query']('', ' |
|
4033 | + if (!empty($toDelete)) { |
|
4034 | + $smcFunc['db_query']('', ' |
|
3880 | 4035 | DELETE FROM {db_prefix}pm_rules |
3881 | 4036 | WHERE id_rule IN ({array_int:delete_list}) |
3882 | 4037 | AND id_member = {int:current_member}', |
@@ -3885,6 +4040,7 @@ discard block |
||
3885 | 4040 | 'delete_list' => $toDelete, |
3886 | 4041 | ) |
3887 | 4042 | ); |
4043 | + } |
|
3888 | 4044 | |
3889 | 4045 | redirectexit('action=pm;sa=manrules'); |
3890 | 4046 | } |
@@ -3903,8 +4059,9 @@ discard block |
||
3903 | 4059 | loadRules(); |
3904 | 4060 | |
3905 | 4061 | // No rules? |
3906 | - if (empty($context['rules'])) |
|
3907 | - return; |
|
4062 | + if (empty($context['rules'])) { |
|
4063 | + return; |
|
4064 | + } |
|
3908 | 4065 | |
3909 | 4066 | // Just unread ones? |
3910 | 4067 | $ruleQuery = $all_messages ? '' : ' AND pmr.is_new = 1'; |
@@ -3934,8 +4091,9 @@ discard block |
||
3934 | 4091 | // Loop through all the criteria hoping to make a match. |
3935 | 4092 | foreach ($rule['criteria'] as $criterium) |
3936 | 4093 | { |
3937 | - 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)) |
|
3938 | - $match = true; |
|
4094 | + 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)) { |
|
4095 | + $match = true; |
|
4096 | + } |
|
3939 | 4097 | // If we're adding and one criteria don't match then we stop! |
3940 | 4098 | elseif ($rule['logic'] == 'and') |
3941 | 4099 | { |
@@ -3947,17 +4105,18 @@ discard block |
||
3947 | 4105 | // If we have a match the rule must be true - act! |
3948 | 4106 | if ($match) |
3949 | 4107 | { |
3950 | - if ($rule['delete']) |
|
3951 | - $actions['deletes'][] = $row['id_pm']; |
|
3952 | - else |
|
4108 | + if ($rule['delete']) { |
|
4109 | + $actions['deletes'][] = $row['id_pm']; |
|
4110 | + } else |
|
3953 | 4111 | { |
3954 | 4112 | foreach ($rule['actions'] as $ruleAction) |
3955 | 4113 | { |
3956 | 4114 | if ($ruleAction['t'] == 'lab') |
3957 | 4115 | { |
3958 | 4116 | // Get a basic pot started! |
3959 | - if (!isset($actions['labels'][$row['id_pm']])) |
|
3960 | - $actions['labels'][$row['id_pm']] = array(); |
|
4117 | + if (!isset($actions['labels'][$row['id_pm']])) { |
|
4118 | + $actions['labels'][$row['id_pm']] = array(); |
|
4119 | + } |
|
3961 | 4120 | $actions['labels'][$row['id_pm']][] = $ruleAction['v']; |
3962 | 4121 | } |
3963 | 4122 | } |
@@ -3968,8 +4127,9 @@ discard block |
||
3968 | 4127 | $smcFunc['db_free_result']($request); |
3969 | 4128 | |
3970 | 4129 | // Deletes are easy! |
3971 | - if (!empty($actions['deletes'])) |
|
3972 | - deleteMessages($actions['deletes']); |
|
4130 | + if (!empty($actions['deletes'])) { |
|
4131 | + deleteMessages($actions['deletes']); |
|
4132 | + } |
|
3973 | 4133 | |
3974 | 4134 | // Relabel? |
3975 | 4135 | if (!empty($actions['labels'])) |
@@ -3996,8 +4156,7 @@ discard block |
||
3996 | 4156 | 'current_member' => $user_info['id'], |
3997 | 4157 | ) |
3998 | 4158 | ); |
3999 | - } |
|
4000 | - else |
|
4159 | + } else |
|
4001 | 4160 | { |
4002 | 4161 | $realLabels[] = $label['id']; |
4003 | 4162 | } |
@@ -4006,8 +4165,9 @@ discard block |
||
4006 | 4165 | |
4007 | 4166 | $inserts = array(); |
4008 | 4167 | // Now we insert the label info |
4009 | - foreach ($realLabels as $a_label) |
|
4010 | - $inserts[] = array($pm, $a_label); |
|
4168 | + foreach ($realLabels as $a_label) { |
|
4169 | + $inserts[] = array($pm, $a_label); |
|
4170 | + } |
|
4011 | 4171 | |
4012 | 4172 | $smcFunc['db_insert']('ignore', |
4013 | 4173 | '{db_prefix}pm_labeled_messages', |
@@ -4028,8 +4188,9 @@ discard block |
||
4028 | 4188 | { |
4029 | 4189 | global $user_info, $context, $smcFunc; |
4030 | 4190 | |
4031 | - if (isset($context['rules']) && !$reload) |
|
4032 | - return; |
|
4191 | + if (isset($context['rules']) && !$reload) { |
|
4192 | + return; |
|
4193 | + } |
|
4033 | 4194 | |
4034 | 4195 | $request = $smcFunc['db_query']('', ' |
4035 | 4196 | SELECT |
@@ -4053,8 +4214,9 @@ discard block |
||
4053 | 4214 | 'logic' => $row['is_or'] ? 'or' : 'and', |
4054 | 4215 | ); |
4055 | 4216 | |
4056 | - if ($row['delete_pm']) |
|
4057 | - $context['rules'][$row['id_rule']]['actions'][] = array('t' => 'del', 'v' => 1); |
|
4217 | + if ($row['delete_pm']) { |
|
4218 | + $context['rules'][$row['id_rule']]['actions'][] = array('t' => 'del', 'v' => 1); |
|
4219 | + } |
|
4058 | 4220 | } |
4059 | 4221 | $smcFunc['db_free_result']($request); |
4060 | 4222 | } |
@@ -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 | * Gets a single theme's info. |
@@ -27,8 +28,9 @@ discard block |
||
27 | 28 | global $smcFunc, $modSettings; |
28 | 29 | |
29 | 30 | // No data, no fun! |
30 | - if (empty($id)) |
|
31 | - return false; |
|
31 | + if (empty($id)) { |
|
32 | + return false; |
|
33 | + } |
|
32 | 34 | |
33 | 35 | // Make sure $id is an int. |
34 | 36 | $id = (int) $id; |
@@ -171,8 +173,9 @@ discard block |
||
171 | 173 | global $smcFunc, $sourcedir, $forum_version, $txt, $scripturl, $context; |
172 | 174 | global $explicit_images; |
173 | 175 | |
174 | - if (empty($path)) |
|
175 | - return false; |
|
176 | + if (empty($path)) { |
|
177 | + return false; |
|
178 | + } |
|
176 | 179 | |
177 | 180 | $xml_data = array(); |
178 | 181 | $explicit_images = false; |
@@ -229,9 +232,10 @@ discard block |
||
229 | 232 | ); |
230 | 233 | |
231 | 234 | // Assign the values to be stored. |
232 | - foreach ($xml_elements as $var => $name) |
|
233 | - if (!empty($theme_info_xml[$name])) |
|
235 | + foreach ($xml_elements as $var => $name) { |
|
236 | + if (!empty($theme_info_xml[$name])) |
|
234 | 237 | $xml_data[$var] = $theme_info_xml[$name]; |
238 | + } |
|
235 | 239 | |
236 | 240 | // Add the supported versions. |
237 | 241 | $xml_data['install_for'] = $install_versions; |
@@ -243,8 +247,9 @@ discard block |
||
243 | 247 | $explicit_images = true; |
244 | 248 | } |
245 | 249 | |
246 | - if (!empty($theme_info_xml['extra'])) |
|
247 | - $xml_data += $smcFunc['json_decode']($theme_info_xml['extra'], true); |
|
250 | + if (!empty($theme_info_xml['extra'])) { |
|
251 | + $xml_data += $smcFunc['json_decode']($theme_info_xml['extra'], true); |
|
252 | + } |
|
248 | 253 | |
249 | 254 | return $xml_data; |
250 | 255 | } |
@@ -262,12 +267,14 @@ discard block |
||
262 | 267 | global $settings, $explicit_images; |
263 | 268 | |
264 | 269 | // External use? no problem! |
265 | - if ($to_install) |
|
266 | - $context['to_install'] = $to_install; |
|
270 | + if ($to_install) { |
|
271 | + $context['to_install'] = $to_install; |
|
272 | + } |
|
267 | 273 | |
268 | 274 | // One last check. |
269 | - if (empty($context['to_install']['theme_dir']) || basename($context['to_install']['theme_dir']) == 'Themes') |
|
270 | - fatal_lang_error('theme_install_invalid_dir', false); |
|
275 | + if (empty($context['to_install']['theme_dir']) || basename($context['to_install']['theme_dir']) == 'Themes') { |
|
276 | + fatal_lang_error('theme_install_invalid_dir', false); |
|
277 | + } |
|
271 | 278 | |
272 | 279 | // OK, is this a newer version of an already installed theme? |
273 | 280 | if (!empty($context['to_install']['version'])) |
@@ -291,8 +298,8 @@ discard block |
||
291 | 298 | $smcFunc['db_free_result']($request); |
292 | 299 | |
293 | 300 | // Got something, lets figure it out what to do next. |
294 | - if (!empty($to_update) && !empty($to_update['version'])) |
|
295 | - switch (compareVersions($context['to_install']['version'], $to_update['version'])) |
|
301 | + if (!empty($to_update) && !empty($to_update['version'])) { |
|
302 | + switch (compareVersions($context['to_install']['version'], $to_update['version'])) |
|
296 | 303 | { |
297 | 304 | case 1: // Got a newer version, update the old entry. |
298 | 305 | $smcFunc['db_query']('', ' |
@@ -306,6 +313,7 @@ discard block |
||
306 | 313 | 'id_theme' => $to_update['id_theme'], |
307 | 314 | ) |
308 | 315 | ); |
316 | + } |
|
309 | 317 | |
310 | 318 | // Done with the update, tell the user about it. |
311 | 319 | $context['to_install']['updated'] = true; |
@@ -371,13 +379,15 @@ discard block |
||
371 | 379 | $context['to_install']['base_theme_url'] = $temp['theme_url']; |
372 | 380 | $context['to_install']['base_theme_dir'] = $temp['theme_dir']; |
373 | 381 | |
374 | - if (empty($explicit_images) && !empty($context['to_install']['base_theme_url'])) |
|
375 | - $context['to_install']['theme_url'] = $context['to_install']['base_theme_url']; |
|
382 | + if (empty($explicit_images) && !empty($context['to_install']['base_theme_url'])) { |
|
383 | + $context['to_install']['theme_url'] = $context['to_install']['base_theme_url']; |
|
384 | + } |
|
376 | 385 | } |
377 | 386 | |
378 | 387 | // Nope, sorry, couldn't find any theme already installed. |
379 | - else |
|
380 | - fatal_lang_error('package_get_error_theme_no_based_on_found', false, $context['to_install']['based_on']); |
|
388 | + else { |
|
389 | + fatal_lang_error('package_get_error_theme_no_based_on_found', false, $context['to_install']['based_on']); |
|
390 | + } |
|
381 | 391 | } |
382 | 392 | |
383 | 393 | unset($context['to_install']['based_on']); |
@@ -400,16 +410,18 @@ discard block |
||
400 | 410 | call_integration_hook('integrate_theme_install', array(&$context['to_install'], $id_theme)); |
401 | 411 | |
402 | 412 | $inserts = array(); |
403 | - foreach ($context['to_install'] as $var => $val) |
|
404 | - $inserts[] = array($id_theme, $var, $val); |
|
413 | + foreach ($context['to_install'] as $var => $val) { |
|
414 | + $inserts[] = array($id_theme, $var, $val); |
|
415 | + } |
|
405 | 416 | |
406 | - if (!empty($inserts)) |
|
407 | - $smcFunc['db_insert']('insert', |
|
417 | + if (!empty($inserts)) { |
|
418 | + $smcFunc['db_insert']('insert', |
|
408 | 419 | '{db_prefix}themes', |
409 | 420 | array('id_theme' => 'int', 'variable' => 'string-255', 'value' => 'string-65534'), |
410 | 421 | $inserts, |
411 | 422 | array('id_theme', 'variable') |
412 | 423 | ); |
424 | + } |
|
413 | 425 | |
414 | 426 | // Update the known and enable Theme's settings. |
415 | 427 | $known = strtr($modSettings['knownThemes'] . ',' . $id_theme, array(',,' => ',')); |
@@ -428,21 +440,24 @@ discard block |
||
428 | 440 | */ |
429 | 441 | function remove_dir($path) |
430 | 442 | { |
431 | - if (empty($path)) |
|
432 | - return false; |
|
443 | + if (empty($path)) { |
|
444 | + return false; |
|
445 | + } |
|
433 | 446 | |
434 | 447 | if (is_dir($path)) |
435 | 448 | { |
436 | 449 | $objects = scandir($path); |
437 | 450 | |
438 | - foreach ($objects as $object) |
|
439 | - if ($object != '.' && $object != '..') |
|
451 | + foreach ($objects as $object) { |
|
452 | + if ($object != '.' && $object != '..') |
|
440 | 453 | { |
441 | 454 | if (filetype($path . '/' . $object) == 'dir') |
442 | 455 | remove_dir($path . '/' . $object); |
456 | + } |
|
443 | 457 | |
444 | - else |
|
445 | - unlink($path . '/' . $object); |
|
458 | + else { |
|
459 | + unlink($path . '/' . $object); |
|
460 | + } |
|
446 | 461 | } |
447 | 462 | } |
448 | 463 | |
@@ -461,8 +476,9 @@ discard block |
||
461 | 476 | global $smcFunc, $modSettings; |
462 | 477 | |
463 | 478 | // Can't delete the default theme, sorry! |
464 | - if (empty($themeID) || $themeID == 1) |
|
465 | - return false; |
|
479 | + if (empty($themeID) || $themeID == 1) { |
|
480 | + return false; |
|
481 | + } |
|
466 | 482 | |
467 | 483 | $known = explode(',', $modSettings['knownThemes']); |
468 | 484 | $enable = explode(',', $modSettings['enableThemes']); |
@@ -512,8 +528,9 @@ discard block |
||
512 | 528 | updateSettings(array('enableThemes' => $enable, 'knownThemes' => $known)); |
513 | 529 | |
514 | 530 | // Fix it if the theme was the overall default theme. |
515 | - if ($modSettings['theme_guests'] == $themeID) |
|
516 | - updateSettings(array('theme_guests' => '1')); |
|
531 | + if ($modSettings['theme_guests'] == $themeID) { |
|
532 | + updateSettings(array('theme_guests' => '1')); |
|
533 | + } |
|
517 | 534 | |
518 | 535 | return true; |
519 | 536 | } |
@@ -530,13 +547,15 @@ discard block |
||
530 | 547 | global $scripturl, $txt, $context; |
531 | 548 | |
532 | 549 | // Is it even a directory? |
533 | - if (!is_dir($path)) |
|
534 | - fatal_lang_error('error_invalid_dir', 'critical'); |
|
550 | + if (!is_dir($path)) { |
|
551 | + fatal_lang_error('error_invalid_dir', 'critical'); |
|
552 | + } |
|
535 | 553 | |
536 | 554 | $dir = dir($path); |
537 | 555 | $entries = array(); |
538 | - while ($entry = $dir->read()) |
|
539 | - $entries[] = $entry; |
|
556 | + while ($entry = $dir->read()) { |
|
557 | + $entries[] = $entry; |
|
558 | + } |
|
540 | 559 | $dir->close(); |
541 | 560 | |
542 | 561 | natcasesort($entries); |
@@ -547,11 +566,12 @@ discard block |
||
547 | 566 | foreach ($entries as $entry) |
548 | 567 | { |
549 | 568 | // Skip all dot files, including .htaccess. |
550 | - if (substr($entry, 0, 1) == '.' || $entry == 'CVS') |
|
551 | - continue; |
|
569 | + if (substr($entry, 0, 1) == '.' || $entry == 'CVS') { |
|
570 | + continue; |
|
571 | + } |
|
552 | 572 | |
553 | - if (is_dir($path . '/' . $entry)) |
|
554 | - $listing1[] = array( |
|
573 | + if (is_dir($path . '/' . $entry)) { |
|
574 | + $listing1[] = array( |
|
555 | 575 | 'filename' => $entry, |
556 | 576 | 'is_writable' => is_writable($path . '/' . $entry), |
557 | 577 | 'is_directory' => true, |
@@ -561,13 +581,14 @@ discard block |
||
561 | 581 | 'href' => $scripturl . '?action=admin;area=theme;th=' . $_GET['th'] . ';' . $context['session_var'] . '=' . $context['session_id'] . ';sa=edit;directory=' . $relative . $entry, |
562 | 582 | 'size' => '', |
563 | 583 | ); |
564 | - else |
|
584 | + } else |
|
565 | 585 | { |
566 | 586 | $size = filesize($path . '/' . $entry); |
567 | - if ($size > 2048 || $size == 1024) |
|
568 | - $size = comma_format($size / 1024) . ' ' . $txt['themeadmin_edit_kilobytes']; |
|
569 | - else |
|
570 | - $size = comma_format($size) . ' ' . $txt['themeadmin_edit_bytes']; |
|
587 | + if ($size > 2048 || $size == 1024) { |
|
588 | + $size = comma_format($size / 1024) . ' ' . $txt['themeadmin_edit_kilobytes']; |
|
589 | + } else { |
|
590 | + $size = comma_format($size) . ' ' . $txt['themeadmin_edit_bytes']; |
|
591 | + } |
|
571 | 592 | |
572 | 593 | $listing2[] = array( |
573 | 594 | 'filename' => $entry, |
@@ -63,26 +63,31 @@ discard block |
||
63 | 63 | */ |
64 | 64 | public function checkRequest() |
65 | 65 | { |
66 | - if (!$this->enabled) |
|
67 | - return false; |
|
66 | + if (!$this->enabled) { |
|
67 | + return false; |
|
68 | + } |
|
68 | 69 | |
69 | 70 | // Try to create the image cache directory if it doesn't exist |
70 | - if (!file_exists($this->cache)) |
|
71 | - if (!mkdir($this->cache) || !copy(dirname($this->cache) . '/index.php', $this->cache . '/index.php')) |
|
71 | + if (!file_exists($this->cache)) { |
|
72 | + if (!mkdir($this->cache) || !copy(dirname($this->cache) . '/index.php', $this->cache . '/index.php')) |
|
72 | 73 | return false; |
74 | + } |
|
73 | 75 | |
74 | - if (empty($_GET['hash']) || empty($_GET['request'])) |
|
75 | - return false; |
|
76 | + if (empty($_GET['hash']) || empty($_GET['request'])) { |
|
77 | + return false; |
|
78 | + } |
|
76 | 79 | |
77 | 80 | $hash = $_GET['hash']; |
78 | 81 | $request = $_GET['request']; |
79 | 82 | |
80 | - if (md5($request . $this->secret) != $hash) |
|
81 | - return false; |
|
83 | + if (md5($request . $this->secret) != $hash) { |
|
84 | + return false; |
|
85 | + } |
|
82 | 86 | |
83 | 87 | // Attempt to cache the request if it doesn't exist |
84 | - if (!$this->isCached($request)) |
|
85 | - return $this->cacheImage($request); |
|
88 | + if (!$this->isCached($request)) { |
|
89 | + return $this->cacheImage($request); |
|
90 | + } |
|
86 | 91 | |
87 | 92 | return true; |
88 | 93 | } |
@@ -111,19 +116,22 @@ discard block |
||
111 | 116 | if (!$cached || time() - $cached['time'] > (5 * 86400)) |
112 | 117 | { |
113 | 118 | @unlink($cached_file); |
114 | - if ($this->checkRequest()) |
|
115 | - $this->serve(); |
|
119 | + if ($this->checkRequest()) { |
|
120 | + $this->serve(); |
|
121 | + } |
|
116 | 122 | redirectexit($request); |
117 | 123 | } |
118 | 124 | |
119 | 125 | // Right, image not cached? Simply redirect, then. |
120 | - if (!$response) |
|
121 | - redirectexit($request); |
|
126 | + if (!$response) { |
|
127 | + redirectexit($request); |
|
128 | + } |
|
122 | 129 | |
123 | 130 | // Make sure we're serving an image |
124 | 131 | $contentParts = explode('/', !empty($cached['content_type']) ? $cached['content_type'] : ''); |
125 | - if ($contentParts[0] != 'image') |
|
126 | - exit; |
|
132 | + if ($contentParts[0] != 'image') { |
|
133 | + exit; |
|
134 | + } |
|
127 | 135 | |
128 | 136 | header('Content-type: ' . $cached['content_type']); |
129 | 137 | header('Content-length: ' . $cached['size']); |
@@ -170,8 +178,9 @@ discard block |
||
170 | 178 | $responseCode = $request->result('code'); |
171 | 179 | $response = $request->result(); |
172 | 180 | |
173 | - if (empty($response)) |
|
174 | - return false; |
|
181 | + if (empty($response)) { |
|
182 | + return false; |
|
183 | + } |
|
175 | 184 | |
176 | 185 | if ($responseCode != 200) { |
177 | 186 | return false; |
@@ -181,12 +190,14 @@ discard block |
||
181 | 190 | |
182 | 191 | // Make sure the url is returning an image |
183 | 192 | $contentParts = explode('/', !empty($headers['content-type']) ? $headers['content-type'] : ''); |
184 | - if ($contentParts[0] != 'image') |
|
185 | - return false; |
|
193 | + if ($contentParts[0] != 'image') { |
|
194 | + return false; |
|
195 | + } |
|
186 | 196 | |
187 | 197 | // Validate the filesize |
188 | - if ($response['size'] > ($this->maxSize * 1024)) |
|
189 | - return false; |
|
198 | + if ($response['size'] > ($this->maxSize * 1024)) { |
|
199 | + return false; |
|
200 | + } |
|
190 | 201 | |
191 | 202 | return file_put_contents($dest, json_encode(array( |
192 | 203 | 'content_type' => $headers['content-type'], |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * This file contains helper functions for upgrade.php |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF_VERSION')) |
|
16 | +if (!defined('SMF_VERSION')) { |
|
17 | 17 | die('No direct access!'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * Clean the cache using the SMF 2.1 CacheAPI. |
@@ -45,8 +46,9 @@ discard block |
||
45 | 46 | global $smcFunc; |
46 | 47 | static $member_groups = array(); |
47 | 48 | |
48 | - if (!empty($member_groups)) |
|
49 | - return $member_groups; |
|
49 | + if (!empty($member_groups)) { |
|
50 | + return $member_groups; |
|
51 | + } |
|
50 | 52 | |
51 | 53 | $request = $smcFunc['db_query']('', ' |
52 | 54 | SELECT group_name, id_group |
@@ -71,8 +73,9 @@ discard block |
||
71 | 73 | ) |
72 | 74 | ); |
73 | 75 | } |
74 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
75 | - $member_groups[trim($row[0])] = $row[1]; |
|
76 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
77 | + $member_groups[trim($row[0])] = $row[1]; |
|
78 | + } |
|
76 | 79 | $smcFunc['db_free_result']($request); |
77 | 80 | |
78 | 81 | return $member_groups; |
@@ -88,8 +91,9 @@ discard block |
||
88 | 91 | { |
89 | 92 | global $upcontext, $boarddir, $sourcedir; |
90 | 93 | |
91 | - if (empty($files)) |
|
92 | - return true; |
|
94 | + if (empty($files)) { |
|
95 | + return true; |
|
96 | + } |
|
93 | 97 | |
94 | 98 | $failure = false; |
95 | 99 | // On linux, it's easy - just use is_writable! |
@@ -100,22 +104,25 @@ discard block |
||
100 | 104 | foreach ($files as $k => $file) |
101 | 105 | { |
102 | 106 | // Some files won't exist, try to address up front |
103 | - if (!file_exists($file)) |
|
104 | - @touch($file); |
|
107 | + if (!file_exists($file)) { |
|
108 | + @touch($file); |
|
109 | + } |
|
105 | 110 | // NOW do the writable check... |
106 | 111 | if (!is_writable($file)) |
107 | 112 | { |
108 | 113 | @chmod($file, 0755); |
109 | 114 | |
110 | 115 | // Well, 755 hopefully worked... if not, try 777. |
111 | - if (!is_writable($file) && !@chmod($file, 0777)) |
|
112 | - $failure = true; |
|
116 | + if (!is_writable($file) && !@chmod($file, 0777)) { |
|
117 | + $failure = true; |
|
118 | + } |
|
113 | 119 | // Otherwise remove it as it's good! |
114 | - else |
|
115 | - unset($files[$k]); |
|
120 | + else { |
|
121 | + unset($files[$k]); |
|
122 | + } |
|
123 | + } else { |
|
124 | + unset($files[$k]); |
|
116 | 125 | } |
117 | - else |
|
118 | - unset($files[$k]); |
|
119 | 126 | } |
120 | 127 | } |
121 | 128 | // Windows is trickier. Let's try opening for r+... |
@@ -126,30 +133,35 @@ discard block |
||
126 | 133 | foreach ($files as $k => $file) |
127 | 134 | { |
128 | 135 | // Folders can't be opened for write... but the index.php in them can ;). |
129 | - if (is_dir($file)) |
|
130 | - $file .= '/index.php'; |
|
136 | + if (is_dir($file)) { |
|
137 | + $file .= '/index.php'; |
|
138 | + } |
|
131 | 139 | |
132 | 140 | // Funny enough, chmod actually does do something on windows - it removes the read only attribute. |
133 | 141 | @chmod($file, 0777); |
134 | 142 | $fp = @fopen($file, 'r+'); |
135 | 143 | |
136 | 144 | // Hmm, okay, try just for write in that case... |
137 | - if (!$fp) |
|
138 | - $fp = @fopen($file, 'w'); |
|
145 | + if (!$fp) { |
|
146 | + $fp = @fopen($file, 'w'); |
|
147 | + } |
|
139 | 148 | |
140 | - if (!$fp) |
|
141 | - $failure = true; |
|
142 | - else |
|
143 | - unset($files[$k]); |
|
149 | + if (!$fp) { |
|
150 | + $failure = true; |
|
151 | + } else { |
|
152 | + unset($files[$k]); |
|
153 | + } |
|
144 | 154 | @fclose($fp); |
145 | 155 | } |
146 | 156 | } |
147 | 157 | |
148 | - if (empty($files)) |
|
149 | - return true; |
|
158 | + if (empty($files)) { |
|
159 | + return true; |
|
160 | + } |
|
150 | 161 | |
151 | - if (!isset($_SERVER)) |
|
152 | - return !$failure; |
|
162 | + if (!isset($_SERVER)) { |
|
163 | + return !$failure; |
|
164 | + } |
|
153 | 165 | |
154 | 166 | // What still needs to be done? |
155 | 167 | $upcontext['chmod']['files'] = $files; |
@@ -201,36 +213,40 @@ discard block |
||
201 | 213 | |
202 | 214 | if (!isset($ftp) || $ftp->error !== false) |
203 | 215 | { |
204 | - if (!isset($ftp)) |
|
205 | - $ftp = new ftp_connection(null); |
|
216 | + if (!isset($ftp)) { |
|
217 | + $ftp = new ftp_connection(null); |
|
218 | + } |
|
206 | 219 | // Save the error so we can mess with listing... |
207 | - elseif ($ftp->error !== false && !isset($upcontext['chmod']['ftp_error'])) |
|
208 | - $upcontext['chmod']['ftp_error'] = $ftp->last_message === null ? '' : $ftp->last_message; |
|
220 | + elseif ($ftp->error !== false && !isset($upcontext['chmod']['ftp_error'])) { |
|
221 | + $upcontext['chmod']['ftp_error'] = $ftp->last_message === null ? '' : $ftp->last_message; |
|
222 | + } |
|
209 | 223 | |
210 | 224 | list ($username, $detect_path, $found_path) = $ftp->detect_path(dirname(__FILE__)); |
211 | 225 | |
212 | - if ($found_path || !isset($upcontext['chmod']['path'])) |
|
213 | - $upcontext['chmod']['path'] = $detect_path; |
|
226 | + if ($found_path || !isset($upcontext['chmod']['path'])) { |
|
227 | + $upcontext['chmod']['path'] = $detect_path; |
|
228 | + } |
|
214 | 229 | |
215 | - if (!isset($upcontext['chmod']['username'])) |
|
216 | - $upcontext['chmod']['username'] = $username; |
|
230 | + if (!isset($upcontext['chmod']['username'])) { |
|
231 | + $upcontext['chmod']['username'] = $username; |
|
232 | + } |
|
217 | 233 | |
218 | 234 | // Don't forget the login token. |
219 | 235 | $upcontext += createToken('login'); |
220 | 236 | |
221 | 237 | return false; |
222 | - } |
|
223 | - else |
|
238 | + } else |
|
224 | 239 | { |
225 | 240 | // We want to do a relative path for FTP. |
226 | 241 | if (!in_array($upcontext['chmod']['path'], array('', '/'))) |
227 | 242 | { |
228 | 243 | $ftp_root = strtr($boarddir, array($upcontext['chmod']['path'] => '')); |
229 | - if (substr($ftp_root, -1) == '/' && ($upcontext['chmod']['path'] == '' || $upcontext['chmod']['path'][0] === '/')) |
|
230 | - $ftp_root = substr($ftp_root, 0, -1); |
|
244 | + if (substr($ftp_root, -1) == '/' && ($upcontext['chmod']['path'] == '' || $upcontext['chmod']['path'][0] === '/')) { |
|
245 | + $ftp_root = substr($ftp_root, 0, -1); |
|
246 | + } |
|
247 | + } else { |
|
248 | + $ftp_root = $boarddir; |
|
231 | 249 | } |
232 | - else |
|
233 | - $ftp_root = $boarddir; |
|
234 | 250 | |
235 | 251 | // Save the info for next time! |
236 | 252 | $_SESSION['installer_temp_ftp'] = array( |
@@ -244,10 +260,12 @@ discard block |
||
244 | 260 | |
245 | 261 | foreach ($files as $k => $file) |
246 | 262 | { |
247 | - if (!is_writable($file)) |
|
248 | - $ftp->chmod($file, 0755); |
|
249 | - if (!is_writable($file)) |
|
250 | - $ftp->chmod($file, 0777); |
|
263 | + if (!is_writable($file)) { |
|
264 | + $ftp->chmod($file, 0755); |
|
265 | + } |
|
266 | + if (!is_writable($file)) { |
|
267 | + $ftp->chmod($file, 0777); |
|
268 | + } |
|
251 | 269 | |
252 | 270 | // Assuming that didn't work calculate the path without the boarddir. |
253 | 271 | if (!is_writable($file)) |
@@ -256,19 +274,23 @@ discard block |
||
256 | 274 | { |
257 | 275 | $ftp_file = strtr($file, array($_SESSION['installer_temp_ftp']['root'] => '')); |
258 | 276 | $ftp->chmod($ftp_file, 0755); |
259 | - if (!is_writable($file)) |
|
260 | - $ftp->chmod($ftp_file, 0777); |
|
277 | + if (!is_writable($file)) { |
|
278 | + $ftp->chmod($ftp_file, 0777); |
|
279 | + } |
|
261 | 280 | // Sometimes an extra slash can help... |
262 | 281 | $ftp_file = '/' . $ftp_file; |
263 | - if (!is_writable($file)) |
|
264 | - $ftp->chmod($ftp_file, 0755); |
|
265 | - if (!is_writable($file)) |
|
266 | - $ftp->chmod($ftp_file, 0777); |
|
282 | + if (!is_writable($file)) { |
|
283 | + $ftp->chmod($ftp_file, 0755); |
|
284 | + } |
|
285 | + if (!is_writable($file)) { |
|
286 | + $ftp->chmod($ftp_file, 0777); |
|
287 | + } |
|
267 | 288 | } |
268 | 289 | } |
269 | 290 | |
270 | - if (is_writable($file)) |
|
271 | - unset($files[$k]); |
|
291 | + if (is_writable($file)) { |
|
292 | + unset($files[$k]); |
|
293 | + } |
|
272 | 294 | } |
273 | 295 | |
274 | 296 | $ftp->close(); |
@@ -278,8 +300,9 @@ discard block |
||
278 | 300 | // What remains? |
279 | 301 | $upcontext['chmod']['files'] = $files; |
280 | 302 | |
281 | - if (empty($files)) |
|
282 | - return true; |
|
303 | + if (empty($files)) { |
|
304 | + return true; |
|
305 | + } |
|
283 | 306 | |
284 | 307 | return false; |
285 | 308 | } |
@@ -294,12 +317,14 @@ discard block |
||
294 | 317 | { |
295 | 318 | |
296 | 319 | // Some files won't exist, try to address up front |
297 | - if (!file_exists($file)) |
|
298 | - @touch($file); |
|
320 | + if (!file_exists($file)) { |
|
321 | + @touch($file); |
|
322 | + } |
|
299 | 323 | |
300 | 324 | // NOW do the writable check... |
301 | - if (is_writable($file)) |
|
302 | - return true; |
|
325 | + if (is_writable($file)) { |
|
326 | + return true; |
|
327 | + } |
|
303 | 328 | |
304 | 329 | @chmod($file, 0755); |
305 | 330 | |
@@ -309,10 +334,11 @@ discard block |
||
309 | 334 | foreach ($chmod_values as $val) |
310 | 335 | { |
311 | 336 | // If it's writable, break out of the loop |
312 | - if (is_writable($file)) |
|
313 | - break; |
|
314 | - else |
|
315 | - @chmod($file, $val); |
|
337 | + if (is_writable($file)) { |
|
338 | + break; |
|
339 | + } else { |
|
340 | + @chmod($file, $val); |
|
341 | + } |
|
316 | 342 | } |
317 | 343 | |
318 | 344 | return is_writable($file); |
@@ -339,14 +365,16 @@ discard block |
||
339 | 365 | { |
340 | 366 | static $fp = null; |
341 | 367 | |
342 | - if ($fp === null) |
|
343 | - $fp = fopen('php://stderr', 'wb'); |
|
368 | + if ($fp === null) { |
|
369 | + $fp = fopen('php://stderr', 'wb'); |
|
370 | + } |
|
344 | 371 | |
345 | 372 | fwrite($fp, $message . "\n"); |
346 | 373 | |
347 | - if ($fatal) |
|
348 | - exit; |
|
349 | -} |
|
374 | + if ($fatal) { |
|
375 | + exit; |
|
376 | + } |
|
377 | + } |
|
350 | 378 | |
351 | 379 | /** |
352 | 380 | * Throws a graphical error message. |
@@ -41,37 +41,43 @@ discard block |
||
41 | 41 | define('TIME_START', microtime(true)); |
42 | 42 | |
43 | 43 | // Just being safe... |
44 | -foreach (array('db_character_set', 'cachedir') as $variable) |
|
44 | +foreach (array('db_character_set', 'cachedir') as $variable) { |
|
45 | 45 | if (isset($GLOBALS[$variable])) |
46 | 46 | unset($GLOBALS[$variable]); |
47 | +} |
|
47 | 48 | |
48 | 49 | // Get the forum's settings for database and file paths. |
49 | 50 | require_once(dirname(__FILE__) . '/Settings.php'); |
50 | 51 | |
51 | 52 | // Make absolutely sure the cache directory is defined. |
52 | -if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir . '/cache')) |
|
53 | +if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir . '/cache')) { |
|
53 | 54 | $cachedir = $boarddir . '/cache'; |
55 | +} |
|
54 | 56 | |
55 | 57 | // Don't do john didley if the forum's been shut down competely. |
56 | -if ($maintenance == 2) |
|
58 | +if ($maintenance == 2) { |
|
57 | 59 | die($mmessage); |
60 | +} |
|
58 | 61 | |
59 | 62 | // Fix for using the current directory as a path. |
60 | -if (substr($sourcedir, 0, 1) == '.' && substr($sourcedir, 1, 1) != '.') |
|
63 | +if (substr($sourcedir, 0, 1) == '.' && substr($sourcedir, 1, 1) != '.') { |
|
61 | 64 | $sourcedir = dirname(__FILE__) . substr($sourcedir, 1); |
65 | +} |
|
62 | 66 | |
63 | 67 | // Have we already turned this off? If so, exist gracefully. |
64 | -if (file_exists($cachedir . '/cron.lock')) |
|
68 | +if (file_exists($cachedir . '/cron.lock')) { |
|
65 | 69 | obExit_cron(); |
70 | +} |
|
66 | 71 | |
67 | 72 | // Before we go any further, if this is not a CLI request, we need to do some checking. |
68 | 73 | if (!FROM_CLI) |
69 | 74 | { |
70 | 75 | // We will clean up $_GET shortly. But we want to this ASAP. |
71 | 76 | $ts = isset($_GET['ts']) ? (int) $_GET['ts'] : 0; |
72 | - if ($ts <= 0 || $ts % 15 != 0 || time() - $ts < 0 || time() - $ts > 20) |
|
73 | - obExit_cron(); |
|
74 | -} |
|
77 | + if ($ts <= 0 || $ts % 15 != 0 || time() - $ts < 0 || time() - $ts > 20) { |
|
78 | + obExit_cron(); |
|
79 | + } |
|
80 | + } |
|
75 | 81 | |
76 | 82 | // Load the most important includes. In general, a background should be loading its own dependencies. |
77 | 83 | require_once($sourcedir . '/Errors.php'); |
@@ -123,8 +129,9 @@ discard block |
||
123 | 129 | global $smcFunc; |
124 | 130 | |
125 | 131 | // Check we haven't run over our time limit. |
126 | - if (microtime(true) - TIME_START > MAX_CRON_TIME) |
|
127 | - return false; |
|
132 | + if (microtime(true) - TIME_START > MAX_CRON_TIME) { |
|
133 | + return false; |
|
134 | + } |
|
128 | 135 | |
129 | 136 | // Try to find a task. Specifically, try to find one that hasn't been claimed previously, or failing that, |
130 | 137 | // a task that was claimed but failed for whatever reason and failed long enough ago. We should not care |
@@ -159,14 +166,12 @@ discard block |
||
159 | 166 | // Update the time and go back. |
160 | 167 | $row['claimed_time'] = time(); |
161 | 168 | return $row; |
162 | - } |
|
163 | - else |
|
169 | + } else |
|
164 | 170 | { |
165 | 171 | // Uh oh, we just missed it. Try to claim another one, and let it fall through if there aren't any. |
166 | 172 | return fetch_task(); |
167 | 173 | } |
168 | - } |
|
169 | - else |
|
174 | + } else |
|
170 | 175 | { |
171 | 176 | // No dice. Clean up and go home. |
172 | 177 | $smcFunc['db_free_result']($request); |
@@ -187,8 +192,9 @@ discard block |
||
187 | 192 | if (!empty($task_details['task_file'])) |
188 | 193 | { |
189 | 194 | $include = strtr(trim($task_details['task_file']), array('$boarddir' => $boarddir, '$sourcedir' => $sourcedir)); |
190 | - if (file_exists($include)) |
|
191 | - require_once($include); |
|
195 | + if (file_exists($include)) { |
|
196 | + require_once($include); |
|
197 | + } |
|
192 | 198 | } |
193 | 199 | |
194 | 200 | if (empty($task_details['task_class'])) |
@@ -204,8 +210,7 @@ discard block |
||
204 | 210 | $details = empty($task_details['task_data']) ? array() : $smcFunc['json_decode']($task_details['task_data'], true); |
205 | 211 | $bgtask = new $task_details['task_class']($details); |
206 | 212 | return $bgtask->execute(); |
207 | - } |
|
208 | - else |
|
213 | + } else |
|
209 | 214 | { |
210 | 215 | log_error('Invalid background task specified: (class: ' . $task_details['task_class'] . ', ' . (empty($task_details['task_file']) ? ' no file' : ' to load ' . $task_details['task_file']) . ')'); |
211 | 216 | return true; // So we clear it from the queue. |
@@ -224,8 +229,9 @@ discard block |
||
224 | 229 | $scripturl = $boardurl . '/index.php'; |
225 | 230 | |
226 | 231 | // These keys shouldn't be set...ever. |
227 | - if (isset($_REQUEST['GLOBALS']) || isset($_COOKIE['GLOBALS'])) |
|
228 | - die('Invalid request variable.'); |
|
232 | + if (isset($_REQUEST['GLOBALS']) || isset($_COOKIE['GLOBALS'])) { |
|
233 | + die('Invalid request variable.'); |
|
234 | + } |
|
229 | 235 | |
230 | 236 | // Save some memory.. (since we don't use these anyway.) |
231 | 237 | unset($GLOBALS['HTTP_POST_VARS'], $GLOBALS['HTTP_POST_VARS']); |
@@ -246,26 +252,28 @@ discard block |
||
246 | 252 | global $modSettings; |
247 | 253 | |
248 | 254 | // Ignore errors if we're ignoring them or they are strict notices from PHP 5 (which cannot be solved without breaking PHP 4.) |
249 | - if (error_reporting() == 0 || (defined('E_STRICT') && $error_level == E_STRICT && !empty($modSettings['enableErrorLogging']))) |
|
250 | - return; |
|
255 | + if (error_reporting() == 0 || (defined('E_STRICT') && $error_level == E_STRICT && !empty($modSettings['enableErrorLogging']))) { |
|
256 | + return; |
|
257 | + } |
|
251 | 258 | |
252 | 259 | $error_type = 'cron'; |
253 | 260 | |
254 | 261 | log_error($error_level . ': ' . $error_string, $error_type, $file, $line); |
255 | 262 | |
256 | 263 | // If this is an E_ERROR or E_USER_ERROR.... die. Violently so. |
257 | - if ($error_level % 255 == E_ERROR) |
|
258 | - die('No direct access...'); |
|
259 | -} |
|
264 | + if ($error_level % 255 == E_ERROR) { |
|
265 | + die('No direct access...'); |
|
266 | + } |
|
267 | + } |
|
260 | 268 | |
261 | 269 | /** |
262 | 270 | * The exit function |
263 | 271 | */ |
264 | 272 | function obExit_cron() |
265 | 273 | { |
266 | - if (FROM_CLI) |
|
267 | - die(0); |
|
268 | - else |
|
274 | + if (FROM_CLI) { |
|
275 | + die(0); |
|
276 | + } else |
|
269 | 277 | { |
270 | 278 | header('Content-Type: image/gif'); |
271 | 279 | die("\x47\x49\x46\x38\x39\x61\x01\x00\x01\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x21\xF9\x04\x01\x00\x00\x00\x00\x2C\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02\x44\x01\x00\x3B"); |
@@ -16,8 +16,9 @@ discard block |
||
16 | 16 | |
17 | 17 | // Start things rolling by getting SMF alive... |
18 | 18 | $ssi_guest_access = true; |
19 | -if (!file_exists(dirname(__FILE__) . '/SSI.php')) |
|
19 | +if (!file_exists(dirname(__FILE__) . '/SSI.php')) { |
|
20 | 20 | die('Cannot find SSI.php'); |
21 | +} |
|
21 | 22 | |
22 | 23 | require_once(dirname(__FILE__) . '/SSI.php'); |
23 | 24 | require_once($sourcedir . '/ManagePaid.php'); |
@@ -35,20 +36,22 @@ discard block |
||
35 | 36 | } |
36 | 37 | |
37 | 38 | // I assume we're even active? |
38 | -if (empty($modSettings['paid_enabled'])) |
|
39 | +if (empty($modSettings['paid_enabled'])) { |
|
39 | 40 | exit; |
41 | +} |
|
40 | 42 | |
41 | 43 | // If we have some custom people who find out about problems load them here. |
42 | 44 | $notify_users = array(); |
43 | 45 | if (!empty($modSettings['paid_email_to'])) |
44 | 46 | { |
45 | - foreach (explode(',', $modSettings['paid_email_to']) as $email) |
|
46 | - $notify_users[] = array( |
|
47 | + foreach (explode(',', $modSettings['paid_email_to']) as $email) { |
|
48 | + $notify_users[] = array( |
|
47 | 49 | 'email' => $email, |
48 | 50 | 'name' => $txt['who_member'], |
49 | 51 | 'id' => 0, |
50 | 52 | ); |
51 | -} |
|
53 | + } |
|
54 | + } |
|
52 | 55 | |
53 | 56 | // We need to see whether we can find the correct payment gateway, |
54 | 57 | // we'll going to go through all our gateway scripts and find out |
@@ -65,8 +68,9 @@ discard block |
||
65 | 68 | } |
66 | 69 | } |
67 | 70 | |
68 | -if (empty($txnType)) |
|
71 | +if (empty($txnType)) { |
|
69 | 72 | generateSubscriptionError($txt['paid_unknown_transaction_type']); |
73 | +} |
|
70 | 74 | |
71 | 75 | // Get the subscription and member ID amoungst others... |
72 | 76 | @list($subscription_id, $member_id) = $gatewayClass->precheck(); |
@@ -76,8 +80,9 @@ discard block |
||
76 | 80 | $member_id = (int) $member_id; |
77 | 81 | |
78 | 82 | // This would be bad... |
79 | -if (empty($member_id)) |
|
83 | +if (empty($member_id)) { |
|
80 | 84 | generateSubscriptionError($txt['paid_empty_member']); |
85 | +} |
|
81 | 86 | |
82 | 87 | // Verify the member. |
83 | 88 | $request = $smcFunc['db_query']('', ' |
@@ -89,8 +94,9 @@ discard block |
||
89 | 94 | ) |
90 | 95 | ); |
91 | 96 | // Didn't find them? |
92 | -if ($smcFunc['db_num_rows']($request) === 0) |
|
97 | +if ($smcFunc['db_num_rows']($request) === 0) { |
|
93 | 98 | generateSubscriptionError(sprintf($txt['paid_could_not_find_member'], $member_id)); |
99 | +} |
|
94 | 100 | $member_info = $smcFunc['db_fetch_assoc']($request); |
95 | 101 | $smcFunc['db_free_result']($request); |
96 | 102 | |
@@ -105,8 +111,9 @@ discard block |
||
105 | 111 | ); |
106 | 112 | |
107 | 113 | // Didn't find it? |
108 | -if ($smcFunc['db_num_rows']($request) === 0) |
|
114 | +if ($smcFunc['db_num_rows']($request) === 0) { |
|
109 | 115 | generateSubscriptionError(sprintf($txt['paid_count_not_find_subscription'], $member_id, $subscription_id)); |
116 | +} |
|
110 | 117 | |
111 | 118 | $subscription_info = $smcFunc['db_fetch_assoc']($request); |
112 | 119 | $smcFunc['db_free_result']($request); |
@@ -123,8 +130,9 @@ discard block |
||
123 | 130 | 'current_member' => $member_id, |
124 | 131 | ) |
125 | 132 | ); |
126 | -if ($smcFunc['db_num_rows']($request) === 0) |
|
133 | +if ($smcFunc['db_num_rows']($request) === 0) { |
|
127 | 134 | generateSubscriptionError(sprintf($txt['paid_count_not_find_subscription_log'], $member_id, $subscription_id)); |
135 | +} |
|
128 | 136 | $subscription_info += $smcFunc['db_fetch_assoc']($request); |
129 | 137 | $smcFunc['db_free_result']($request); |
130 | 138 | |
@@ -139,8 +147,7 @@ discard block |
||
139 | 147 | removeSubscription($subscription_id, $member_id); |
140 | 148 | $subscription_act = time(); |
141 | 149 | $status = 0; |
142 | - } |
|
143 | - else |
|
150 | + } else |
|
144 | 151 | { |
145 | 152 | loadSubscriptions(); |
146 | 153 | $subscription_act = $subscription_info['end_time'] - $context['subscriptions'][$subscription_id]['num_length']; |
@@ -188,16 +195,18 @@ discard block |
||
188 | 195 | if (!$gatewayClass->isSubscription()) |
189 | 196 | { |
190 | 197 | $real_details = $smcFunc['json_decode']($subscription_info['pending_details'], true); |
191 | - if (empty($real_details)) |
|
192 | - generateSubscriptionError(sprintf($txt['paid_count_not_find_outstanding_payment'], $member_id, $subscription_id)); |
|
198 | + if (empty($real_details)) { |
|
199 | + generateSubscriptionError(sprintf($txt['paid_count_not_find_outstanding_payment'], $member_id, $subscription_id)); |
|
200 | + } |
|
193 | 201 | |
194 | 202 | // Now we just try to find anything pending. |
195 | 203 | // We don't really care which it is as security happens later. |
196 | 204 | foreach ($real_details as $id => $detail) |
197 | 205 | { |
198 | 206 | unset($real_details[$id]); |
199 | - if ($detail[3] == 'payback' && $subscription_info['payments_pending']) |
|
200 | - $subscription_info['payments_pending']--; |
|
207 | + if ($detail[3] == 'payback' && $subscription_info['payments_pending']) { |
|
208 | + $subscription_info['payments_pending']--; |
|
209 | + } |
|
201 | 210 | break; |
202 | 211 | } |
203 | 212 | |
@@ -223,10 +232,11 @@ discard block |
||
223 | 232 | // This is a little harder, can we find the right duration? |
224 | 233 | foreach ($cost as $duration => $value) |
225 | 234 | { |
226 | - if ($duration == 'fixed') |
|
227 | - continue; |
|
228 | - elseif ((float) $value == (float) $total_cost) |
|
229 | - $found_duration = strtoupper(substr($duration, 0, 1)); |
|
235 | + if ($duration == 'fixed') { |
|
236 | + continue; |
|
237 | + } elseif ((float) $value == (float) $total_cost) { |
|
238 | + $found_duration = strtoupper(substr($duration, 0, 1)); |
|
239 | + } |
|
230 | 240 | } |
231 | 241 | |
232 | 242 | // If we have the duration then we're done. |
@@ -235,8 +245,7 @@ discard block |
||
235 | 245 | $notify = true; |
236 | 246 | addSubscription($subscription_id, $member_id, $found_duration); |
237 | 247 | } |
238 | - } |
|
239 | - else |
|
248 | + } else |
|
240 | 249 | { |
241 | 250 | $actual_cost = $cost['fixed']; |
242 | 251 | |
@@ -268,10 +277,10 @@ discard block |
||
268 | 277 | // Maybe they're cancelling. Some subscriptions may require actively doing something, but PayPal doesn't, for example. |
269 | 278 | elseif ($gatewayClass->isCancellation()) |
270 | 279 | { |
271 | - if (method_exists($gatewayClass, 'performCancel')) |
|
272 | - $gatewayClass->performCancel($subscription_id, $member_id, $subscription_info); |
|
273 | -} |
|
274 | -else |
|
280 | + if (method_exists($gatewayClass, 'performCancel')) { |
|
281 | + $gatewayClass->performCancel($subscription_id, $member_id, $subscription_info); |
|
282 | + } |
|
283 | + } else |
|
275 | 284 | { |
276 | 285 | // Some other "valid" transaction such as: |
277 | 286 | // |
@@ -308,8 +317,9 @@ discard block |
||
308 | 317 | // Maybe we can try to give them the post data? |
309 | 318 | if (!empty($_POST)) |
310 | 319 | { |
311 | - foreach ($_POST as $key => $val) |
|
312 | - $text .= '<br>' . $smcFunc['htmlspecialchars']($key) . ': ' . $smcFunc['htmlspecialchars']($val); |
|
320 | + foreach ($_POST as $key => $val) { |
|
321 | + $text .= '<br>' . $smcFunc['htmlspecialchars']($key) . ': ' . $smcFunc['htmlspecialchars']($val); |
|
322 | + } |
|
313 | 323 | } |
314 | 324 | |
315 | 325 | // Then just log and die. |