@@ -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 | * Begin the registration process. |
@@ -29,19 +30,23 @@ discard block |
||
29 | 30 | global $language, $scripturl, $smcFunc, $sourcedir, $cur_profile; |
30 | 31 | |
31 | 32 | // Is this an incoming AJAX check? |
32 | - if (isset($_GET['sa']) && $_GET['sa'] == 'usernamecheck') |
|
33 | - return RegisterCheckUsername(); |
|
33 | + if (isset($_GET['sa']) && $_GET['sa'] == 'usernamecheck') { |
|
34 | + return RegisterCheckUsername(); |
|
35 | + } |
|
34 | 36 | |
35 | 37 | // Check if the administrator has it disabled. |
36 | - if (!empty($modSettings['registration_method']) && $modSettings['registration_method'] == '3') |
|
37 | - fatal_lang_error('registration_disabled', false); |
|
38 | + if (!empty($modSettings['registration_method']) && $modSettings['registration_method'] == '3') { |
|
39 | + fatal_lang_error('registration_disabled', false); |
|
40 | + } |
|
38 | 41 | |
39 | 42 | // If this user is an admin - redirect them to the admin registration page. |
40 | - if (allowedTo('moderate_forum') && !$user_info['is_guest']) |
|
41 | - redirectexit('action=admin;area=regcenter;sa=register'); |
|
43 | + if (allowedTo('moderate_forum') && !$user_info['is_guest']) { |
|
44 | + redirectexit('action=admin;area=regcenter;sa=register'); |
|
45 | + } |
|
42 | 46 | // You are not a guest, so you are a member - and members don't get to register twice! |
43 | - elseif (empty($user_info['is_guest'])) |
|
44 | - redirectexit(); |
|
47 | + elseif (empty($user_info['is_guest'])) { |
|
48 | + redirectexit(); |
|
49 | + } |
|
45 | 50 | |
46 | 51 | loadLanguage('Login'); |
47 | 52 | loadTemplate('Register'); |
@@ -82,16 +87,18 @@ discard block |
||
82 | 87 | } |
83 | 88 | } |
84 | 89 | // Make sure they don't squeeze through without agreeing. |
85 | - elseif ($current_step > 1 && $context['require_agreement'] && !$context['registration_passed_agreement']) |
|
86 | - $current_step = 1; |
|
90 | + elseif ($current_step > 1 && $context['require_agreement'] && !$context['registration_passed_agreement']) { |
|
91 | + $current_step = 1; |
|
92 | + } |
|
87 | 93 | |
88 | 94 | // Show the user the right form. |
89 | 95 | $context['sub_template'] = $current_step == 1 ? 'registration_agreement' : 'registration_form'; |
90 | 96 | $context['page_title'] = $current_step == 1 ? $txt['registration_agreement'] : $txt['registration_form']; |
91 | 97 | |
92 | 98 | // Kinda need this. |
93 | - if ($context['sub_template'] == 'registration_form') |
|
94 | - loadJavaScriptFile('register.js', array('defer' => false), 'smf_register'); |
|
99 | + if ($context['sub_template'] == 'registration_form') { |
|
100 | + loadJavaScriptFile('register.js', array('defer' => false), 'smf_register'); |
|
101 | + } |
|
95 | 102 | |
96 | 103 | // Add the register chain to the link tree. |
97 | 104 | $context['linktree'][] = array( |
@@ -100,24 +107,26 @@ discard block |
||
100 | 107 | ); |
101 | 108 | |
102 | 109 | // Prepare the time gate! Do it like so, in case later steps want to reset the limit for any reason, but make sure the time is the current one. |
103 | - if (!isset($_SESSION['register'])) |
|
104 | - $_SESSION['register'] = array( |
|
110 | + if (!isset($_SESSION['register'])) { |
|
111 | + $_SESSION['register'] = array( |
|
105 | 112 | 'timenow' => time(), |
106 | 113 | 'limit' => 10, // minimum number of seconds required on this page for registration |
107 | 114 | ); |
108 | - else |
|
109 | - $_SESSION['register']['timenow'] = time(); |
|
115 | + } else { |
|
116 | + $_SESSION['register']['timenow'] = time(); |
|
117 | + } |
|
110 | 118 | |
111 | 119 | // If you have to agree to the agreement, it needs to be fetched from the file. |
112 | 120 | if ($context['require_agreement']) |
113 | 121 | { |
114 | 122 | // Have we got a localized one? |
115 | - if (file_exists($boarddir . '/agreement.' . $user_info['language'] . '.txt')) |
|
116 | - $context['agreement'] = parse_bbc(file_get_contents($boarddir . '/agreement.' . $user_info['language'] . '.txt'), true, 'agreement_' . $user_info['language']); |
|
117 | - elseif (file_exists($boarddir . '/agreement.txt')) |
|
118 | - $context['agreement'] = parse_bbc(file_get_contents($boarddir . '/agreement.txt'), true, 'agreement'); |
|
119 | - else |
|
120 | - $context['agreement'] = ''; |
|
123 | + if (file_exists($boarddir . '/agreement.' . $user_info['language'] . '.txt')) { |
|
124 | + $context['agreement'] = parse_bbc(file_get_contents($boarddir . '/agreement.' . $user_info['language'] . '.txt'), true, 'agreement_' . $user_info['language']); |
|
125 | + } elseif (file_exists($boarddir . '/agreement.txt')) { |
|
126 | + $context['agreement'] = parse_bbc(file_get_contents($boarddir . '/agreement.txt'), true, 'agreement'); |
|
127 | + } else { |
|
128 | + $context['agreement'] = ''; |
|
129 | + } |
|
121 | 130 | |
122 | 131 | // Nothing to show, lets disable registration and inform the admin of this error |
123 | 132 | if (empty($context['agreement'])) |
@@ -133,8 +142,9 @@ discard block |
||
133 | 142 | $selectedLanguage = empty($_SESSION['language']) ? $language : $_SESSION['language']; |
134 | 143 | |
135 | 144 | // Do we have any languages? |
136 | - if (empty($context['languages'])) |
|
137 | - getLanguages(); |
|
145 | + if (empty($context['languages'])) { |
|
146 | + getLanguages(); |
|
147 | + } |
|
138 | 148 | |
139 | 149 | // Try to find our selected language. |
140 | 150 | foreach ($context['languages'] as $key => $lang) |
@@ -142,8 +152,9 @@ discard block |
||
142 | 152 | $context['languages'][$key]['name'] = strtr($lang['name'], array('-utf8' => '')); |
143 | 153 | |
144 | 154 | // Found it! |
145 | - if ($selectedLanguage == $lang['filename']) |
|
146 | - $context['languages'][$key]['selected'] = true; |
|
155 | + if ($selectedLanguage == $lang['filename']) { |
|
156 | + $context['languages'][$key]['selected'] = true; |
|
157 | + } |
|
147 | 158 | } |
148 | 159 | } |
149 | 160 | |
@@ -167,9 +178,10 @@ discard block |
||
167 | 178 | $reg_fields = explode(',', $modSettings['registration_fields']); |
168 | 179 | |
169 | 180 | // We might have had some submissions on this front - go check. |
170 | - foreach ($reg_fields as $field) |
|
171 | - if (isset($_POST[$field])) |
|
181 | + foreach ($reg_fields as $field) { |
|
182 | + if (isset($_POST[$field])) |
|
172 | 183 | $cur_profile[$field] = $smcFunc['htmlspecialchars']($_POST[$field]); |
184 | + } |
|
173 | 185 | |
174 | 186 | // Load all the fields in question. |
175 | 187 | setupProfileContext($reg_fields); |
@@ -186,8 +198,9 @@ discard block |
||
186 | 198 | $context['visual_verification_id'] = $verificationOptions['id']; |
187 | 199 | } |
188 | 200 | // Otherwise we have nothing to show. |
189 | - else |
|
190 | - $context['visual_verification'] = false; |
|
201 | + else { |
|
202 | + $context['visual_verification'] = false; |
|
203 | + } |
|
191 | 204 | |
192 | 205 | |
193 | 206 | $context += array( |
@@ -198,8 +211,9 @@ discard block |
||
198 | 211 | |
199 | 212 | // Were there any errors? |
200 | 213 | $context['registration_errors'] = array(); |
201 | - if (!empty($reg_errors)) |
|
202 | - $context['registration_errors'] = $reg_errors; |
|
214 | + if (!empty($reg_errors)) { |
|
215 | + $context['registration_errors'] = $reg_errors; |
|
216 | + } |
|
203 | 217 | |
204 | 218 | createToken('register'); |
205 | 219 | } |
@@ -216,27 +230,32 @@ discard block |
||
216 | 230 | validateToken('register'); |
217 | 231 | |
218 | 232 | // Check to ensure we're forcing SSL for authentication |
219 | - if (!empty($modSettings['force_ssl']) && empty($maintenance) && (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != 'on')) |
|
220 | - fatal_lang_error('register_ssl_required'); |
|
233 | + if (!empty($modSettings['force_ssl']) && empty($maintenance) && (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != 'on')) { |
|
234 | + fatal_lang_error('register_ssl_required'); |
|
235 | + } |
|
221 | 236 | |
222 | 237 | // Start collecting together any errors. |
223 | 238 | $reg_errors = array(); |
224 | 239 | |
225 | 240 | // You can't register if it's disabled. |
226 | - if (!empty($modSettings['registration_method']) && $modSettings['registration_method'] == 3) |
|
227 | - fatal_lang_error('registration_disabled', false); |
|
241 | + if (!empty($modSettings['registration_method']) && $modSettings['registration_method'] == 3) { |
|
242 | + fatal_lang_error('registration_disabled', false); |
|
243 | + } |
|
228 | 244 | |
229 | 245 | // Well, if you don't agree, you can't register. |
230 | - if (!empty($modSettings['requireAgreement']) && empty($_SESSION['registration_agreed'])) |
|
231 | - redirectexit(); |
|
246 | + if (!empty($modSettings['requireAgreement']) && empty($_SESSION['registration_agreed'])) { |
|
247 | + redirectexit(); |
|
248 | + } |
|
232 | 249 | |
233 | 250 | // Make sure they came from *somewhere*, have a session. |
234 | - if (!isset($_SESSION['old_url'])) |
|
235 | - redirectexit('action=signup'); |
|
251 | + if (!isset($_SESSION['old_url'])) { |
|
252 | + redirectexit('action=signup'); |
|
253 | + } |
|
236 | 254 | |
237 | 255 | // If we don't require an agreement, we need a extra check for coppa. |
238 | - if (empty($modSettings['requireAgreement']) && !empty($modSettings['coppaAge'])) |
|
239 | - $_SESSION['skip_coppa'] = !empty($_POST['accept_agreement']); |
|
256 | + if (empty($modSettings['requireAgreement']) && !empty($modSettings['coppaAge'])) { |
|
257 | + $_SESSION['skip_coppa'] = !empty($_POST['accept_agreement']); |
|
258 | + } |
|
240 | 259 | // Are they under age, and under age users are banned? |
241 | 260 | if (!empty($modSettings['coppaAge']) && empty($modSettings['coppaType']) && empty($_SESSION['skip_coppa'])) |
242 | 261 | { |
@@ -245,8 +264,9 @@ discard block |
||
245 | 264 | } |
246 | 265 | |
247 | 266 | // Check the time gate for miscreants. First make sure they came from somewhere that actually set it up. |
248 | - if (empty($_SESSION['register']['timenow']) || empty($_SESSION['register']['limit'])) |
|
249 | - redirectexit('action=signup'); |
|
267 | + if (empty($_SESSION['register']['timenow']) || empty($_SESSION['register']['limit'])) { |
|
268 | + redirectexit('action=signup'); |
|
269 | + } |
|
250 | 270 | // Failing that, check the time on it. |
251 | 271 | if (time() - $_SESSION['register']['timenow'] < $_SESSION['register']['limit']) |
252 | 272 | { |
@@ -266,15 +286,17 @@ discard block |
||
266 | 286 | if (is_array($context['visual_verification'])) |
267 | 287 | { |
268 | 288 | loadLanguage('Errors'); |
269 | - foreach ($context['visual_verification'] as $error) |
|
270 | - $reg_errors[] = $txt['error_' . $error]; |
|
289 | + foreach ($context['visual_verification'] as $error) { |
|
290 | + $reg_errors[] = $txt['error_' . $error]; |
|
291 | + } |
|
271 | 292 | } |
272 | 293 | } |
273 | 294 | |
274 | 295 | foreach ($_POST as $key => $value) |
275 | 296 | { |
276 | - if (!is_array($_POST[$key])) |
|
277 | - $_POST[$key] = htmltrim__recursive(str_replace(array("\n", "\r"), '', $_POST[$key])); |
|
297 | + if (!is_array($_POST[$key])) { |
|
298 | + $_POST[$key] = htmltrim__recursive(str_replace(array("\n", "\r"), '', $_POST[$key])); |
|
299 | + } |
|
278 | 300 | } |
279 | 301 | |
280 | 302 | // Collect all extra registration fields someone might have filled in. |
@@ -304,12 +326,14 @@ discard block |
||
304 | 326 | $reg_fields = explode(',', $modSettings['registration_fields']); |
305 | 327 | |
306 | 328 | // Website is a little different |
307 | - if (in_array('website', $reg_fields)) |
|
308 | - $possible_strings += array('website_url', 'website_title'); |
|
329 | + if (in_array('website', $reg_fields)) { |
|
330 | + $possible_strings += array('website_url', 'website_title'); |
|
331 | + } |
|
309 | 332 | } |
310 | 333 | |
311 | - if (isset($_POST['secret_answer']) && $_POST['secret_answer'] != '') |
|
312 | - $_POST['secret_answer'] = md5($_POST['secret_answer']); |
|
334 | + if (isset($_POST['secret_answer']) && $_POST['secret_answer'] != '') { |
|
335 | + $_POST['secret_answer'] = md5($_POST['secret_answer']); |
|
336 | + } |
|
313 | 337 | |
314 | 338 | // Needed for isReservedName() and registerMember(). |
315 | 339 | require_once($sourcedir . '/Subs-Members.php'); |
@@ -318,8 +342,9 @@ discard block |
||
318 | 342 | if (isset($_POST['real_name'])) |
319 | 343 | { |
320 | 344 | // Are you already allowed to edit the displayed name? |
321 | - if (allowedTo('profile_displayed_name') || allowedTo('moderate_forum')) |
|
322 | - $canEditDisplayName = true; |
|
345 | + if (allowedTo('profile_displayed_name') || allowedTo('moderate_forum')) { |
|
346 | + $canEditDisplayName = true; |
|
347 | + } |
|
323 | 348 | |
324 | 349 | // If you are a guest, will you be allowed to once you register? |
325 | 350 | else |
@@ -343,33 +368,38 @@ discard block |
||
343 | 368 | $_POST['real_name'] = trim(preg_replace('~[\t\n\r \x0B\0' . ($context['utf8'] ? '\x{A0}\x{AD}\x{2000}-\x{200F}\x{201F}\x{202F}\x{3000}\x{FEFF}' : '\x00-\x08\x0B\x0C\x0E-\x19\xA0') . ']+~' . ($context['utf8'] ? 'u' : ''), ' ', $_POST['real_name'])); |
344 | 369 | |
345 | 370 | // Only set it if we are sure it is good |
346 | - if (trim($_POST['real_name']) != '' && !isReservedName($_POST['real_name']) && $smcFunc['strlen']($_POST['real_name']) < 60) |
|
347 | - $possible_strings[] = 'real_name'; |
|
371 | + if (trim($_POST['real_name']) != '' && !isReservedName($_POST['real_name']) && $smcFunc['strlen']($_POST['real_name']) < 60) { |
|
372 | + $possible_strings[] = 'real_name'; |
|
373 | + } |
|
348 | 374 | } |
349 | 375 | } |
350 | 376 | |
351 | 377 | // Handle a string as a birthdate... |
352 | - if (isset($_POST['birthdate']) && $_POST['birthdate'] != '') |
|
353 | - $_POST['birthdate'] = strftime('%Y-%m-%d', strtotime($_POST['birthdate'])); |
|
378 | + if (isset($_POST['birthdate']) && $_POST['birthdate'] != '') { |
|
379 | + $_POST['birthdate'] = strftime('%Y-%m-%d', strtotime($_POST['birthdate'])); |
|
380 | + } |
|
354 | 381 | // Or birthdate parts... |
355 | - elseif (!empty($_POST['bday1']) && !empty($_POST['bday2'])) |
|
356 | - $_POST['birthdate'] = sprintf('%04d-%02d-%02d', empty($_POST['bday3']) ? 0 : (int) $_POST['bday3'], (int) $_POST['bday1'], (int) $_POST['bday2']); |
|
382 | + elseif (!empty($_POST['bday1']) && !empty($_POST['bday2'])) { |
|
383 | + $_POST['birthdate'] = sprintf('%04d-%02d-%02d', empty($_POST['bday3']) ? 0 : (int) $_POST['bday3'], (int) $_POST['bday1'], (int) $_POST['bday2']); |
|
384 | + } |
|
357 | 385 | |
358 | 386 | // Validate the passed language file. |
359 | 387 | if (isset($_POST['lngfile']) && !empty($modSettings['userLanguage'])) |
360 | 388 | { |
361 | 389 | // Do we have any languages? |
362 | - if (empty($context['languages'])) |
|
363 | - getLanguages(); |
|
390 | + if (empty($context['languages'])) { |
|
391 | + getLanguages(); |
|
392 | + } |
|
364 | 393 | |
365 | 394 | // Did we find it? |
366 | - if (isset($context['languages'][$_POST['lngfile']])) |
|
367 | - $_SESSION['language'] = $_POST['lngfile']; |
|
368 | - else |
|
395 | + if (isset($context['languages'][$_POST['lngfile']])) { |
|
396 | + $_SESSION['language'] = $_POST['lngfile']; |
|
397 | + } else { |
|
398 | + unset($_POST['lngfile']); |
|
399 | + } |
|
400 | + } else { |
|
369 | 401 | unset($_POST['lngfile']); |
370 | 402 | } |
371 | - else |
|
372 | - unset($_POST['lngfile']); |
|
373 | 403 | |
374 | 404 | // Set the options needed for registration. |
375 | 405 | $regOptions = array( |
@@ -389,22 +419,27 @@ discard block |
||
389 | 419 | ); |
390 | 420 | |
391 | 421 | // Include the additional options that might have been filled in. |
392 | - foreach ($possible_strings as $var) |
|
393 | - if (isset($_POST[$var])) |
|
422 | + foreach ($possible_strings as $var) { |
|
423 | + if (isset($_POST[$var])) |
|
394 | 424 | $regOptions['extra_register_vars'][$var] = $smcFunc['htmlspecialchars']($_POST[$var], ENT_QUOTES); |
395 | - foreach ($possible_ints as $var) |
|
396 | - if (isset($_POST[$var])) |
|
425 | + } |
|
426 | + foreach ($possible_ints as $var) { |
|
427 | + if (isset($_POST[$var])) |
|
397 | 428 | $regOptions['extra_register_vars'][$var] = (int) $_POST[$var]; |
398 | - foreach ($possible_floats as $var) |
|
399 | - if (isset($_POST[$var])) |
|
429 | + } |
|
430 | + foreach ($possible_floats as $var) { |
|
431 | + if (isset($_POST[$var])) |
|
400 | 432 | $regOptions['extra_register_vars'][$var] = (float) $_POST[$var]; |
401 | - foreach ($possible_bools as $var) |
|
402 | - if (isset($_POST[$var])) |
|
433 | + } |
|
434 | + foreach ($possible_bools as $var) { |
|
435 | + if (isset($_POST[$var])) |
|
403 | 436 | $regOptions['extra_register_vars'][$var] = empty($_POST[$var]) ? 0 : 1; |
437 | + } |
|
404 | 438 | |
405 | 439 | // Registration options are always default options... |
406 | - if (isset($_POST['default_options'])) |
|
407 | - $_POST['options'] = isset($_POST['options']) ? $_POST['options'] + $_POST['default_options'] : $_POST['default_options']; |
|
440 | + if (isset($_POST['default_options'])) { |
|
441 | + $_POST['options'] = isset($_POST['options']) ? $_POST['options'] + $_POST['default_options'] : $_POST['default_options']; |
|
442 | + } |
|
408 | 443 | $regOptions['theme_vars'] = isset($_POST['options']) && is_array($_POST['options']) ? $_POST['options'] : array(); |
409 | 444 | |
410 | 445 | // Make sure they are clean, dammit! |
@@ -424,12 +459,14 @@ discard block |
||
424 | 459 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
425 | 460 | { |
426 | 461 | // Don't allow overriding of the theme variables. |
427 | - if (isset($regOptions['theme_vars'][$row['col_name']])) |
|
428 | - unset($regOptions['theme_vars'][$row['col_name']]); |
|
462 | + if (isset($regOptions['theme_vars'][$row['col_name']])) { |
|
463 | + unset($regOptions['theme_vars'][$row['col_name']]); |
|
464 | + } |
|
429 | 465 | |
430 | 466 | // Not actually showing it then? |
431 | - if (!$row['show_reg']) |
|
432 | - continue; |
|
467 | + if (!$row['show_reg']) { |
|
468 | + continue; |
|
469 | + } |
|
433 | 470 | |
434 | 471 | // Prepare the value! |
435 | 472 | $value = isset($_POST['customfield'][$row['col_name']]) ? trim($_POST['customfield'][$row['col_name']]) : ''; |
@@ -438,24 +475,27 @@ discard block |
||
438 | 475 | if (!in_array($row['field_type'], array('check', 'select', 'radio'))) |
439 | 476 | { |
440 | 477 | // Is it too long? |
441 | - if ($row['field_length'] && $row['field_length'] < $smcFunc['strlen']($value)) |
|
442 | - $custom_field_errors[] = array('custom_field_too_long', array($row['field_name'], $row['field_length'])); |
|
478 | + if ($row['field_length'] && $row['field_length'] < $smcFunc['strlen']($value)) { |
|
479 | + $custom_field_errors[] = array('custom_field_too_long', array($row['field_name'], $row['field_length'])); |
|
480 | + } |
|
443 | 481 | |
444 | 482 | // Any masks to apply? |
445 | 483 | if ($row['field_type'] == 'text' && !empty($row['mask']) && $row['mask'] != 'none') |
446 | 484 | { |
447 | - if ($row['mask'] == 'email' && (!filter_var($value, FILTER_VALIDATE_EMAIL) || strlen($value) > 255)) |
|
448 | - $custom_field_errors[] = array('custom_field_invalid_email', array($row['field_name'])); |
|
449 | - elseif ($row['mask'] == 'number' && preg_match('~[^\d]~', $value)) |
|
450 | - $custom_field_errors[] = array('custom_field_not_number', array($row['field_name'])); |
|
451 | - elseif (substr($row['mask'], 0, 5) == 'regex' && trim($value) != '' && preg_match(substr($row['mask'], 5), $value) === 0) |
|
452 | - $custom_field_errors[] = array('custom_field_inproper_format', array($row['field_name'])); |
|
485 | + if ($row['mask'] == 'email' && (!filter_var($value, FILTER_VALIDATE_EMAIL) || strlen($value) > 255)) { |
|
486 | + $custom_field_errors[] = array('custom_field_invalid_email', array($row['field_name'])); |
|
487 | + } elseif ($row['mask'] == 'number' && preg_match('~[^\d]~', $value)) { |
|
488 | + $custom_field_errors[] = array('custom_field_not_number', array($row['field_name'])); |
|
489 | + } elseif (substr($row['mask'], 0, 5) == 'regex' && trim($value) != '' && preg_match(substr($row['mask'], 5), $value) === 0) { |
|
490 | + $custom_field_errors[] = array('custom_field_inproper_format', array($row['field_name'])); |
|
491 | + } |
|
453 | 492 | } |
454 | 493 | } |
455 | 494 | |
456 | 495 | // Is this required but not there? |
457 | - if (trim($value) == '' && $row['show_reg'] > 1) |
|
458 | - $custom_field_errors[] = array('custom_field_empty', array($row['field_name'])); |
|
496 | + if (trim($value) == '' && $row['show_reg'] > 1) { |
|
497 | + $custom_field_errors[] = array('custom_field_empty', array($row['field_name'])); |
|
498 | + } |
|
459 | 499 | } |
460 | 500 | $smcFunc['db_free_result']($request); |
461 | 501 | |
@@ -463,8 +503,9 @@ discard block |
||
463 | 503 | if (!empty($custom_field_errors)) |
464 | 504 | { |
465 | 505 | loadLanguage('Errors'); |
466 | - foreach ($custom_field_errors as $error) |
|
467 | - $reg_errors[] = vsprintf($txt['error_' . $error[0]], $error[1]); |
|
506 | + foreach ($custom_field_errors as $error) { |
|
507 | + $reg_errors[] = vsprintf($txt['error_' . $error[0]], $error[1]); |
|
508 | + } |
|
468 | 509 | } |
469 | 510 | |
470 | 511 | // Lets check for other errors before trying to register the member. |
@@ -509,8 +550,9 @@ discard block |
||
509 | 550 | } |
510 | 551 | |
511 | 552 | // If COPPA has been selected then things get complicated, setup the template. |
512 | - if (!empty($modSettings['coppaAge']) && empty($_SESSION['skip_coppa'])) |
|
513 | - redirectexit('action=coppa;member=' . $memberID); |
|
553 | + if (!empty($modSettings['coppaAge']) && empty($_SESSION['skip_coppa'])) { |
|
554 | + redirectexit('action=coppa;member=' . $memberID); |
|
555 | + } |
|
514 | 556 | // Basic template variable setup. |
515 | 557 | elseif (!empty($modSettings['registration_method'])) |
516 | 558 | { |
@@ -522,8 +564,7 @@ discard block |
||
522 | 564 | 'sub_template' => 'after', |
523 | 565 | 'description' => $modSettings['registration_method'] == 2 ? $txt['approval_after_registration'] : $txt['activate_after_registration'] |
524 | 566 | ); |
525 | - } |
|
526 | - else |
|
567 | + } else |
|
527 | 568 | { |
528 | 569 | call_integration_hook('integrate_activate', array($regOptions['username'])); |
529 | 570 | |
@@ -543,16 +584,18 @@ discard block |
||
543 | 584 | global $context, $txt, $modSettings, $scripturl, $sourcedir, $smcFunc, $language, $user_info; |
544 | 585 | |
545 | 586 | // Logged in users should not bother to activate their accounts |
546 | - if (!empty($user_info['id'])) |
|
547 | - redirectexit(); |
|
587 | + if (!empty($user_info['id'])) { |
|
588 | + redirectexit(); |
|
589 | + } |
|
548 | 590 | |
549 | 591 | loadLanguage('Login'); |
550 | 592 | loadTemplate('Login'); |
551 | 593 | |
552 | 594 | if (empty($_REQUEST['u']) && empty($_POST['user'])) |
553 | 595 | { |
554 | - if (empty($modSettings['registration_method']) || $modSettings['registration_method'] == '3') |
|
555 | - fatal_lang_error('no_access', false); |
|
596 | + if (empty($modSettings['registration_method']) || $modSettings['registration_method'] == '3') { |
|
597 | + fatal_lang_error('no_access', false); |
|
598 | + } |
|
556 | 599 | |
557 | 600 | $context['member_id'] = 0; |
558 | 601 | $context['sub_template'] = 'resend'; |
@@ -592,11 +635,13 @@ discard block |
||
592 | 635 | // Change their email address? (they probably tried a fake one first :P.) |
593 | 636 | if (isset($_POST['new_email'], $_REQUEST['passwd']) && hash_password($row['member_name'], $_REQUEST['passwd']) == $row['passwd'] && ($row['is_activated'] == 0 || $row['is_activated'] == 2)) |
594 | 637 | { |
595 | - if (empty($modSettings['registration_method']) || $modSettings['registration_method'] == 3) |
|
596 | - fatal_lang_error('no_access', false); |
|
638 | + if (empty($modSettings['registration_method']) || $modSettings['registration_method'] == 3) { |
|
639 | + fatal_lang_error('no_access', false); |
|
640 | + } |
|
597 | 641 | |
598 | - if (!filter_var($_POST['new_email'], FILTER_VALIDATE_EMAIL)) |
|
599 | - fatal_error(sprintf($txt['valid_email_needed'], $smcFunc['htmlspecialchars']($_POST['new_email'])), false); |
|
642 | + if (!filter_var($_POST['new_email'], FILTER_VALIDATE_EMAIL)) { |
|
643 | + fatal_error(sprintf($txt['valid_email_needed'], $smcFunc['htmlspecialchars']($_POST['new_email'])), false); |
|
644 | + } |
|
600 | 645 | |
601 | 646 | // Make sure their email isn't banned. |
602 | 647 | isBannedEmail($_POST['new_email'], 'cannot_register', $txt['ban_register_prohibited']); |
@@ -612,8 +657,9 @@ discard block |
||
612 | 657 | ) |
613 | 658 | ); |
614 | 659 | |
615 | - if ($smcFunc['db_num_rows']($request) != 0) |
|
616 | - fatal_lang_error('email_in_use', false, array($smcFunc['htmlspecialchars']($_POST['new_email']))); |
|
660 | + if ($smcFunc['db_num_rows']($request) != 0) { |
|
661 | + fatal_lang_error('email_in_use', false, array($smcFunc['htmlspecialchars']($_POST['new_email']))); |
|
662 | + } |
|
617 | 663 | $smcFunc['db_free_result']($request); |
618 | 664 | |
619 | 665 | updateMemberData($row['id_member'], array('email_address' => $_POST['new_email'])); |
@@ -651,9 +697,9 @@ discard block |
||
651 | 697 | // Quit if this code is not right. |
652 | 698 | if (empty($_REQUEST['code']) || $row['validation_code'] != $_REQUEST['code']) |
653 | 699 | { |
654 | - if (!empty($row['is_activated'])) |
|
655 | - fatal_lang_error('already_activated', false); |
|
656 | - elseif ($row['validation_code'] == '') |
|
700 | + if (!empty($row['is_activated'])) { |
|
701 | + fatal_lang_error('already_activated', false); |
|
702 | + } elseif ($row['validation_code'] == '') |
|
657 | 703 | { |
658 | 704 | loadLanguage('Profile'); |
659 | 705 | fatal_error(sprintf($txt['registration_not_approved'], $scripturl . '?action=activate;user=' . $row['member_name']), false); |
@@ -703,8 +749,9 @@ discard block |
||
703 | 749 | loadTemplate('Register'); |
704 | 750 | |
705 | 751 | // No User ID?? |
706 | - if (!isset($_GET['member'])) |
|
707 | - fatal_lang_error('no_access', false); |
|
752 | + if (!isset($_GET['member'])) { |
|
753 | + fatal_lang_error('no_access', false); |
|
754 | + } |
|
708 | 755 | |
709 | 756 | // Get the user details... |
710 | 757 | $request = $smcFunc['db_query']('', ' |
@@ -717,8 +764,9 @@ discard block |
||
717 | 764 | 'is_coppa' => 5, |
718 | 765 | ) |
719 | 766 | ); |
720 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
721 | - fatal_lang_error('no_access', false); |
|
767 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
768 | + fatal_lang_error('no_access', false); |
|
769 | + } |
|
722 | 770 | list ($username) = $smcFunc['db_fetch_row']($request); |
723 | 771 | $smcFunc['db_free_result']($request); |
724 | 772 | |
@@ -756,8 +804,7 @@ discard block |
||
756 | 804 | echo $data; |
757 | 805 | obExit(false); |
758 | 806 | } |
759 | - } |
|
760 | - else |
|
807 | + } else |
|
761 | 808 | { |
762 | 809 | $context += array( |
763 | 810 | 'page_title' => $txt['coppa_title'], |
@@ -810,8 +857,9 @@ discard block |
||
810 | 857 | { |
811 | 858 | require_once($sourcedir . '/Subs-Graphics.php'); |
812 | 859 | |
813 | - if (in_array('gd', get_loaded_extensions()) && !showCodeImage($code)) |
|
814 | - header('HTTP/1.1 400 Bad Request'); |
|
860 | + if (in_array('gd', get_loaded_extensions()) && !showCodeImage($code)) { |
|
861 | + header('HTTP/1.1 400 Bad Request'); |
|
862 | + } |
|
815 | 863 | |
816 | 864 | // Otherwise just show a pre-defined letter. |
817 | 865 | elseif (isset($_REQUEST['letter'])) |
@@ -829,14 +877,13 @@ discard block |
||
829 | 877 | header('Content-Type: image/gif'); |
830 | 878 | 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"); |
831 | 879 | } |
832 | - } |
|
833 | - |
|
834 | - elseif ($_REQUEST['format'] === '.wav') |
|
880 | + } elseif ($_REQUEST['format'] === '.wav') |
|
835 | 881 | { |
836 | 882 | require_once($sourcedir . '/Subs-Sound.php'); |
837 | 883 | |
838 | - if (!createWaveFile($code)) |
|
839 | - header('HTTP/1.1 400 Bad Request'); |
|
884 | + if (!createWaveFile($code)) { |
|
885 | + header('HTTP/1.1 400 Bad Request'); |
|
886 | + } |
|
840 | 887 | } |
841 | 888 | |
842 | 889 | // We all die one day... |
@@ -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"); |
@@ -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 |
@@ -14,8 +14,9 @@ discard block |
||
14 | 14 | * @version 2.1 Beta 4 |
15 | 15 | */ |
16 | 16 | |
17 | -if (!defined('SMF')) |
|
17 | +if (!defined('SMF')) { |
|
18 | 18 | die('No direct access...'); |
19 | +} |
|
19 | 20 | |
20 | 21 | /** |
21 | 22 | * The main entrance point for the 'Paid Subscription' screen, calling |
@@ -32,18 +33,19 @@ discard block |
||
32 | 33 | loadLanguage('ManagePaid'); |
33 | 34 | loadTemplate('ManagePaid'); |
34 | 35 | |
35 | - if (!empty($modSettings['paid_enabled'])) |
|
36 | - $subActions = array( |
|
36 | + if (!empty($modSettings['paid_enabled'])) { |
|
37 | + $subActions = array( |
|
37 | 38 | 'modify' => array('ModifySubscription', 'admin_forum'), |
38 | 39 | 'modifyuser' => array('ModifyUserSubscription', 'admin_forum'), |
39 | 40 | 'settings' => array('ModifySubscriptionSettings', 'admin_forum'), |
40 | 41 | 'view' => array('ViewSubscriptions', 'admin_forum'), |
41 | 42 | 'viewsub' => array('ViewSubscribedUsers', 'admin_forum'), |
42 | 43 | ); |
43 | - else |
|
44 | - $subActions = array( |
|
44 | + } else { |
|
45 | + $subActions = array( |
|
45 | 46 | 'settings' => array('ModifySubscriptionSettings', 'admin_forum'), |
46 | 47 | ); |
48 | + } |
|
47 | 49 | |
48 | 50 | // Default the sub-action to 'view subscriptions', but only if they have already set things up.. |
49 | 51 | $_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : (!empty($modSettings['paid_currency_symbol']) && !empty($modSettings['paid_enabled']) ? 'view' : 'settings'); |
@@ -59,8 +61,8 @@ discard block |
||
59 | 61 | 'help' => '', |
60 | 62 | 'description' => $txt['paid_subscriptions_desc'], |
61 | 63 | ); |
62 | - if (!empty($modSettings['paid_enabled'])) |
|
63 | - $context[$context['admin_menu_name']]['tab_data']['tabs'] = array( |
|
64 | + if (!empty($modSettings['paid_enabled'])) { |
|
65 | + $context[$context['admin_menu_name']]['tab_data']['tabs'] = array( |
|
64 | 66 | 'view' => array( |
65 | 67 | 'description' => $txt['paid_subs_view_desc'], |
66 | 68 | ), |
@@ -68,6 +70,7 @@ discard block |
||
68 | 70 | 'description' => $txt['paid_subs_settings_desc'], |
69 | 71 | ), |
70 | 72 | ); |
73 | + } |
|
71 | 74 | |
72 | 75 | call_integration_hook('integrate_manage_subscriptions', array(&$subActions)); |
73 | 76 | |
@@ -92,8 +95,9 @@ discard block |
||
92 | 95 | { |
93 | 96 | // If the currency is set to something different then we need to set it to other for this to work and set it back shortly. |
94 | 97 | $modSettings['paid_currency'] = !empty($modSettings['paid_currency_code']) ? $modSettings['paid_currency_code'] : ''; |
95 | - if (!empty($modSettings['paid_currency_code']) && !in_array($modSettings['paid_currency_code'], array('usd', 'eur', 'gbp', 'cad', 'aud'))) |
|
96 | - $modSettings['paid_currency'] = 'other'; |
|
98 | + if (!empty($modSettings['paid_currency_code']) && !in_array($modSettings['paid_currency_code'], array('usd', 'eur', 'gbp', 'cad', 'aud'))) { |
|
99 | + $modSettings['paid_currency'] = 'other'; |
|
100 | + } |
|
97 | 101 | |
98 | 102 | // These are all the default settings. |
99 | 103 | $config_vars = array( |
@@ -156,8 +160,7 @@ discard block |
||
156 | 160 | } |
157 | 161 | } |
158 | 162 | toggleOther();', true); |
159 | - } |
|
160 | - else |
|
163 | + } else |
|
161 | 164 | { |
162 | 165 | $config_vars = array( |
163 | 166 | array('check', 'paid_enabled'), |
@@ -166,8 +169,9 @@ discard block |
||
166 | 169 | } |
167 | 170 | |
168 | 171 | // Just searching? |
169 | - if ($return_config) |
|
170 | - return $config_vars; |
|
172 | + if ($return_config) { |
|
173 | + return $config_vars; |
|
174 | + } |
|
171 | 175 | |
172 | 176 | // Get the settings template fired up. |
173 | 177 | require_once($sourcedir . '/ManageServer.php'); |
@@ -211,8 +215,9 @@ discard block |
||
211 | 215 | foreach (explode(',', $_POST['paid_email_to']) as $email) |
212 | 216 | { |
213 | 217 | $email = trim($email); |
214 | - if (!empty($email) && filter_var($email, FILTER_VALIDATE_EMAIL)) |
|
215 | - $email_addresses[] = $email; |
|
218 | + if (!empty($email) && filter_var($email, FILTER_VALIDATE_EMAIL)) { |
|
219 | + $email_addresses[] = $email; |
|
220 | + } |
|
216 | 221 | $_POST['paid_email_to'] = implode(',', $email_addresses); |
217 | 222 | } |
218 | 223 | } |
@@ -249,8 +254,9 @@ discard block |
||
249 | 254 | global $context, $txt, $modSettings, $sourcedir, $scripturl; |
250 | 255 | |
251 | 256 | // Not made the settings yet? |
252 | - if (empty($modSettings['paid_currency_symbol'])) |
|
253 | - fatal_lang_error('paid_not_set_currency', false, $scripturl . '?action=admin;area=paidsubscribe;sa=settings'); |
|
257 | + if (empty($modSettings['paid_currency_symbol'])) { |
|
258 | + fatal_lang_error('paid_not_set_currency', false, $scripturl . '?action=admin;area=paidsubscribe;sa=settings'); |
|
259 | + } |
|
254 | 260 | |
255 | 261 | // Some basic stuff. |
256 | 262 | $context['page_title'] = $txt['paid_subs_view']; |
@@ -270,10 +276,11 @@ discard block |
||
270 | 276 | |
271 | 277 | foreach ($context['subscriptions'] as $data) |
272 | 278 | { |
273 | - if (++$counter < $start) |
|
274 | - continue; |
|
275 | - elseif ($counter == $start + $items_per_page) |
|
276 | - break; |
|
279 | + if (++$counter < $start) { |
|
280 | + continue; |
|
281 | + } elseif ($counter == $start + $items_per_page) { |
|
282 | + break; |
|
283 | + } |
|
277 | 284 | |
278 | 285 | $subscriptions[] = $data; |
279 | 286 | } |
@@ -450,8 +457,9 @@ discard block |
||
450 | 457 | ); |
451 | 458 | $id_group = 0; |
452 | 459 | $add_groups = ''; |
453 | - if ($smcFunc['db_num_rows']($request)) |
|
454 | - list ($id_group, $add_groups) = $smcFunc['db_fetch_row']($request); |
|
460 | + if ($smcFunc['db_num_rows']($request)) { |
|
461 | + list ($id_group, $add_groups) = $smcFunc['db_fetch_row']($request); |
|
462 | + } |
|
455 | 463 | $smcFunc['db_free_result']($request); |
456 | 464 | |
457 | 465 | $changes = array(); |
@@ -463,8 +471,9 @@ discard block |
||
463 | 471 | { |
464 | 472 | // If their current primary group isn't what they had before the subscription, and their current group was |
465 | 473 | // granted by the sub, remove it. |
466 | - if ($member_data['old_id_group'] != $member_data['id_group'] && $member_data['id_group'] == $id_group) |
|
467 | - $changes[$id_member]['id_group'] = $member_data['old_id_group']; |
|
474 | + if ($member_data['old_id_group'] != $member_data['id_group'] && $member_data['id_group'] == $id_group) { |
|
475 | + $changes[$id_member]['id_group'] = $member_data['old_id_group']; |
|
476 | + } |
|
468 | 477 | } |
469 | 478 | } |
470 | 479 | |
@@ -477,15 +486,17 @@ discard block |
||
477 | 486 | // First let's get their groups sorted. |
478 | 487 | $current_groups = explode(',', $member_data['additional_groups']); |
479 | 488 | $new_groups = implode(',', array_diff($current_groups, $add_groups)); |
480 | - if ($new_groups != $member_data['additional_groups']) |
|
481 | - $changes[$id_member]['additional_groups'] = $new_groups; |
|
489 | + if ($new_groups != $member_data['additional_groups']) { |
|
490 | + $changes[$id_member]['additional_groups'] = $new_groups; |
|
491 | + } |
|
482 | 492 | } |
483 | 493 | } |
484 | 494 | |
485 | 495 | // We're going through changes... |
486 | - if (!empty($changes)) |
|
487 | - foreach ($changes as $id_member => $new_values) |
|
496 | + if (!empty($changes)) { |
|
497 | + foreach ($changes as $id_member => $new_values) |
|
488 | 498 | updateMemberData($id_member, $new_values); |
499 | + } |
|
489 | 500 | } |
490 | 501 | |
491 | 502 | // Delete the subscription |
@@ -533,11 +544,13 @@ discard block |
||
533 | 544 | 'M' => 24, |
534 | 545 | 'Y' => 5, |
535 | 546 | ); |
536 | - if (empty($_POST['span_unit']) || empty($limits[$_POST['span_unit']]) || empty($_POST['span_value']) || $_POST['span_value'] < 1) |
|
537 | - fatal_lang_error('paid_invalid_duration', false); |
|
547 | + if (empty($_POST['span_unit']) || empty($limits[$_POST['span_unit']]) || empty($_POST['span_value']) || $_POST['span_value'] < 1) { |
|
548 | + fatal_lang_error('paid_invalid_duration', false); |
|
549 | + } |
|
538 | 550 | |
539 | - if ($_POST['span_value'] > $limits[$_POST['span_unit']]) |
|
540 | - fatal_lang_error('paid_invalid_duration_' . $_POST['span_unit'], false); |
|
551 | + if ($_POST['span_value'] > $limits[$_POST['span_unit']]) { |
|
552 | + fatal_lang_error('paid_invalid_duration_' . $_POST['span_unit'], false); |
|
553 | + } |
|
541 | 554 | |
542 | 555 | // Clean the span. |
543 | 556 | $span = $_POST['span_value'] . $_POST['span_unit']; |
@@ -546,8 +559,9 @@ discard block |
||
546 | 559 | $cost = array('fixed' => sprintf('%01.2f', strtr($_POST['cost'], ',', '.'))); |
547 | 560 | |
548 | 561 | // There needs to be something. |
549 | - if (empty($_POST['span_value']) || empty($_POST['cost'])) |
|
550 | - fatal_lang_error('paid_no_cost_value'); |
|
562 | + if (empty($_POST['span_value']) || empty($_POST['cost'])) { |
|
563 | + fatal_lang_error('paid_no_cost_value'); |
|
564 | + } |
|
551 | 565 | } |
552 | 566 | // Flexible is harder but more fun ;) |
553 | 567 | else |
@@ -561,8 +575,9 @@ discard block |
||
561 | 575 | 'year' => sprintf('%01.2f', strtr($_POST['cost_year'], ',', '.')), |
562 | 576 | ); |
563 | 577 | |
564 | - if (empty($_POST['cost_day']) && empty($_POST['cost_week']) && empty($_POST['cost_month']) && empty($_POST['cost_year'])) |
|
565 | - fatal_lang_error('paid_all_freq_blank'); |
|
578 | + if (empty($_POST['cost_day']) && empty($_POST['cost_week']) && empty($_POST['cost_month']) && empty($_POST['cost_year'])) { |
|
579 | + fatal_lang_error('paid_all_freq_blank'); |
|
580 | + } |
|
566 | 581 | } |
567 | 582 | $cost = $smcFunc['json_encode']($cost); |
568 | 583 | |
@@ -571,9 +586,10 @@ discard block |
||
571 | 586 | |
572 | 587 | // Yep, time to do additional groups. |
573 | 588 | $addgroups = array(); |
574 | - if (!empty($_POST['addgroup'])) |
|
575 | - foreach ($_POST['addgroup'] as $id => $dummy) |
|
589 | + if (!empty($_POST['addgroup'])) { |
|
590 | + foreach ($_POST['addgroup'] as $id => $dummy) |
|
576 | 591 | $addgroups[] = (int) $id; |
592 | + } |
|
577 | 593 | $addgroups = implode(',', $addgroups); |
578 | 594 | |
579 | 595 | // Is it new?! |
@@ -683,18 +699,18 @@ discard block |
||
683 | 699 | { |
684 | 700 | $span_value = $match[1]; |
685 | 701 | $span_unit = $match[2]; |
686 | - } |
|
687 | - else |
|
702 | + } else |
|
688 | 703 | { |
689 | 704 | $span_value = 0; |
690 | 705 | $span_unit = 'D'; |
691 | 706 | } |
692 | 707 | |
693 | 708 | // Is this a flexible one? |
694 | - if ($row['length'] == 'F') |
|
695 | - $isFlexible = true; |
|
696 | - else |
|
697 | - $isFlexible = false; |
|
709 | + if ($row['length'] == 'F') { |
|
710 | + $isFlexible = true; |
|
711 | + } else { |
|
712 | + $isFlexible = false; |
|
713 | + } |
|
698 | 714 | |
699 | 715 | $context['sub'] = array( |
700 | 716 | 'name' => $row['name'], |
@@ -743,8 +759,9 @@ discard block |
||
743 | 759 | ) |
744 | 760 | ); |
745 | 761 | $context['groups'] = array(); |
746 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
747 | - $context['groups'][$row['id_group']] = $row['group_name']; |
|
762 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
763 | + $context['groups'][$row['id_group']] = $row['group_name']; |
|
764 | + } |
|
748 | 765 | $smcFunc['db_free_result']($request); |
749 | 766 | |
750 | 767 | // This always happens. |
@@ -778,8 +795,9 @@ discard block |
||
778 | 795 | ) |
779 | 796 | ); |
780 | 797 | // Something wrong? |
781 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
782 | - fatal_lang_error('no_access', false); |
|
798 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
799 | + fatal_lang_error('no_access', false); |
|
800 | + } |
|
783 | 801 | // Do the subscription context. |
784 | 802 | $row = $smcFunc['db_fetch_assoc']($request); |
785 | 803 | $context['subscription'] = array( |
@@ -1014,8 +1032,8 @@ discard block |
||
1014 | 1032 | )) |
1015 | 1033 | ); |
1016 | 1034 | $subscribers = array(); |
1017 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1018 | - $subscribers[] = array( |
|
1035 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1036 | + $subscribers[] = array( |
|
1019 | 1037 | 'id' => $row['id_sublog'], |
1020 | 1038 | 'id_member' => $row['id_member'], |
1021 | 1039 | 'name' => $row['name'], |
@@ -1025,6 +1043,7 @@ discard block |
||
1025 | 1043 | 'status' => $row['status'], |
1026 | 1044 | 'status_text' => $row['status'] == 0 ? ($row['payments_pending'] == 0 ? $txt['paid_finished'] : $txt['paid_pending']) : $txt['paid_active'], |
1027 | 1045 | ); |
1046 | + } |
|
1028 | 1047 | $smcFunc['db_free_result']($request); |
1029 | 1048 | |
1030 | 1049 | return $subscribers; |
@@ -1059,14 +1078,16 @@ discard block |
||
1059 | 1078 | 'current_log_item' => $context['log_id'], |
1060 | 1079 | ) |
1061 | 1080 | ); |
1062 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1063 | - fatal_lang_error('no_access', false); |
|
1081 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1082 | + fatal_lang_error('no_access', false); |
|
1083 | + } |
|
1064 | 1084 | list ($context['sub_id']) = $smcFunc['db_fetch_row']($request); |
1065 | 1085 | $smcFunc['db_free_result']($request); |
1066 | 1086 | } |
1067 | 1087 | |
1068 | - if (!isset($context['subscriptions'][$context['sub_id']])) |
|
1069 | - fatal_lang_error('no_access', false); |
|
1088 | + if (!isset($context['subscriptions'][$context['sub_id']])) { |
|
1089 | + fatal_lang_error('no_access', false); |
|
1090 | + } |
|
1070 | 1091 | $context['current_subscription'] = $context['subscriptions'][$context['sub_id']]; |
1071 | 1092 | |
1072 | 1093 | // Searching? |
@@ -1099,8 +1120,9 @@ discard block |
||
1099 | 1120 | 'name' => $_POST['name'], |
1100 | 1121 | ) |
1101 | 1122 | ); |
1102 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1103 | - fatal_lang_error('error_member_not_found'); |
|
1123 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1124 | + fatal_lang_error('error_member_not_found'); |
|
1125 | + } |
|
1104 | 1126 | |
1105 | 1127 | list ($id_member, $id_group) = $smcFunc['db_fetch_row']($request); |
1106 | 1128 | $smcFunc['db_free_result']($request); |
@@ -1116,14 +1138,15 @@ discard block |
||
1116 | 1138 | 'current_member' => $id_member, |
1117 | 1139 | ) |
1118 | 1140 | ); |
1119 | - if ($smcFunc['db_num_rows']($request) != 0) |
|
1120 | - fatal_lang_error('member_already_subscribed'); |
|
1141 | + if ($smcFunc['db_num_rows']($request) != 0) { |
|
1142 | + fatal_lang_error('member_already_subscribed'); |
|
1143 | + } |
|
1121 | 1144 | $smcFunc['db_free_result']($request); |
1122 | 1145 | |
1123 | 1146 | // Actually put the subscription in place. |
1124 | - if ($status == 1) |
|
1125 | - addSubscription($context['sub_id'], $id_member, 0, $starttime, $endtime); |
|
1126 | - else |
|
1147 | + if ($status == 1) { |
|
1148 | + addSubscription($context['sub_id'], $id_member, 0, $starttime, $endtime); |
|
1149 | + } else |
|
1127 | 1150 | { |
1128 | 1151 | $smcFunc['db_insert']('', |
1129 | 1152 | '{db_prefix}log_subscribed', |
@@ -1150,20 +1173,20 @@ discard block |
||
1150 | 1173 | 'current_log_item' => $context['log_id'], |
1151 | 1174 | ) |
1152 | 1175 | ); |
1153 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1154 | - fatal_lang_error('no_access', false); |
|
1176 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1177 | + fatal_lang_error('no_access', false); |
|
1178 | + } |
|
1155 | 1179 | |
1156 | 1180 | list ($id_member, $old_status) = $smcFunc['db_fetch_row']($request); |
1157 | 1181 | $smcFunc['db_free_result']($request); |
1158 | 1182 | |
1159 | 1183 | // Pick the right permission stuff depending on what the status is changing from/to. |
1160 | - if ($old_status == 1 && $status != 1) |
|
1161 | - removeSubscription($context['sub_id'], $id_member); |
|
1162 | - elseif ($status == 1 && $old_status != 1) |
|
1184 | + if ($old_status == 1 && $status != 1) { |
|
1185 | + removeSubscription($context['sub_id'], $id_member); |
|
1186 | + } elseif ($status == 1 && $old_status != 1) |
|
1163 | 1187 | { |
1164 | 1188 | addSubscription($context['sub_id'], $id_member, 0, $starttime, $endtime); |
1165 | - } |
|
1166 | - else |
|
1189 | + } else |
|
1167 | 1190 | { |
1168 | 1191 | $smcFunc['db_query']('', ' |
1169 | 1192 | UPDATE {db_prefix}log_subscribed |
@@ -1191,8 +1214,9 @@ discard block |
||
1191 | 1214 | if (!empty($_REQUEST['delsub'])) |
1192 | 1215 | { |
1193 | 1216 | $toDelete = array(); |
1194 | - foreach ($_REQUEST['delsub'] as $id => $dummy) |
|
1195 | - $toDelete[] = (int) $id; |
|
1217 | + foreach ($_REQUEST['delsub'] as $id => $dummy) { |
|
1218 | + $toDelete[] = (int) $id; |
|
1219 | + } |
|
1196 | 1220 | |
1197 | 1221 | $request = $smcFunc['db_query']('', ' |
1198 | 1222 | SELECT id_subscribe, id_member |
@@ -1202,8 +1226,9 @@ discard block |
||
1202 | 1226 | 'subscription_list' => $toDelete, |
1203 | 1227 | ) |
1204 | 1228 | ); |
1205 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1206 | - removeSubscription($row['id_subscribe'], $row['id_member'], isset($_REQUEST['delete'])); |
|
1229 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1230 | + removeSubscription($row['id_subscribe'], $row['id_member'], isset($_REQUEST['delete'])); |
|
1231 | + } |
|
1207 | 1232 | $smcFunc['db_free_result']($request); |
1208 | 1233 | } |
1209 | 1234 | redirectexit('action=admin;area=paidsubscribe;sa=viewsub;sid=' . $context['sub_id']); |
@@ -1247,9 +1272,9 @@ discard block |
||
1247 | 1272 | ); |
1248 | 1273 | list ($context['sub']['username']) = $smcFunc['db_fetch_row']($request); |
1249 | 1274 | $smcFunc['db_free_result']($request); |
1275 | + } else { |
|
1276 | + $context['sub']['username'] = ''; |
|
1250 | 1277 | } |
1251 | - else |
|
1252 | - $context['sub']['username'] = ''; |
|
1253 | 1278 | } |
1254 | 1279 | // Otherwise load the existing info. |
1255 | 1280 | else |
@@ -1266,8 +1291,9 @@ discard block |
||
1266 | 1291 | 'blank_string' => '', |
1267 | 1292 | ) |
1268 | 1293 | ); |
1269 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1270 | - fatal_lang_error('no_access', false); |
|
1294 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1295 | + fatal_lang_error('no_access', false); |
|
1296 | + } |
|
1271 | 1297 | $row = $smcFunc['db_fetch_assoc']($request); |
1272 | 1298 | $smcFunc['db_free_result']($request); |
1273 | 1299 | |
@@ -1288,13 +1314,13 @@ discard block |
||
1288 | 1314 | { |
1289 | 1315 | foreach ($costs as $duration => $cost) |
1290 | 1316 | { |
1291 | - if ($cost != 0 && $cost == $pending[1] && $duration == $pending[2]) |
|
1292 | - $context['pending_payments'][$id] = array( |
|
1317 | + if ($cost != 0 && $cost == $pending[1] && $duration == $pending[2]) { |
|
1318 | + $context['pending_payments'][$id] = array( |
|
1293 | 1319 | 'desc' => sprintf($modSettings['paid_currency_symbol'], $cost . '/' . $txt[$duration]), |
1294 | 1320 | ); |
1321 | + } |
|
1295 | 1322 | } |
1296 | - } |
|
1297 | - elseif ($costs['fixed'] == $pending[1]) |
|
1323 | + } elseif ($costs['fixed'] == $pending[1]) |
|
1298 | 1324 | { |
1299 | 1325 | $context['pending_payments'][$id] = array( |
1300 | 1326 | 'desc' => sprintf($modSettings['paid_currency_symbol'], $costs['fixed']), |
@@ -1312,8 +1338,9 @@ discard block |
||
1312 | 1338 | if ($_GET['pending'] == $id && $pending[3] == 'payback' && isset($context['pending_payments'][$id])) |
1313 | 1339 | { |
1314 | 1340 | // Flexible? |
1315 | - if (isset($_GET['accept'])) |
|
1316 | - addSubscription($context['current_subscription']['id'], $row['id_member'], $context['current_subscription']['real_length'] == 'F' ? strtoupper(substr($pending[2], 0, 1)) : 0); |
|
1341 | + if (isset($_GET['accept'])) { |
|
1342 | + addSubscription($context['current_subscription']['id'], $row['id_member'], $context['current_subscription']['real_length'] == 'F' ? strtoupper(substr($pending[2], 0, 1)) : 0); |
|
1343 | + } |
|
1317 | 1344 | unset($pending_details[$id]); |
1318 | 1345 | |
1319 | 1346 | $new_details = $smcFunc['json_encode']($pending_details); |
@@ -1375,8 +1402,9 @@ discard block |
||
1375 | 1402 | global $smcFunc; |
1376 | 1403 | |
1377 | 1404 | // Make it an array. |
1378 | - if (!is_array($users)) |
|
1379 | - $users = array($users); |
|
1405 | + if (!is_array($users)) { |
|
1406 | + $users = array($users); |
|
1407 | + } |
|
1380 | 1408 | |
1381 | 1409 | // Get all the members current groups. |
1382 | 1410 | $groups = array(); |
@@ -1414,14 +1442,16 @@ discard block |
||
1414 | 1442 | if ($row['id_group'] != 0) |
1415 | 1443 | { |
1416 | 1444 | // If this is changing - add the old one to the additional groups so it's not lost. |
1417 | - if ($row['id_group'] != $groups[$row['id_member']]['primary']) |
|
1418 | - $groups[$row['id_member']]['additional'][] = $groups[$row['id_member']]['primary']; |
|
1445 | + if ($row['id_group'] != $groups[$row['id_member']]['primary']) { |
|
1446 | + $groups[$row['id_member']]['additional'][] = $groups[$row['id_member']]['primary']; |
|
1447 | + } |
|
1419 | 1448 | $groups[$row['id_member']]['primary'] = $row['id_group']; |
1420 | 1449 | } |
1421 | 1450 | |
1422 | 1451 | // Additional groups. |
1423 | - if (!empty($row['add_groups'])) |
|
1424 | - $groups[$row['id_member']]['additional'] = array_merge($groups[$row['id_member']]['additional'], explode(',', $row['add_groups'])); |
|
1452 | + if (!empty($row['add_groups'])) { |
|
1453 | + $groups[$row['id_member']]['additional'] = array_merge($groups[$row['id_member']]['additional'], explode(',', $row['add_groups'])); |
|
1454 | + } |
|
1425 | 1455 | } |
1426 | 1456 | $smcFunc['db_free_result']($request); |
1427 | 1457 | |
@@ -1429,9 +1459,10 @@ discard block |
||
1429 | 1459 | foreach ($groups as $id => $group) |
1430 | 1460 | { |
1431 | 1461 | $group['additional'] = array_unique($group['additional']); |
1432 | - foreach ($group['additional'] as $key => $value) |
|
1433 | - if (empty($value)) |
|
1462 | + foreach ($group['additional'] as $key => $value) { |
|
1463 | + if (empty($value)) |
|
1434 | 1464 | unset($group['additional'][$key]); |
1465 | + } |
|
1435 | 1466 | $addgroups = implode(',', $group['additional']); |
1436 | 1467 | |
1437 | 1468 | $smcFunc['db_query']('', ' |
@@ -1465,8 +1496,9 @@ discard block |
||
1465 | 1496 | loadSubscriptions(); |
1466 | 1497 | |
1467 | 1498 | // Exists, yes? |
1468 | - if (!isset($context['subscriptions'][$id_subscribe])) |
|
1469 | - return; |
|
1499 | + if (!isset($context['subscriptions'][$id_subscribe])) { |
|
1500 | + return; |
|
1501 | + } |
|
1470 | 1502 | |
1471 | 1503 | $curSub = $context['subscriptions'][$id_subscribe]; |
1472 | 1504 | |
@@ -1514,16 +1546,19 @@ discard block |
||
1514 | 1546 | list ($id_sublog, $endtime, $starttime) = $smcFunc['db_fetch_row']($request); |
1515 | 1547 | |
1516 | 1548 | // If this has already expired but is active, extension means the period from now. |
1517 | - if ($endtime < time()) |
|
1518 | - $endtime = time(); |
|
1519 | - if ($starttime == 0) |
|
1520 | - $starttime = time(); |
|
1549 | + if ($endtime < time()) { |
|
1550 | + $endtime = time(); |
|
1551 | + } |
|
1552 | + if ($starttime == 0) { |
|
1553 | + $starttime = time(); |
|
1554 | + } |
|
1521 | 1555 | |
1522 | 1556 | // Work out the new expiry date. |
1523 | 1557 | $endtime += $duration; |
1524 | 1558 | |
1525 | - if ($forceEndTime != 0) |
|
1526 | - $endtime = $forceEndTime; |
|
1559 | + if ($forceEndTime != 0) { |
|
1560 | + $endtime = $forceEndTime; |
|
1561 | + } |
|
1527 | 1562 | |
1528 | 1563 | // As everything else should be good, just update! |
1529 | 1564 | $smcFunc['db_query']('', ' |
@@ -1553,8 +1588,9 @@ discard block |
||
1553 | 1588 | ); |
1554 | 1589 | |
1555 | 1590 | // Just in case the member doesn't exist. |
1556 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1557 | - return; |
|
1591 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1592 | + return; |
|
1593 | + } |
|
1558 | 1594 | |
1559 | 1595 | list ($old_id_group, $additional_groups) = $smcFunc['db_fetch_row']($request); |
1560 | 1596 | $smcFunc['db_free_result']($request); |
@@ -1571,16 +1607,18 @@ discard block |
||
1571 | 1607 | $id_group = $curSub['prim_group']; |
1572 | 1608 | |
1573 | 1609 | // Ensure their old privileges are maintained. |
1574 | - if ($old_id_group != 0) |
|
1575 | - $newAddGroups[] = $old_id_group; |
|
1610 | + if ($old_id_group != 0) { |
|
1611 | + $newAddGroups[] = $old_id_group; |
|
1612 | + } |
|
1613 | + } else { |
|
1614 | + $id_group = $old_id_group; |
|
1576 | 1615 | } |
1577 | - else |
|
1578 | - $id_group = $old_id_group; |
|
1579 | 1616 | |
1580 | 1617 | // Yep, make sure it's unique, and no empties. |
1581 | - foreach ($newAddGroups as $k => $v) |
|
1582 | - if (empty($v)) |
|
1618 | + foreach ($newAddGroups as $k => $v) { |
|
1619 | + if (empty($v)) |
|
1583 | 1620 | unset($newAddGroups[$k]); |
1621 | + } |
|
1584 | 1622 | $newAddGroups = array_unique($newAddGroups); |
1585 | 1623 | $newAddGroups = implode(',', $newAddGroups); |
1586 | 1624 | |
@@ -1616,16 +1654,19 @@ discard block |
||
1616 | 1654 | list ($id_sublog, $endtime, $starttime) = $smcFunc['db_fetch_row']($request); |
1617 | 1655 | |
1618 | 1656 | // If this has already expired but is active, extension means the period from now. |
1619 | - if ($endtime < time()) |
|
1620 | - $endtime = time(); |
|
1621 | - if ($starttime == 0) |
|
1622 | - $starttime = time(); |
|
1657 | + if ($endtime < time()) { |
|
1658 | + $endtime = time(); |
|
1659 | + } |
|
1660 | + if ($starttime == 0) { |
|
1661 | + $starttime = time(); |
|
1662 | + } |
|
1623 | 1663 | |
1624 | 1664 | // Work out the new expiry date. |
1625 | 1665 | $endtime += $duration; |
1626 | 1666 | |
1627 | - if ($forceEndTime != 0) |
|
1628 | - $endtime = $forceEndTime; |
|
1667 | + if ($forceEndTime != 0) { |
|
1668 | + $endtime = $forceEndTime; |
|
1669 | + } |
|
1629 | 1670 | |
1630 | 1671 | // As everything else should be good, just update! |
1631 | 1672 | $smcFunc['db_query']('', ' |
@@ -1648,13 +1689,15 @@ discard block |
||
1648 | 1689 | |
1649 | 1690 | // Otherwise a very simple insert. |
1650 | 1691 | $endtime = time() + $duration; |
1651 | - if ($forceEndTime != 0) |
|
1652 | - $endtime = $forceEndTime; |
|
1692 | + if ($forceEndTime != 0) { |
|
1693 | + $endtime = $forceEndTime; |
|
1694 | + } |
|
1653 | 1695 | |
1654 | - if ($forceStartTime == 0) |
|
1655 | - $starttime = time(); |
|
1656 | - else |
|
1657 | - $starttime = $forceStartTime; |
|
1696 | + if ($forceStartTime == 0) { |
|
1697 | + $starttime = time(); |
|
1698 | + } else { |
|
1699 | + $starttime = $forceStartTime; |
|
1700 | + } |
|
1658 | 1701 | |
1659 | 1702 | $smcFunc['db_insert']('', |
1660 | 1703 | '{db_prefix}log_subscribed', |
@@ -1727,15 +1770,17 @@ discard block |
||
1727 | 1770 | $new_id_group = -1; |
1728 | 1771 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1729 | 1772 | { |
1730 | - if (!isset($context['subscriptions'][$row['id_subscribe']])) |
|
1731 | - continue; |
|
1773 | + if (!isset($context['subscriptions'][$row['id_subscribe']])) { |
|
1774 | + continue; |
|
1775 | + } |
|
1732 | 1776 | |
1733 | 1777 | // The one we're removing? |
1734 | 1778 | if ($row['id_subscribe'] == $id_subscribe) |
1735 | 1779 | { |
1736 | 1780 | $removals = explode(',', $context['subscriptions'][$row['id_subscribe']]['add_groups']); |
1737 | - if ($context['subscriptions'][$row['id_subscribe']]['prim_group'] != 0) |
|
1738 | - $removals[] = $context['subscriptions'][$row['id_subscribe']]['prim_group']; |
|
1781 | + if ($context['subscriptions'][$row['id_subscribe']]['prim_group'] != 0) { |
|
1782 | + $removals[] = $context['subscriptions'][$row['id_subscribe']]['prim_group']; |
|
1783 | + } |
|
1739 | 1784 | $old_id_group = $row['old_id_group']; |
1740 | 1785 | } |
1741 | 1786 | // Otherwise things we allow. |
@@ -1753,30 +1798,33 @@ discard block |
||
1753 | 1798 | |
1754 | 1799 | // Now, for everything we are removing check they definitely are not allowed it. |
1755 | 1800 | $existingGroups = explode(',', $additional_groups); |
1756 | - foreach ($existingGroups as $key => $group) |
|
1757 | - if (empty($group) || (in_array($group, $removals) && !in_array($group, $allowed))) |
|
1801 | + foreach ($existingGroups as $key => $group) { |
|
1802 | + if (empty($group) || (in_array($group, $removals) && !in_array($group, $allowed))) |
|
1758 | 1803 | unset($existingGroups[$key]); |
1804 | + } |
|
1759 | 1805 | |
1760 | 1806 | // Finally, do something with the current primary group. |
1761 | 1807 | if (in_array($id_group, $removals)) |
1762 | 1808 | { |
1763 | 1809 | // If this primary group is actually allowed keep it. |
1764 | - if (in_array($id_group, $allowed)) |
|
1765 | - $existingGroups[] = $id_group; |
|
1810 | + if (in_array($id_group, $allowed)) { |
|
1811 | + $existingGroups[] = $id_group; |
|
1812 | + } |
|
1766 | 1813 | |
1767 | 1814 | // Either way, change the id_group back. |
1768 | 1815 | if ($new_id_group < 1) |
1769 | 1816 | { |
1770 | 1817 | // If we revert to the old id-group we need to ensure it wasn't from a subscription. |
1771 | - foreach ($context['subscriptions'] as $id => $group) |
|
1772 | - // It was? Make them a regular member then! |
|
1818 | + foreach ($context['subscriptions'] as $id => $group) { |
|
1819 | + // It was? Make them a regular member then! |
|
1773 | 1820 | if ($group['prim_group'] == $old_id_group) |
1774 | 1821 | $old_id_group = 0; |
1822 | + } |
|
1775 | 1823 | |
1776 | 1824 | $id_group = $old_id_group; |
1825 | + } else { |
|
1826 | + $id_group = $new_id_group; |
|
1777 | 1827 | } |
1778 | - else |
|
1779 | - $id_group = $new_id_group; |
|
1780 | 1828 | } |
1781 | 1829 | |
1782 | 1830 | // Crazy stuff, we seem to have our groups fixed, just make them unique |
@@ -1796,8 +1844,8 @@ discard block |
||
1796 | 1844 | ); |
1797 | 1845 | |
1798 | 1846 | // Disable the subscription. |
1799 | - if (!$delete) |
|
1800 | - $smcFunc['db_query']('', ' |
|
1847 | + if (!$delete) { |
|
1848 | + $smcFunc['db_query']('', ' |
|
1801 | 1849 | UPDATE {db_prefix}log_subscribed |
1802 | 1850 | SET status = {int:not_active} |
1803 | 1851 | WHERE id_member = {int:current_member} |
@@ -1808,9 +1856,10 @@ discard block |
||
1808 | 1856 | 'current_subscription' => $id_subscribe, |
1809 | 1857 | ) |
1810 | 1858 | ); |
1859 | + } |
|
1811 | 1860 | // Otherwise delete it! |
1812 | - else |
|
1813 | - $smcFunc['db_query']('', ' |
|
1861 | + else { |
|
1862 | + $smcFunc['db_query']('', ' |
|
1814 | 1863 | DELETE FROM {db_prefix}log_subscribed |
1815 | 1864 | WHERE id_member = {int:current_member} |
1816 | 1865 | AND id_subscribe = {int:current_subscription}', |
@@ -1819,7 +1868,8 @@ discard block |
||
1819 | 1868 | 'current_subscription' => $id_subscribe, |
1820 | 1869 | ) |
1821 | 1870 | ); |
1822 | -} |
|
1871 | + } |
|
1872 | + } |
|
1823 | 1873 | |
1824 | 1874 | /** |
1825 | 1875 | * This just kind of caches all the subscription data. |
@@ -1828,8 +1878,9 @@ discard block |
||
1828 | 1878 | { |
1829 | 1879 | global $context, $txt, $modSettings, $smcFunc; |
1830 | 1880 | |
1831 | - if (!empty($context['subscriptions'])) |
|
1832 | - return; |
|
1881 | + if (!empty($context['subscriptions'])) { |
|
1882 | + return; |
|
1883 | + } |
|
1833 | 1884 | |
1834 | 1885 | // Make sure this is loaded, just in case. |
1835 | 1886 | loadLanguage('ManagePaid'); |
@@ -1846,10 +1897,11 @@ discard block |
||
1846 | 1897 | // Pick a cost. |
1847 | 1898 | $costs = $smcFunc['json_decode']($row['cost'], true); |
1848 | 1899 | |
1849 | - if ($row['length'] != 'F' && !empty($modSettings['paid_currency_symbol']) && !empty($costs['fixed'])) |
|
1850 | - $cost = sprintf($modSettings['paid_currency_symbol'], $costs['fixed']); |
|
1851 | - else |
|
1852 | - $cost = '???'; |
|
1900 | + if ($row['length'] != 'F' && !empty($modSettings['paid_currency_symbol']) && !empty($costs['fixed'])) { |
|
1901 | + $cost = sprintf($modSettings['paid_currency_symbol'], $costs['fixed']); |
|
1902 | + } else { |
|
1903 | + $cost = '???'; |
|
1904 | + } |
|
1853 | 1905 | |
1854 | 1906 | // Do the span. |
1855 | 1907 | preg_match('~(\d*)(\w)~', $row['length'], $match); |
@@ -1876,9 +1928,9 @@ discard block |
||
1876 | 1928 | $num_length *= 31556926; |
1877 | 1929 | break; |
1878 | 1930 | } |
1931 | + } else { |
|
1932 | + $length = '??'; |
|
1879 | 1933 | } |
1880 | - else |
|
1881 | - $length = '??'; |
|
1882 | 1934 | |
1883 | 1935 | $context['subscriptions'][$row['id_subscribe']] = array( |
1884 | 1936 | 'id' => $row['id_subscribe'], |
@@ -1913,8 +1965,9 @@ discard block |
||
1913 | 1965 | { |
1914 | 1966 | $ind = $row['status'] == 0 ? 'finished' : 'total'; |
1915 | 1967 | |
1916 | - if (isset($context['subscriptions'][$row['id_subscribe']])) |
|
1917 | - $context['subscriptions'][$row['id_subscribe']][$ind] = $row['member_count']; |
|
1968 | + if (isset($context['subscriptions'][$row['id_subscribe']])) { |
|
1969 | + $context['subscriptions'][$row['id_subscribe']][$ind] = $row['member_count']; |
|
1970 | + } |
|
1918 | 1971 | } |
1919 | 1972 | $smcFunc['db_free_result']($request); |
1920 | 1973 | |
@@ -1928,8 +1981,9 @@ discard block |
||
1928 | 1981 | ); |
1929 | 1982 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1930 | 1983 | { |
1931 | - if (isset($context['subscriptions'][$row['id_subscribe']])) |
|
1932 | - $context['subscriptions'][$row['id_subscribe']]['pending'] = $row['total_pending']; |
|
1984 | + if (isset($context['subscriptions'][$row['id_subscribe']])) { |
|
1985 | + $context['subscriptions'][$row['id_subscribe']]['pending'] = $row['total_pending']; |
|
1986 | + } |
|
1933 | 1987 | } |
1934 | 1988 | $smcFunc['db_free_result']($request); |
1935 | 1989 | } |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * Entry point for this section. |
@@ -38,8 +39,7 @@ discard block |
||
38 | 39 | 'stats' => 'SpiderStats', |
39 | 40 | ); |
40 | 41 | $default = 'stats'; |
41 | - } |
|
42 | - else |
|
42 | + } else |
|
43 | 43 | { |
44 | 44 | $subActions = array( |
45 | 45 | 'settings' => 'ManageSearchEngineSettings', |
@@ -90,11 +90,12 @@ discard block |
||
90 | 90 | { |
91 | 91 | disabledState = document.getElementById(\'spider_mode\').value == 0;'; |
92 | 92 | |
93 | - foreach ($config_vars as $variable) |
|
94 | - if ($variable[1] != 'spider_mode') |
|
93 | + foreach ($config_vars as $variable) { |
|
94 | + if ($variable[1] != 'spider_mode') |
|
95 | 95 | $javascript_function .= ' |
96 | 96 | if (document.getElementById(\'' . $variable[1] . '\')) |
97 | 97 | document.getElementById(\'' . $variable[1] . '\').disabled = disabledState;'; |
98 | + } |
|
98 | 99 | |
99 | 100 | $javascript_function .= ' |
100 | 101 | } |
@@ -102,8 +103,9 @@ discard block |
||
102 | 103 | |
103 | 104 | call_integration_hook('integrate_modify_search_engine_settings', array(&$config_vars)); |
104 | 105 | |
105 | - if ($return_config) |
|
106 | - return $config_vars; |
|
106 | + if ($return_config) { |
|
107 | + return $config_vars; |
|
108 | + } |
|
107 | 109 | |
108 | 110 | // We need to load the groups for the spider group thingy. |
109 | 111 | $request = $smcFunc['db_query']('', ' |
@@ -116,13 +118,15 @@ discard block |
||
116 | 118 | 'moderator_group' => 3, |
117 | 119 | ) |
118 | 120 | ); |
119 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
120 | - $config_vars['spider_group'][2][$row['id_group']] = $row['group_name']; |
|
121 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
122 | + $config_vars['spider_group'][2][$row['id_group']] = $row['group_name']; |
|
123 | + } |
|
121 | 124 | $smcFunc['db_free_result']($request); |
122 | 125 | |
123 | 126 | // Make sure it's valid - note that regular members are given id_group = 1 which is reversed in Load.php - no admins here! |
124 | - if (isset($_POST['spider_group']) && !isset($config_vars['spider_group'][2][$_POST['spider_group']])) |
|
125 | - $_POST['spider_group'] = 0; |
|
127 | + if (isset($_POST['spider_group']) && !isset($config_vars['spider_group'][2][$_POST['spider_group']])) { |
|
128 | + $_POST['spider_group'] = 0; |
|
129 | + } |
|
126 | 130 | |
127 | 131 | // We'll want this for our easy save. |
128 | 132 | require_once($sourcedir . '/ManageServer.php'); |
@@ -166,8 +170,9 @@ discard block |
||
166 | 170 | } |
167 | 171 | |
168 | 172 | // Are we adding a new one? |
169 | - if (!empty($_POST['addSpider'])) |
|
170 | - return EditSpider(); |
|
173 | + if (!empty($_POST['addSpider'])) { |
|
174 | + return EditSpider(); |
|
175 | + } |
|
171 | 176 | // User pressed the 'remove selection button'. |
172 | 177 | elseif (!empty($_POST['removeSpiders']) && !empty($_POST['remove']) && is_array($_POST['remove'])) |
173 | 178 | { |
@@ -175,8 +180,9 @@ discard block |
||
175 | 180 | validateToken('admin-ser'); |
176 | 181 | |
177 | 182 | // Make sure every entry is a proper integer. |
178 | - foreach ($_POST['remove'] as $index => $spider_id) |
|
179 | - $_POST['remove'][(int) $index] = (int) $spider_id; |
|
183 | + foreach ($_POST['remove'] as $index => $spider_id) { |
|
184 | + $_POST['remove'][(int) $index] = (int) $spider_id; |
|
185 | + } |
|
180 | 186 | |
181 | 187 | // Delete them all! |
182 | 188 | $smcFunc['db_query']('', ' |
@@ -215,8 +221,9 @@ discard block |
||
215 | 221 | ); |
216 | 222 | |
217 | 223 | $context['spider_last_seen'] = array(); |
218 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
219 | - $context['spider_last_seen'][$row['id_spider']] = $row['last_seen_time']; |
|
224 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
225 | + $context['spider_last_seen'][$row['id_spider']] = $row['last_seen_time']; |
|
226 | + } |
|
220 | 227 | $smcFunc['db_free_result']($request); |
221 | 228 | |
222 | 229 | createToken('admin-ser'); |
@@ -346,8 +353,9 @@ discard block |
||
346 | 353 | ) |
347 | 354 | ); |
348 | 355 | $spiders = array(); |
349 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
350 | - $spiders[$row['id_spider']] = $row; |
|
356 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
357 | + $spiders[$row['id_spider']] = $row; |
|
358 | + } |
|
351 | 359 | $smcFunc['db_free_result']($request); |
352 | 360 | |
353 | 361 | return $spiders; |
@@ -397,14 +405,15 @@ discard block |
||
397 | 405 | foreach ($ip_sets as $set) |
398 | 406 | { |
399 | 407 | $test = ip2range(trim($set)); |
400 | - if (!empty($test)) |
|
401 | - $ips[] = $set; |
|
408 | + if (!empty($test)) { |
|
409 | + $ips[] = $set; |
|
410 | + } |
|
402 | 411 | } |
403 | 412 | $ips = implode(',', $ips); |
404 | 413 | |
405 | 414 | // Goes in as it is... |
406 | - if ($context['id_spider']) |
|
407 | - $smcFunc['db_query']('', ' |
|
415 | + if ($context['id_spider']) { |
|
416 | + $smcFunc['db_query']('', ' |
|
408 | 417 | UPDATE {db_prefix}spiders |
409 | 418 | SET spider_name = {string:spider_name}, user_agent = {string:spider_agent}, |
410 | 419 | ip_info = {string:ip_info} |
@@ -416,8 +425,8 @@ discard block |
||
416 | 425 | 'ip_info' => $ips, |
417 | 426 | ) |
418 | 427 | ); |
419 | - else |
|
420 | - $smcFunc['db_insert']('insert', |
|
428 | + } else { |
|
429 | + $smcFunc['db_insert']('insert', |
|
421 | 430 | '{db_prefix}spiders', |
422 | 431 | array( |
423 | 432 | 'spider_name' => 'string', 'user_agent' => 'string', 'ip_info' => 'string', |
@@ -427,6 +436,7 @@ discard block |
||
427 | 436 | ), |
428 | 437 | array('id_spider') |
429 | 438 | ); |
439 | + } |
|
430 | 440 | |
431 | 441 | |
432 | 442 | cache_put_data('spider_search', null); |
@@ -454,13 +464,14 @@ discard block |
||
454 | 464 | 'current_spider' => $context['id_spider'], |
455 | 465 | ) |
456 | 466 | ); |
457 | - if ($row = $smcFunc['db_fetch_assoc']($request)) |
|
458 | - $context['spider'] = array( |
|
467 | + if ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
468 | + $context['spider'] = array( |
|
459 | 469 | 'id' => $row['id_spider'], |
460 | 470 | 'name' => $row['spider_name'], |
461 | 471 | 'agent' => $row['user_agent'], |
462 | 472 | 'ip_info' => $row['ip_info'], |
463 | 473 | ); |
474 | + } |
|
464 | 475 | $smcFunc['db_free_result']($request); |
465 | 476 | } |
466 | 477 | |
@@ -477,8 +488,9 @@ discard block |
||
477 | 488 | { |
478 | 489 | global $modSettings, $smcFunc; |
479 | 490 | |
480 | - if (isset($_SESSION['id_robot'])) |
|
481 | - unset($_SESSION['id_robot']); |
|
491 | + if (isset($_SESSION['id_robot'])) { |
|
492 | + unset($_SESSION['id_robot']); |
|
493 | + } |
|
482 | 494 | $_SESSION['robot_check'] = time(); |
483 | 495 | |
484 | 496 | // We cache the spider data for ten minutes if we can. |
@@ -492,15 +504,17 @@ discard block |
||
492 | 504 | ) |
493 | 505 | ); |
494 | 506 | $spider_data = array(); |
495 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
496 | - $spider_data[] = $row; |
|
507 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
508 | + $spider_data[] = $row; |
|
509 | + } |
|
497 | 510 | $smcFunc['db_free_result']($request); |
498 | 511 | |
499 | 512 | cache_put_data('spider_search', $spider_data, 600); |
500 | 513 | } |
501 | 514 | |
502 | - if (empty($spider_data)) |
|
503 | - return false; |
|
515 | + if (empty($spider_data)) { |
|
516 | + return false; |
|
517 | + } |
|
504 | 518 | |
505 | 519 | // Only do these bits once. |
506 | 520 | $ci_user_agent = strtolower($_SERVER['HTTP_USER_AGENT']); |
@@ -508,33 +522,38 @@ discard block |
||
508 | 522 | foreach ($spider_data as $spider) |
509 | 523 | { |
510 | 524 | // User agent is easy. |
511 | - if (!empty($spider['user_agent']) && strpos($ci_user_agent, strtolower($spider['user_agent'])) !== false) |
|
512 | - $_SESSION['id_robot'] = $spider['id_spider']; |
|
525 | + if (!empty($spider['user_agent']) && strpos($ci_user_agent, strtolower($spider['user_agent'])) !== false) { |
|
526 | + $_SESSION['id_robot'] = $spider['id_spider']; |
|
527 | + } |
|
513 | 528 | // IP stuff is harder. |
514 | 529 | elseif ($_SERVER['REMOTE_ADDR']) |
515 | 530 | { |
516 | 531 | $ips = explode(',', $spider['ip_info']); |
517 | 532 | foreach ($ips as $ip) |
518 | 533 | { |
519 | - if ($ip === '') |
|
520 | - continue; |
|
534 | + if ($ip === '') { |
|
535 | + continue; |
|
536 | + } |
|
521 | 537 | |
522 | 538 | $ip = ip2range($ip); |
523 | 539 | if (!empty($ip)) |
524 | 540 | { |
525 | - if (inet_ptod($ip['low']) <= inet_ptod($_SERVER['REMOTE_ADDR']) && inet_ptod($ip['high']) >= inet_ptod($_SERVER['REMOTE_ADDR'])) |
|
526 | - $_SESSION['id_robot'] = $spider['id_spider']; |
|
541 | + if (inet_ptod($ip['low']) <= inet_ptod($_SERVER['REMOTE_ADDR']) && inet_ptod($ip['high']) >= inet_ptod($_SERVER['REMOTE_ADDR'])) { |
|
542 | + $_SESSION['id_robot'] = $spider['id_spider']; |
|
543 | + } |
|
527 | 544 | } |
528 | 545 | } |
529 | 546 | } |
530 | 547 | |
531 | - if (isset($_SESSION['id_robot'])) |
|
532 | - break; |
|
548 | + if (isset($_SESSION['id_robot'])) { |
|
549 | + break; |
|
550 | + } |
|
533 | 551 | } |
534 | 552 | |
535 | 553 | // If this is low server tracking then log the spider here as opposed to the main logging function. |
536 | - if (!empty($modSettings['spider_mode']) && $modSettings['spider_mode'] == 1 && !empty($_SESSION['id_robot'])) |
|
537 | - logSpider(); |
|
554 | + if (!empty($modSettings['spider_mode']) && $modSettings['spider_mode'] == 1 && !empty($_SESSION['id_robot'])) { |
|
555 | + logSpider(); |
|
556 | + } |
|
538 | 557 | |
539 | 558 | return !empty($_SESSION['id_robot']) ? $_SESSION['id_robot'] : 0; |
540 | 559 | } |
@@ -548,8 +567,9 @@ discard block |
||
548 | 567 | { |
549 | 568 | global $smcFunc, $modSettings, $context; |
550 | 569 | |
551 | - if (empty($modSettings['spider_mode']) || empty($_SESSION['id_robot'])) |
|
552 | - return; |
|
570 | + if (empty($modSettings['spider_mode']) || empty($_SESSION['id_robot'])) { |
|
571 | + return; |
|
572 | + } |
|
553 | 573 | |
554 | 574 | // Attempt to update today's entry. |
555 | 575 | if ($modSettings['spider_mode'] == 1) |
@@ -590,9 +610,9 @@ discard block |
||
590 | 610 | $url = $_GET + array('USER_AGENT' => $_SERVER['HTTP_USER_AGENT']); |
591 | 611 | unset($url['sesc'], $url[$context['session_var']]); |
592 | 612 | $url = $smcFunc['json_encode']($url); |
613 | + } else { |
|
614 | + $url = ''; |
|
593 | 615 | } |
594 | - else |
|
595 | - $url = ''; |
|
596 | 616 | |
597 | 617 | $smcFunc['db_insert']('insert', |
598 | 618 | '{db_prefix}log_spider_hits', |
@@ -620,12 +640,14 @@ discard block |
||
620 | 640 | ) |
621 | 641 | ); |
622 | 642 | $spider_hits = array(); |
623 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
624 | - $spider_hits[] = $row; |
|
643 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
644 | + $spider_hits[] = $row; |
|
645 | + } |
|
625 | 646 | $smcFunc['db_free_result']($request); |
626 | 647 | |
627 | - if (empty($spider_hits)) |
|
628 | - return; |
|
648 | + if (empty($spider_hits)) { |
|
649 | + return; |
|
650 | + } |
|
629 | 651 | |
630 | 652 | // Attempt to update the master data. |
631 | 653 | $stat_inserts = array(); |
@@ -646,18 +668,20 @@ discard block |
||
646 | 668 | 'hits' => $stat['num_hits'], |
647 | 669 | ) |
648 | 670 | ); |
649 | - if ($smcFunc['db_affected_rows']() == 0) |
|
650 | - $stat_inserts[] = array($date, $stat['id_spider'], $stat['num_hits'], $stat['last_seen']); |
|
671 | + if ($smcFunc['db_affected_rows']() == 0) { |
|
672 | + $stat_inserts[] = array($date, $stat['id_spider'], $stat['num_hits'], $stat['last_seen']); |
|
673 | + } |
|
651 | 674 | } |
652 | 675 | |
653 | 676 | // New stats? |
654 | - if (!empty($stat_inserts)) |
|
655 | - $smcFunc['db_insert']('ignore', |
|
677 | + if (!empty($stat_inserts)) { |
|
678 | + $smcFunc['db_insert']('ignore', |
|
656 | 679 | '{db_prefix}log_spider_stats', |
657 | 680 | array('stat_date' => 'date', 'id_spider' => 'int', 'page_hits' => 'int', 'last_seen' => 'int'), |
658 | 681 | $stat_inserts, |
659 | 682 | array('stat_date', 'id_spider') |
660 | 683 | ); |
684 | + } |
|
661 | 685 | |
662 | 686 | // All processed. |
663 | 687 | $smcFunc['db_query']('', ' |
@@ -700,8 +724,7 @@ discard block |
||
700 | 724 | 'delete_period' => $deleteTime, |
701 | 725 | ) |
702 | 726 | ); |
703 | - } |
|
704 | - else |
|
727 | + } else |
|
705 | 728 | { |
706 | 729 | // Deleting all of them |
707 | 730 | $smcFunc['db_query']('', ' |
@@ -791,10 +814,11 @@ discard block |
||
791 | 814 | foreach ($context['spider_logs']['rows'] as $k => $row) |
792 | 815 | { |
793 | 816 | // Feature disabled? |
794 | - if (empty($row['data']['viewing']['value']) && isset($modSettings['spider_mode']) && $modSettings['spider_mode'] < 3) |
|
795 | - $context['spider_logs']['rows'][$k]['viewing']['value'] = '<em>' . $txt['spider_disabled'] . '</em>'; |
|
796 | - else |
|
797 | - $urls[$k] = array($row['data']['viewing']['value'], -1); |
|
817 | + if (empty($row['data']['viewing']['value']) && isset($modSettings['spider_mode']) && $modSettings['spider_mode'] < 3) { |
|
818 | + $context['spider_logs']['rows'][$k]['viewing']['value'] = '<em>' . $txt['spider_disabled'] . '</em>'; |
|
819 | + } else { |
|
820 | + $urls[$k] = array($row['data']['viewing']['value'], -1); |
|
821 | + } |
|
798 | 822 | } |
799 | 823 | |
800 | 824 | // Now stick in the new URLs. |
@@ -836,8 +860,9 @@ discard block |
||
836 | 860 | ) |
837 | 861 | ); |
838 | 862 | $spider_logs = array(); |
839 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
840 | - $spider_logs[] = $row; |
|
863 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
864 | + $spider_logs[] = $row; |
|
865 | + } |
|
841 | 866 | $smcFunc['db_free_result']($request); |
842 | 867 | |
843 | 868 | return $spider_logs; |
@@ -913,14 +938,18 @@ discard block |
||
913 | 938 | |
914 | 939 | // Prepare the dates for the drop down. |
915 | 940 | $date_choices = array(); |
916 | - for ($y = $min_year; $y <= $max_year; $y++) |
|
917 | - for ($m = 1; $m <= 12; $m++) |
|
941 | + for ($y = $min_year; $y <= $max_year; $y++) { |
|
942 | + for ($m = 1; |
|
943 | + } |
|
944 | + $m <= 12; $m++) |
|
918 | 945 | { |
919 | 946 | // This doesn't count? |
920 | - if ($y == $min_year && $m < $min_month) |
|
921 | - continue; |
|
922 | - if ($y == $max_year && $m > $max_month) |
|
923 | - break; |
|
947 | + if ($y == $min_year && $m < $min_month) { |
|
948 | + continue; |
|
949 | + } |
|
950 | + if ($y == $max_year && $m > $max_month) { |
|
951 | + break; |
|
952 | + } |
|
924 | 953 | |
925 | 954 | $date_choices[$y . $m] = $txt['months_short'][$m] . ' ' . $y; |
926 | 955 | } |
@@ -933,13 +962,14 @@ discard block |
||
933 | 962 | ' . $txt['spider_stats_select_month'] . ': |
934 | 963 | <select name="new_date" onchange="document.spider_stat_list.submit();">'; |
935 | 964 | |
936 | - if (empty($date_choices)) |
|
937 | - $date_select .= ' |
|
965 | + if (empty($date_choices)) { |
|
966 | + $date_select .= ' |
|
938 | 967 | <option></option>'; |
939 | - else |
|
940 | - foreach ($date_choices as $id => $text) |
|
968 | + } else { |
|
969 | + foreach ($date_choices as $id => $text) |
|
941 | 970 | $date_select .= ' |
942 | 971 | <option value="' . $id . '"' . ($current_date == $id ? ' selected' : '') . '>' . $text . '</option>'; |
972 | + } |
|
943 | 973 | |
944 | 974 | $date_select .= ' |
945 | 975 | </select> |
@@ -1063,8 +1093,9 @@ discard block |
||
1063 | 1093 | ) |
1064 | 1094 | ); |
1065 | 1095 | $spider_stats = array(); |
1066 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1067 | - $spider_stats[] = $row; |
|
1096 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1097 | + $spider_stats[] = $row; |
|
1098 | + } |
|
1068 | 1099 | $smcFunc['db_free_result']($request); |
1069 | 1100 | |
1070 | 1101 | return $spider_stats; |
@@ -1105,8 +1136,9 @@ discard block |
||
1105 | 1136 | array() |
1106 | 1137 | ); |
1107 | 1138 | $spiders = array(); |
1108 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1109 | - $spiders[$row['id_spider']] = $row['spider_name']; |
|
1139 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1140 | + $spiders[$row['id_spider']] = $row['spider_name']; |
|
1141 | + } |
|
1110 | 1142 | $smcFunc['db_free_result']($request); |
1111 | 1143 | |
1112 | 1144 | updateSettings(array('spider_name_cache' => $smcFunc['json_encode']($spiders))); |
@@ -14,8 +14,9 @@ discard block |
||
14 | 14 | * @version 2.1 Beta 4 |
15 | 15 | */ |
16 | 16 | |
17 | -if (!defined('SMF')) |
|
17 | +if (!defined('SMF')) { |
|
18 | 18 | die('No direct access...'); |
19 | +} |
|
19 | 20 | |
20 | 21 | /** |
21 | 22 | * !!!Compatibility!!! |
@@ -30,8 +31,9 @@ discard block |
||
30 | 31 | { |
31 | 32 | global $modSettings; |
32 | 33 | |
33 | - if (!$compat_mode) |
|
34 | - return $text; |
|
34 | + if (!$compat_mode) { |
|
35 | + return $text; |
|
36 | + } |
|
35 | 37 | |
36 | 38 | // Turn line breaks back into br's. |
37 | 39 | $text = strtr($text, array("\r" => '', "\n" => '<br>')); |
@@ -48,8 +50,9 @@ discard block |
||
48 | 50 | for ($i = 0, $n = count($parts); $i < $n; $i++) |
49 | 51 | { |
50 | 52 | // Value of 2 means we're inside the tag. |
51 | - if ($i % 4 == 2) |
|
52 | - $parts[$i] = strtr($parts[$i], array('[' => '[', ']' => ']', "'" => "'")); |
|
53 | + if ($i % 4 == 2) { |
|
54 | + $parts[$i] = strtr($parts[$i], array('[' => '[', ']' => ']', "'" => "'")); |
|
55 | + } |
|
53 | 56 | } |
54 | 57 | // Put our humpty dumpty message back together again. |
55 | 58 | $text = implode('', $parts); |
@@ -107,8 +110,9 @@ discard block |
||
107 | 110 | $text = preg_replace('~</p>\s*(?!<)~i', '</p><br>', $text); |
108 | 111 | |
109 | 112 | // Safari/webkit wraps lines in Wysiwyg in <div>'s. |
110 | - if (isBrowser('webkit')) |
|
111 | - $text = preg_replace(array('~<div(?:\s(?:[^<>]*?))?' . '>~i', '</div>'), array('<br>', ''), $text); |
|
113 | + if (isBrowser('webkit')) { |
|
114 | + $text = preg_replace(array('~<div(?:\s(?:[^<>]*?))?' . '>~i', '</div>'), array('<br>', ''), $text); |
|
115 | + } |
|
112 | 116 | |
113 | 117 | // If there's a trailing break get rid of it - Firefox tends to add one. |
114 | 118 | $text = preg_replace('~<br\s?/?' . '>$~i', '', $text); |
@@ -123,8 +127,9 @@ discard block |
||
123 | 127 | for ($i = 0, $n = count($parts); $i < $n; $i++) |
124 | 128 | { |
125 | 129 | // Value of 2 means we're inside the tag. |
126 | - if ($i % 4 == 2) |
|
127 | - $parts[$i] = strip_tags($parts[$i]); |
|
130 | + if ($i % 4 == 2) { |
|
131 | + $parts[$i] = strip_tags($parts[$i]); |
|
132 | + } |
|
128 | 133 | } |
129 | 134 | |
130 | 135 | $text = strtr(implode('', $parts), array('#smf_br_spec_grudge_cool!#' => '<br>')); |
@@ -150,18 +155,19 @@ discard block |
||
150 | 155 | { |
151 | 156 | $found = array_search($file, $smileysto); |
152 | 157 | // Note the weirdness here is to stop double spaces between smileys. |
153 | - if ($found) |
|
154 | - $matches[1][$k] = '-[]-smf_smily_start#|#' . $smcFunc['htmlspecialchars']($smileysfrom[$found]) . '-[]-smf_smily_end#|#'; |
|
155 | - else |
|
156 | - $matches[1][$k] = ''; |
|
158 | + if ($found) { |
|
159 | + $matches[1][$k] = '-[]-smf_smily_start#|#' . $smcFunc['htmlspecialchars']($smileysfrom[$found]) . '-[]-smf_smily_end#|#'; |
|
160 | + } else { |
|
161 | + $matches[1][$k] = ''; |
|
162 | + } |
|
157 | 163 | } |
158 | - } |
|
159 | - else |
|
164 | + } else |
|
160 | 165 | { |
161 | 166 | // Load all the smileys. |
162 | 167 | $names = array(); |
163 | - foreach ($matches[1] as $file) |
|
164 | - $names[] = $file; |
|
168 | + foreach ($matches[1] as $file) { |
|
169 | + $names[] = $file; |
|
170 | + } |
|
165 | 171 | $names = array_unique($names); |
166 | 172 | |
167 | 173 | if (!empty($names)) |
@@ -175,13 +181,15 @@ discard block |
||
175 | 181 | ) |
176 | 182 | ); |
177 | 183 | $mappings = array(); |
178 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
179 | - $mappings[$row['filename']] = $smcFunc['htmlspecialchars']($row['code']); |
|
184 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
185 | + $mappings[$row['filename']] = $smcFunc['htmlspecialchars']($row['code']); |
|
186 | + } |
|
180 | 187 | $smcFunc['db_free_result']($request); |
181 | 188 | |
182 | - foreach ($matches[1] as $k => $file) |
|
183 | - if (isset($mappings[$file])) |
|
189 | + foreach ($matches[1] as $k => $file) { |
|
190 | + if (isset($mappings[$file])) |
|
184 | 191 | $matches[1][$k] = '-[]-smf_smily_start#|#' . $mappings[$file] . '-[]-smf_smily_end#|#'; |
192 | + } |
|
185 | 193 | } |
186 | 194 | } |
187 | 195 | |
@@ -193,8 +201,9 @@ discard block |
||
193 | 201 | } |
194 | 202 | |
195 | 203 | // Only try to buy more time if the client didn't quit. |
196 | - if (connection_aborted() && $context['server']['is_apache']) |
|
197 | - @apache_reset_timeout(); |
|
204 | + if (connection_aborted() && $context['server']['is_apache']) { |
|
205 | + @apache_reset_timeout(); |
|
206 | + } |
|
198 | 207 | |
199 | 208 | $parts = preg_split('~(<[A-Za-z]+\s*[^<>]*?style="?[^<>"]+"?[^<>]*?(?:/?)>|</[A-Za-z]+>)~', $text, -1, PREG_SPLIT_DELIM_CAPTURE); |
200 | 209 | $replacement = ''; |
@@ -205,9 +214,9 @@ discard block |
||
205 | 214 | if (preg_match('~(<([A-Za-z]+)\s*[^<>]*?)style="?([^<>"]+)"?([^<>]*?(/?)>)~', $part, $matches) === 1) |
206 | 215 | { |
207 | 216 | // If it's being closed instantly, we can't deal with it...yet. |
208 | - if ($matches[5] === '/') |
|
209 | - continue; |
|
210 | - else |
|
217 | + if ($matches[5] === '/') { |
|
218 | + continue; |
|
219 | + } else |
|
211 | 220 | { |
212 | 221 | // Get an array of styles that apply to this element. (The strtr is there to combat HTML generated by Word.) |
213 | 222 | $styles = explode(';', strtr($matches[3], array('"' => ''))); |
@@ -223,8 +232,9 @@ discard block |
||
223 | 232 | $clean_type_value_pair = strtolower(strtr(trim($type_value_pair), '=', ':')); |
224 | 233 | |
225 | 234 | // Something like 'font-weight: bold' is expected here. |
226 | - if (strpos($clean_type_value_pair, ':') === false) |
|
227 | - continue; |
|
235 | + if (strpos($clean_type_value_pair, ':') === false) { |
|
236 | + continue; |
|
237 | + } |
|
228 | 238 | |
229 | 239 | // Capture the elements of a single style item (e.g. 'font-weight' and 'bold'). |
230 | 240 | list ($style_type, $style_value) = explode(':', $type_value_pair); |
@@ -246,8 +256,7 @@ discard block |
||
246 | 256 | { |
247 | 257 | $curCloseTags .= '[/u]'; |
248 | 258 | $replacement .= '[u]'; |
249 | - } |
|
250 | - elseif ($style_value == 'line-through') |
|
259 | + } elseif ($style_value == 'line-through') |
|
251 | 260 | { |
252 | 261 | $curCloseTags .= '[/s]'; |
253 | 262 | $replacement .= '[s]'; |
@@ -259,13 +268,11 @@ discard block |
||
259 | 268 | { |
260 | 269 | $curCloseTags .= '[/left]'; |
261 | 270 | $replacement .= '[left]'; |
262 | - } |
|
263 | - elseif ($style_value == 'center') |
|
271 | + } elseif ($style_value == 'center') |
|
264 | 272 | { |
265 | 273 | $curCloseTags .= '[/center]'; |
266 | 274 | $replacement .= '[center]'; |
267 | - } |
|
268 | - elseif ($style_value == 'right') |
|
275 | + } elseif ($style_value == 'right') |
|
269 | 276 | { |
270 | 277 | $curCloseTags .= '[/right]'; |
271 | 278 | $replacement .= '[right]'; |
@@ -287,8 +294,9 @@ discard block |
||
287 | 294 | |
288 | 295 | case 'font-size': |
289 | 296 | // Sometimes people put decimals where decimals should not be. |
290 | - if (preg_match('~(\d)+\.\d+(p[xt])~i', $style_value, $dec_matches) === 1) |
|
291 | - $style_value = $dec_matches[1] . $dec_matches[2]; |
|
297 | + if (preg_match('~(\d)+\.\d+(p[xt])~i', $style_value, $dec_matches) === 1) { |
|
298 | + $style_value = $dec_matches[1] . $dec_matches[2]; |
|
299 | + } |
|
292 | 300 | |
293 | 301 | $curCloseTags .= '[/size]'; |
294 | 302 | $replacement .= '[size=' . $style_value . ']'; |
@@ -296,8 +304,9 @@ discard block |
||
296 | 304 | |
297 | 305 | case 'font-family': |
298 | 306 | // Only get the first freaking font if there's a list! |
299 | - if (strpos($style_value, ',') !== false) |
|
300 | - $style_value = substr($style_value, 0, strpos($style_value, ',')); |
|
307 | + if (strpos($style_value, ',') !== false) { |
|
308 | + $style_value = substr($style_value, 0, strpos($style_value, ',')); |
|
309 | + } |
|
301 | 310 | |
302 | 311 | $curCloseTags .= '[/font]'; |
303 | 312 | $replacement .= '[font=' . strtr($style_value, array("'" => '')) . ']'; |
@@ -306,13 +315,15 @@ discard block |
||
306 | 315 | // This is a hack for images with dimensions embedded. |
307 | 316 | case 'width': |
308 | 317 | case 'height': |
309 | - if (preg_match('~[1-9]\d*~i', $style_value, $dimension) === 1) |
|
310 | - $extra_attr .= ' ' . $style_type . '="' . $dimension[0] . '"'; |
|
318 | + if (preg_match('~[1-9]\d*~i', $style_value, $dimension) === 1) { |
|
319 | + $extra_attr .= ' ' . $style_type . '="' . $dimension[0] . '"'; |
|
320 | + } |
|
311 | 321 | break; |
312 | 322 | |
313 | 323 | case 'list-style-type': |
314 | - if (preg_match('~none|disc|circle|square|decimal|decimal-leading-zero|lower-roman|upper-roman|lower-alpha|upper-alpha|lower-greek|lower-latin|upper-latin|hebrew|armenian|georgian|cjk-ideographic|hiragana|katakana|hiragana-iroha|katakana-iroha~i', $style_value, $listType) === 1) |
|
315 | - $extra_attr .= ' listtype="' . $listType[0] . '"'; |
|
324 | + if (preg_match('~none|disc|circle|square|decimal|decimal-leading-zero|lower-roman|upper-roman|lower-alpha|upper-alpha|lower-greek|lower-latin|upper-latin|hebrew|armenian|georgian|cjk-ideographic|hiragana|katakana|hiragana-iroha|katakana-iroha~i', $style_value, $listType) === 1) { |
|
325 | + $extra_attr .= ' listtype="' . $listType[0] . '"'; |
|
326 | + } |
|
316 | 327 | break; |
317 | 328 | } |
318 | 329 | } |
@@ -325,18 +336,17 @@ discard block |
||
325 | 336 | } |
326 | 337 | |
327 | 338 | // If there's something that still needs closing, push it to the stack. |
328 | - if (!empty($curCloseTags)) |
|
329 | - array_push($stack, array( |
|
339 | + if (!empty($curCloseTags)) { |
|
340 | + array_push($stack, array( |
|
330 | 341 | 'element' => strtolower($curElement), |
331 | 342 | 'closeTags' => $curCloseTags |
332 | 343 | ) |
333 | 344 | ); |
334 | - elseif (!empty($extra_attr)) |
|
335 | - $replacement .= $precedingStyle . $extra_attr . $afterStyle; |
|
345 | + } elseif (!empty($extra_attr)) { |
|
346 | + $replacement .= $precedingStyle . $extra_attr . $afterStyle; |
|
347 | + } |
|
336 | 348 | } |
337 | - } |
|
338 | - |
|
339 | - elseif (preg_match('~</([A-Za-z]+)>~', $part, $matches) === 1) |
|
349 | + } elseif (preg_match('~</([A-Za-z]+)>~', $part, $matches) === 1) |
|
340 | 350 | { |
341 | 351 | // Is this the element that we've been waiting for to be closed? |
342 | 352 | if (!empty($stack) && strtolower($matches[1]) === $stack[count($stack) - 1]['element']) |
@@ -346,28 +356,32 @@ discard block |
||
346 | 356 | } |
347 | 357 | |
348 | 358 | // Must've been something else. |
349 | - else |
|
350 | - $replacement .= $part; |
|
359 | + else { |
|
360 | + $replacement .= $part; |
|
361 | + } |
|
351 | 362 | } |
352 | 363 | // In all other cases, just add the part to the replacement. |
353 | - else |
|
354 | - $replacement .= $part; |
|
364 | + else { |
|
365 | + $replacement .= $part; |
|
366 | + } |
|
355 | 367 | } |
356 | 368 | |
357 | 369 | // Now put back the replacement in the text. |
358 | 370 | $text = $replacement; |
359 | 371 | |
360 | 372 | // We are not finished yet, request more time. |
361 | - if (connection_aborted() && $context['server']['is_apache']) |
|
362 | - @apache_reset_timeout(); |
|
373 | + if (connection_aborted() && $context['server']['is_apache']) { |
|
374 | + @apache_reset_timeout(); |
|
375 | + } |
|
363 | 376 | |
364 | 377 | // Let's pull out any legacy alignments. |
365 | 378 | while (preg_match('~<([A-Za-z]+)\s+[^<>]*?(align="*(left|center|right)"*)[^<>]*?(/?)>~i', $text, $matches) === 1) |
366 | 379 | { |
367 | 380 | // Find the position in the text of this tag over again. |
368 | 381 | $start_pos = strpos($text, $matches[0]); |
369 | - if ($start_pos === false) |
|
370 | - break; |
|
382 | + if ($start_pos === false) { |
|
383 | + break; |
|
384 | + } |
|
371 | 385 | |
372 | 386 | // End tag? |
373 | 387 | if ($matches[4] != '/' && strpos($text, '</' . $matches[1] . '>', $start_pos) !== false) |
@@ -381,8 +395,7 @@ discard block |
||
381 | 395 | |
382 | 396 | // Put the tags back into the body. |
383 | 397 | $text = substr($text, 0, $start_pos) . $tag . '[' . $matches[3] . ']' . $content . '[/' . $matches[3] . ']' . substr($text, $end_pos); |
384 | - } |
|
385 | - else |
|
398 | + } else |
|
386 | 399 | { |
387 | 400 | // Just get rid of this evil tag. |
388 | 401 | $text = substr($text, 0, $start_pos) . substr($text, $start_pos + strlen($matches[0])); |
@@ -395,8 +408,9 @@ discard block |
||
395 | 408 | // Find the position of this again. |
396 | 409 | $start_pos = strpos($text, $matches[0]); |
397 | 410 | $end_pos = false; |
398 | - if ($start_pos === false) |
|
399 | - break; |
|
411 | + if ($start_pos === false) { |
|
412 | + break; |
|
413 | + } |
|
400 | 414 | |
401 | 415 | // This must have an end tag - and we must find the right one. |
402 | 416 | $lower_text = strtolower($text); |
@@ -429,8 +443,9 @@ discard block |
||
429 | 443 | break; |
430 | 444 | } |
431 | 445 | } |
432 | - if ($end_pos === false) |
|
433 | - break; |
|
446 | + if ($end_pos === false) { |
|
447 | + break; |
|
448 | + } |
|
434 | 449 | |
435 | 450 | // Now work out what the attributes are. |
436 | 451 | $attribs = fetchTagAttributes($matches[1]); |
@@ -444,11 +459,11 @@ discard block |
||
444 | 459 | $v = (int) trim($v); |
445 | 460 | $v = empty($v) ? 1 : $v; |
446 | 461 | $tags[] = array('[size=' . $sizes_equivalence[$v] . ']', '[/size]'); |
462 | + } elseif ($s == 'face') { |
|
463 | + $tags[] = array('[font=' . trim(strtolower($v)) . ']', '[/font]'); |
|
464 | + } elseif ($s == 'color') { |
|
465 | + $tags[] = array('[color=' . trim(strtolower($v)) . ']', '[/color]'); |
|
447 | 466 | } |
448 | - elseif ($s == 'face') |
|
449 | - $tags[] = array('[font=' . trim(strtolower($v)) . ']', '[/font]'); |
|
450 | - elseif ($s == 'color') |
|
451 | - $tags[] = array('[color=' . trim(strtolower($v)) . ']', '[/color]'); |
|
452 | 467 | } |
453 | 468 | |
454 | 469 | // As before add in our tags. |
@@ -456,8 +471,9 @@ discard block |
||
456 | 471 | foreach ($tags as $tag) |
457 | 472 | { |
458 | 473 | $before .= $tag[0]; |
459 | - if (isset($tag[1])) |
|
460 | - $after = $tag[1] . $after; |
|
474 | + if (isset($tag[1])) { |
|
475 | + $after = $tag[1] . $after; |
|
476 | + } |
|
461 | 477 | } |
462 | 478 | |
463 | 479 | // Remove the tag so it's never checked again. |
@@ -468,8 +484,9 @@ discard block |
||
468 | 484 | } |
469 | 485 | |
470 | 486 | // Almost there, just a little more time. |
471 | - if (connection_aborted() && $context['server']['is_apache']) |
|
472 | - @apache_reset_timeout(); |
|
487 | + if (connection_aborted() && $context['server']['is_apache']) { |
|
488 | + @apache_reset_timeout(); |
|
489 | + } |
|
473 | 490 | |
474 | 491 | if (count($parts = preg_split('~<(/?)(li|ol|ul)([^>]*)>~i', $text, null, PREG_SPLIT_DELIM_CAPTURE)) > 1) |
475 | 492 | { |
@@ -525,12 +542,13 @@ discard block |
||
525 | 542 | { |
526 | 543 | $inList = true; |
527 | 544 | |
528 | - if ($tag === 'ol') |
|
529 | - $listType = 'decimal'; |
|
530 | - elseif (preg_match('~type="?(' . implode('|', array_keys($listTypeMapping)) . ')"?~', $parts[$i + 3], $match) === 1) |
|
531 | - $listType = $listTypeMapping[$match[1]]; |
|
532 | - else |
|
533 | - $listType = null; |
|
545 | + if ($tag === 'ol') { |
|
546 | + $listType = 'decimal'; |
|
547 | + } elseif (preg_match('~type="?(' . implode('|', array_keys($listTypeMapping)) . ')"?~', $parts[$i + 3], $match) === 1) { |
|
548 | + $listType = $listTypeMapping[$match[1]]; |
|
549 | + } else { |
|
550 | + $listType = null; |
|
551 | + } |
|
534 | 552 | |
535 | 553 | $listDepth++; |
536 | 554 | |
@@ -594,9 +612,7 @@ discard block |
||
594 | 612 | $parts[$i + 1] = ''; |
595 | 613 | $parts[$i + 2] = str_repeat("\t", $listDepth) . '[/list]'; |
596 | 614 | $parts[$i + 3] = ''; |
597 | - } |
|
598 | - |
|
599 | - else |
|
615 | + } else |
|
600 | 616 | { |
601 | 617 | // We're in a list item. |
602 | 618 | if ($listDepth > 0) |
@@ -633,9 +649,7 @@ discard block |
||
633 | 649 | $parts[$i + 1] = ''; |
634 | 650 | $parts[$i + 2] = ''; |
635 | 651 | $parts[$i + 3] = ''; |
636 | - } |
|
637 | - |
|
638 | - else |
|
652 | + } else |
|
639 | 653 | { |
640 | 654 | // Remove the trailing breaks from the list item. |
641 | 655 | $parts[$i] = preg_replace('~\s*<br\s*' . '/?' . '>\s*$~', '', $parts[$i]); |
@@ -673,8 +687,9 @@ discard block |
||
673 | 687 | $text .= str_repeat("\t", $listDepth) . '[/list]'; |
674 | 688 | } |
675 | 689 | |
676 | - for ($i = $listDepth; $i > 0; $i--) |
|
677 | - $text .= '[/li]' . "\n" . str_repeat("\t", $i - 1) . '[/list]'; |
|
690 | + for ($i = $listDepth; $i > 0; $i--) { |
|
691 | + $text .= '[/li]' . "\n" . str_repeat("\t", $i - 1) . '[/list]'; |
|
692 | + } |
|
678 | 693 | |
679 | 694 | } |
680 | 695 | |
@@ -683,8 +698,9 @@ discard block |
||
683 | 698 | { |
684 | 699 | // Find the position of the image. |
685 | 700 | $start_pos = strpos($text, $matches[0]); |
686 | - if ($start_pos === false) |
|
687 | - break; |
|
701 | + if ($start_pos === false) { |
|
702 | + break; |
|
703 | + } |
|
688 | 704 | $end_pos = $start_pos + strlen($matches[0]); |
689 | 705 | |
690 | 706 | $params = ''; |
@@ -693,12 +709,13 @@ discard block |
||
693 | 709 | $attrs = fetchTagAttributes($matches[1]); |
694 | 710 | foreach ($attrs as $attrib => $value) |
695 | 711 | { |
696 | - if (in_array($attrib, array('width', 'height'))) |
|
697 | - $params .= ' ' . $attrib . '=' . (int) $value; |
|
698 | - elseif ($attrib == 'alt' && trim($value) != '') |
|
699 | - $params .= ' alt=' . trim($value); |
|
700 | - elseif ($attrib == 'src') |
|
701 | - $src = trim($value); |
|
712 | + if (in_array($attrib, array('width', 'height'))) { |
|
713 | + $params .= ' ' . $attrib . '=' . (int) $value; |
|
714 | + } elseif ($attrib == 'alt' && trim($value) != '') { |
|
715 | + $params .= ' alt=' . trim($value); |
|
716 | + } elseif ($attrib == 'src') { |
|
717 | + $src = trim($value); |
|
718 | + } |
|
702 | 719 | } |
703 | 720 | |
704 | 721 | $tag = ''; |
@@ -709,10 +726,11 @@ discard block |
||
709 | 726 | { |
710 | 727 | $baseURL = (isset($parsedURL['scheme']) ? $parsedURL['scheme'] : 'http') . '://' . $parsedURL['host'] . (empty($parsedURL['port']) ? '' : ':' . $parsedURL['port']); |
711 | 728 | |
712 | - if (substr($src, 0, 1) === '/') |
|
713 | - $src = $baseURL . $src; |
|
714 | - else |
|
715 | - $src = $baseURL . (empty($parsedURL['path']) ? '/' : preg_replace('~/(?:index\\.php)?$~', '', $parsedURL['path'])) . '/' . $src; |
|
729 | + if (substr($src, 0, 1) === '/') { |
|
730 | + $src = $baseURL . $src; |
|
731 | + } else { |
|
732 | + $src = $baseURL . (empty($parsedURL['path']) ? '/' : preg_replace('~/(?:index\\.php)?$~', '', $parsedURL['path'])) . '/' . $src; |
|
733 | + } |
|
716 | 734 | } |
717 | 735 | |
718 | 736 | $tag = '[img' . $params . ']' . $src . '[/img]'; |
@@ -890,20 +908,23 @@ discard block |
||
890 | 908 | }, |
891 | 909 | ); |
892 | 910 | |
893 | - foreach ($tags as $tag => $replace) |
|
894 | - $text = preg_replace_callback($tag, $replace, $text); |
|
911 | + foreach ($tags as $tag => $replace) { |
|
912 | + $text = preg_replace_callback($tag, $replace, $text); |
|
913 | + } |
|
895 | 914 | |
896 | 915 | // Please give us just a little more time. |
897 | - if (connection_aborted() && $context['server']['is_apache']) |
|
898 | - @apache_reset_timeout(); |
|
916 | + if (connection_aborted() && $context['server']['is_apache']) { |
|
917 | + @apache_reset_timeout(); |
|
918 | + } |
|
899 | 919 | |
900 | 920 | // What about URL's - the pain in the ass of the tag world. |
901 | 921 | while (preg_match('~<a\s+([^<>]*)>([^<>]*)</a>~i', $text, $matches) === 1) |
902 | 922 | { |
903 | 923 | // Find the position of the URL. |
904 | 924 | $start_pos = strpos($text, $matches[0]); |
905 | - if ($start_pos === false) |
|
906 | - break; |
|
925 | + if ($start_pos === false) { |
|
926 | + break; |
|
927 | + } |
|
907 | 928 | $end_pos = $start_pos + strlen($matches[0]); |
908 | 929 | |
909 | 930 | $tag_type = 'url'; |
@@ -917,8 +938,9 @@ discard block |
||
917 | 938 | $href = trim($value); |
918 | 939 | |
919 | 940 | // Are we dealing with an FTP link? |
920 | - if (preg_match('~^ftps?://~', $href) === 1) |
|
921 | - $tag_type = 'ftp'; |
|
941 | + if (preg_match('~^ftps?://~', $href) === 1) { |
|
942 | + $tag_type = 'ftp'; |
|
943 | + } |
|
922 | 944 | |
923 | 945 | // Or is this a link to an email address? |
924 | 946 | elseif (substr($href, 0, 7) == 'mailto:') |
@@ -932,28 +954,31 @@ discard block |
||
932 | 954 | { |
933 | 955 | $baseURL = (isset($parsedURL['scheme']) ? $parsedURL['scheme'] : 'http') . '://' . $parsedURL['host'] . (empty($parsedURL['port']) ? '' : ':' . $parsedURL['port']); |
934 | 956 | |
935 | - if (substr($href, 0, 1) === '/') |
|
936 | - $href = $baseURL . $href; |
|
937 | - else |
|
938 | - $href = $baseURL . (empty($parsedURL['path']) ? '/' : preg_replace('~/(?:index\\.php)?$~', '', $parsedURL['path'])) . '/' . $href; |
|
957 | + if (substr($href, 0, 1) === '/') { |
|
958 | + $href = $baseURL . $href; |
|
959 | + } else { |
|
960 | + $href = $baseURL . (empty($parsedURL['path']) ? '/' : preg_replace('~/(?:index\\.php)?$~', '', $parsedURL['path'])) . '/' . $href; |
|
961 | + } |
|
939 | 962 | } |
940 | 963 | } |
941 | 964 | |
942 | 965 | // External URL? |
943 | 966 | if ($attrib == 'target' && $tag_type == 'url') |
944 | 967 | { |
945 | - if (trim($value) == '_blank') |
|
946 | - $tag_type == 'iurl'; |
|
968 | + if (trim($value) == '_blank') { |
|
969 | + $tag_type == 'iurl'; |
|
970 | + } |
|
947 | 971 | } |
948 | 972 | } |
949 | 973 | |
950 | 974 | $tag = ''; |
951 | 975 | if ($href != '') |
952 | 976 | { |
953 | - if ($matches[2] == $href) |
|
954 | - $tag = '[' . $tag_type . ']' . $href . '[/' . $tag_type . ']'; |
|
955 | - else |
|
956 | - $tag = '[' . $tag_type . '=' . $href . ']' . $matches[2] . '[/' . $tag_type . ']'; |
|
977 | + if ($matches[2] == $href) { |
|
978 | + $tag = '[' . $tag_type . ']' . $href . '[/' . $tag_type . ']'; |
|
979 | + } else { |
|
980 | + $tag = '[' . $tag_type . '=' . $href . ']' . $matches[2] . '[/' . $tag_type . ']'; |
|
981 | + } |
|
957 | 982 | } |
958 | 983 | |
959 | 984 | // Replace the tag |
@@ -992,17 +1017,18 @@ discard block |
||
992 | 1017 | // We're either moving from the key to the attribute or we're in a string and this is fine. |
993 | 1018 | if ($text[$i] == '=') |
994 | 1019 | { |
995 | - if ($tag_state == 0) |
|
996 | - $tag_state = 1; |
|
997 | - elseif ($tag_state == 2) |
|
998 | - $value .= '='; |
|
1020 | + if ($tag_state == 0) { |
|
1021 | + $tag_state = 1; |
|
1022 | + } elseif ($tag_state == 2) { |
|
1023 | + $value .= '='; |
|
1024 | + } |
|
999 | 1025 | } |
1000 | 1026 | // A space is either moving from an attribute back to a potential key or in a string is fine. |
1001 | 1027 | elseif ($text[$i] == ' ') |
1002 | 1028 | { |
1003 | - if ($tag_state == 2) |
|
1004 | - $value .= ' '; |
|
1005 | - elseif ($tag_state == 1) |
|
1029 | + if ($tag_state == 2) { |
|
1030 | + $value .= ' '; |
|
1031 | + } elseif ($tag_state == 1) |
|
1006 | 1032 | { |
1007 | 1033 | $attribs[$key] = $value; |
1008 | 1034 | $key = $value = ''; |
@@ -1013,24 +1039,27 @@ discard block |
||
1013 | 1039 | elseif ($text[$i] == '"') |
1014 | 1040 | { |
1015 | 1041 | // Must be either going into or out of a string. |
1016 | - if ($tag_state == 1) |
|
1017 | - $tag_state = 2; |
|
1018 | - else |
|
1019 | - $tag_state = 1; |
|
1042 | + if ($tag_state == 1) { |
|
1043 | + $tag_state = 2; |
|
1044 | + } else { |
|
1045 | + $tag_state = 1; |
|
1046 | + } |
|
1020 | 1047 | } |
1021 | 1048 | // Otherwise it's fine. |
1022 | 1049 | else |
1023 | 1050 | { |
1024 | - if ($tag_state == 0) |
|
1025 | - $key .= $text[$i]; |
|
1026 | - else |
|
1027 | - $value .= $text[$i]; |
|
1051 | + if ($tag_state == 0) { |
|
1052 | + $key .= $text[$i]; |
|
1053 | + } else { |
|
1054 | + $value .= $text[$i]; |
|
1055 | + } |
|
1028 | 1056 | } |
1029 | 1057 | } |
1030 | 1058 | |
1031 | 1059 | // Anything left? |
1032 | - if ($key != '' && $value != '') |
|
1033 | - $attribs[$key] = $value; |
|
1060 | + if ($key != '' && $value != '') { |
|
1061 | + $attribs[$key] = $value; |
|
1062 | + } |
|
1034 | 1063 | |
1035 | 1064 | return $attribs; |
1036 | 1065 | } |
@@ -1046,15 +1075,17 @@ discard block |
||
1046 | 1075 | global $modSettings; |
1047 | 1076 | |
1048 | 1077 | // Don't care about the texts that are too short. |
1049 | - if (strlen($text) < 3) |
|
1050 | - return $text; |
|
1078 | + if (strlen($text) < 3) { |
|
1079 | + return $text; |
|
1080 | + } |
|
1051 | 1081 | |
1052 | 1082 | // A list of tags that's disabled by the admin. |
1053 | 1083 | $disabled = empty($modSettings['disabledBBC']) ? array() : array_flip(explode(',', strtolower($modSettings['disabledBBC']))); |
1054 | 1084 | |
1055 | 1085 | // Add flash if it's disabled as embedded tag. |
1056 | - if (empty($modSettings['enableEmbeddedFlash'])) |
|
1057 | - $disabled['flash'] = true; |
|
1086 | + if (empty($modSettings['enableEmbeddedFlash'])) { |
|
1087 | + $disabled['flash'] = true; |
|
1088 | + } |
|
1058 | 1089 | |
1059 | 1090 | // Get a list of all the tags that are not disabled. |
1060 | 1091 | $all_tags = parse_bbc(false); |
@@ -1062,10 +1093,12 @@ discard block |
||
1062 | 1093 | $self_closing_tags = array(); |
1063 | 1094 | foreach ($all_tags as $tag) |
1064 | 1095 | { |
1065 | - if (!isset($disabled[$tag['tag']])) |
|
1066 | - $valid_tags[$tag['tag']] = !empty($tag['block_level']); |
|
1067 | - if (isset($tag['type']) && $tag['type'] == 'closed') |
|
1068 | - $self_closing_tags[] = $tag['tag']; |
|
1096 | + if (!isset($disabled[$tag['tag']])) { |
|
1097 | + $valid_tags[$tag['tag']] = !empty($tag['block_level']); |
|
1098 | + } |
|
1099 | + if (isset($tag['type']) && $tag['type'] == 'closed') { |
|
1100 | + $self_closing_tags[] = $tag['tag']; |
|
1101 | + } |
|
1069 | 1102 | } |
1070 | 1103 | |
1071 | 1104 | // Right - we're going to start by going through the whole lot to make sure we don't have align stuff crossed as this happens load and is stupid! |
@@ -1092,16 +1125,19 @@ discard block |
||
1092 | 1125 | $tagName = substr($match, $isClosingTag ? 2 : 1, -1); |
1093 | 1126 | |
1094 | 1127 | // We're closing the exact same tag that we opened. |
1095 | - if ($isClosingTag && $insideTag === $tagName) |
|
1096 | - $insideTag = null; |
|
1128 | + if ($isClosingTag && $insideTag === $tagName) { |
|
1129 | + $insideTag = null; |
|
1130 | + } |
|
1097 | 1131 | |
1098 | 1132 | // We're opening a tag and we're not yet inside one either |
1099 | - elseif (!$isClosingTag && $insideTag === null) |
|
1100 | - $insideTag = $tagName; |
|
1133 | + elseif (!$isClosingTag && $insideTag === null) { |
|
1134 | + $insideTag = $tagName; |
|
1135 | + } |
|
1101 | 1136 | |
1102 | 1137 | // In all other cases, this tag must be invalid |
1103 | - else |
|
1104 | - unset($matches[$i]); |
|
1138 | + else { |
|
1139 | + unset($matches[$i]); |
|
1140 | + } |
|
1105 | 1141 | } |
1106 | 1142 | |
1107 | 1143 | // The next one is gonna be the other one. |
@@ -1109,8 +1145,9 @@ discard block |
||
1109 | 1145 | } |
1110 | 1146 | |
1111 | 1147 | // We're still inside a tag and had no chance for closure? |
1112 | - if ($insideTag !== null) |
|
1113 | - $matches[] = '[/' . $insideTag . ']'; |
|
1148 | + if ($insideTag !== null) { |
|
1149 | + $matches[] = '[/' . $insideTag . ']'; |
|
1150 | + } |
|
1114 | 1151 | |
1115 | 1152 | // And a complete text string again. |
1116 | 1153 | $text = implode('', $matches); |
@@ -1119,8 +1156,9 @@ discard block |
||
1119 | 1156 | // Quickly remove any tags which are back to back. |
1120 | 1157 | $backToBackPattern = '~\\[(' . implode('|', array_diff(array_keys($valid_tags), array('td', 'anchor'))) . ')[^<>\\[\\]]*\\]\s*\\[/\\1\\]~'; |
1121 | 1158 | $lastlen = 0; |
1122 | - while (strlen($text) !== $lastlen) |
|
1123 | - $lastlen = strlen($text = preg_replace($backToBackPattern, '', $text)); |
|
1159 | + while (strlen($text) !== $lastlen) { |
|
1160 | + $lastlen = strlen($text = preg_replace($backToBackPattern, '', $text)); |
|
1161 | + } |
|
1124 | 1162 | |
1125 | 1163 | // Need to sort the tags my name length. |
1126 | 1164 | uksort($valid_tags, 'sort_array_length'); |
@@ -1157,8 +1195,9 @@ discard block |
||
1157 | 1195 | $isCompetingTag = in_array($tag, $competing_tags); |
1158 | 1196 | |
1159 | 1197 | // Check if this might be one of those cleaned out tags. |
1160 | - if ($tag === '') |
|
1161 | - continue; |
|
1198 | + if ($tag === '') { |
|
1199 | + continue; |
|
1200 | + } |
|
1162 | 1201 | |
1163 | 1202 | // Special case: inside [code] blocks any code is left untouched. |
1164 | 1203 | elseif ($tag === 'code') |
@@ -1169,8 +1208,9 @@ discard block |
||
1169 | 1208 | $inCode = false; |
1170 | 1209 | |
1171 | 1210 | // Reopen tags that were closed before the code block. |
1172 | - if (!empty($inlineElements)) |
|
1173 | - $parts[$i + 4] .= '[' . implode('][', array_keys($inlineElements)) . ']'; |
|
1211 | + if (!empty($inlineElements)) { |
|
1212 | + $parts[$i + 4] .= '[' . implode('][', array_keys($inlineElements)) . ']'; |
|
1213 | + } |
|
1174 | 1214 | } |
1175 | 1215 | |
1176 | 1216 | // We're outside a coding and nobbc block and opening it. |
@@ -1199,8 +1239,9 @@ discard block |
||
1199 | 1239 | $inNoBbc = false; |
1200 | 1240 | |
1201 | 1241 | // Some inline elements might've been closed that need reopening. |
1202 | - if (!empty($inlineElements)) |
|
1203 | - $parts[$i + 4] .= '[' . implode('][', array_keys($inlineElements)) . ']'; |
|
1242 | + if (!empty($inlineElements)) { |
|
1243 | + $parts[$i + 4] .= '[' . implode('][', array_keys($inlineElements)) . ']'; |
|
1244 | + } |
|
1204 | 1245 | } |
1205 | 1246 | |
1206 | 1247 | // We're outside a nobbc and coding block and opening it. |
@@ -1220,8 +1261,9 @@ discard block |
||
1220 | 1261 | } |
1221 | 1262 | |
1222 | 1263 | // So, we're inside one of the special blocks: ignore any tag. |
1223 | - elseif ($inCode || $inNoBbc) |
|
1224 | - continue; |
|
1264 | + elseif ($inCode || $inNoBbc) { |
|
1265 | + continue; |
|
1266 | + } |
|
1225 | 1267 | |
1226 | 1268 | // We're dealing with an opening tag. |
1227 | 1269 | if ($isOpeningTag) |
@@ -1262,8 +1304,9 @@ discard block |
||
1262 | 1304 | if ($parts[$j + 3] === $tag) |
1263 | 1305 | { |
1264 | 1306 | // If it's an opening tag, increase the level. |
1265 | - if ($parts[$j + 2] === '') |
|
1266 | - $curLevel++; |
|
1307 | + if ($parts[$j + 2] === '') { |
|
1308 | + $curLevel++; |
|
1309 | + } |
|
1267 | 1310 | |
1268 | 1311 | // A closing tag, decrease the level. |
1269 | 1312 | else |
@@ -1286,13 +1329,15 @@ discard block |
||
1286 | 1329 | { |
1287 | 1330 | if ($isCompetingTag) |
1288 | 1331 | { |
1289 | - if (!isset($competingElements[$tag])) |
|
1290 | - $competingElements[$tag] = array(); |
|
1332 | + if (!isset($competingElements[$tag])) { |
|
1333 | + $competingElements[$tag] = array(); |
|
1334 | + } |
|
1291 | 1335 | |
1292 | 1336 | $competingElements[$tag][] = $parts[$i + 4]; |
1293 | 1337 | |
1294 | - if (count($competingElements[$tag]) > 1) |
|
1295 | - $parts[$i] .= '[/' . $tag . ']'; |
|
1338 | + if (count($competingElements[$tag]) > 1) { |
|
1339 | + $parts[$i] .= '[/' . $tag . ']'; |
|
1340 | + } |
|
1296 | 1341 | } |
1297 | 1342 | |
1298 | 1343 | $inlineElements[$elementContent] = $tag; |
@@ -1313,15 +1358,17 @@ discard block |
||
1313 | 1358 | $addClosingTags = array(); |
1314 | 1359 | while ($element = array_pop($blockElements)) |
1315 | 1360 | { |
1316 | - if ($element === $tag) |
|
1317 | - break; |
|
1361 | + if ($element === $tag) { |
|
1362 | + break; |
|
1363 | + } |
|
1318 | 1364 | |
1319 | 1365 | // Still a block tag was open not equal to this tag. |
1320 | 1366 | $addClosingTags[] = $element['type']; |
1321 | 1367 | } |
1322 | 1368 | |
1323 | - if (!empty($addClosingTags)) |
|
1324 | - $parts[$i + 1] = '[/' . implode('][/', array_reverse($addClosingTags)) . ']' . $parts[$i + 1]; |
|
1369 | + if (!empty($addClosingTags)) { |
|
1370 | + $parts[$i + 1] = '[/' . implode('][/', array_reverse($addClosingTags)) . ']' . $parts[$i + 1]; |
|
1371 | + } |
|
1325 | 1372 | |
1326 | 1373 | // Apparently the closing tag was not found on the stack. |
1327 | 1374 | if (!is_string($element) || $element !== $tag) |
@@ -1331,8 +1378,7 @@ discard block |
||
1331 | 1378 | $parts[$i + 2] = $parts[$i + 3] = $parts[$i + 4] = ''; |
1332 | 1379 | continue; |
1333 | 1380 | } |
1334 | - } |
|
1335 | - else |
|
1381 | + } else |
|
1336 | 1382 | { |
1337 | 1383 | // Get rid of this closing tag! |
1338 | 1384 | $parts[$i + 1] = $parts[$i + 2] = $parts[$i + 3] = $parts[$i + 4] = ''; |
@@ -1361,53 +1407,62 @@ discard block |
||
1361 | 1407 | unset($inlineElements[$tagContentToBeClosed]); |
1362 | 1408 | |
1363 | 1409 | // Was this the tag we were looking for? |
1364 | - if ($tagToBeClosed === $tag) |
|
1365 | - break; |
|
1410 | + if ($tagToBeClosed === $tag) { |
|
1411 | + break; |
|
1412 | + } |
|
1366 | 1413 | |
1367 | 1414 | // Nope, close it and look further! |
1368 | - else |
|
1369 | - $parts[$i] .= '[/' . $tagToBeClosed . ']'; |
|
1415 | + else { |
|
1416 | + $parts[$i] .= '[/' . $tagToBeClosed . ']'; |
|
1417 | + } |
|
1370 | 1418 | } |
1371 | 1419 | |
1372 | 1420 | if ($isCompetingTag && !empty($competingElements[$tag])) |
1373 | 1421 | { |
1374 | 1422 | array_pop($competingElements[$tag]); |
1375 | 1423 | |
1376 | - if (count($competingElements[$tag]) > 0) |
|
1377 | - $parts[$i + 5] = '[' . $tag . $competingElements[$tag][count($competingElements[$tag]) - 1] . $parts[$i + 5]; |
|
1424 | + if (count($competingElements[$tag]) > 0) { |
|
1425 | + $parts[$i + 5] = '[' . $tag . $competingElements[$tag][count($competingElements[$tag]) - 1] . $parts[$i + 5]; |
|
1426 | + } |
|
1378 | 1427 | } |
1379 | 1428 | } |
1380 | 1429 | |
1381 | 1430 | // Unexpected closing tag, ex-ter-mi-nate. |
1382 | - else |
|
1383 | - $parts[$i + 1] = $parts[$i + 2] = $parts[$i + 3] = $parts[$i + 4] = ''; |
|
1431 | + else { |
|
1432 | + $parts[$i + 1] = $parts[$i + 2] = $parts[$i + 3] = $parts[$i + 4] = ''; |
|
1433 | + } |
|
1384 | 1434 | } |
1385 | 1435 | } |
1386 | 1436 | } |
1387 | 1437 | |
1388 | 1438 | // Close the code tags. |
1389 | - if ($inCode) |
|
1390 | - $parts[$i] .= '[/code]'; |
|
1439 | + if ($inCode) { |
|
1440 | + $parts[$i] .= '[/code]'; |
|
1441 | + } |
|
1391 | 1442 | |
1392 | 1443 | // The same for nobbc tags. |
1393 | - elseif ($inNoBbc) |
|
1394 | - $parts[$i] .= '[/nobbc]'; |
|
1444 | + elseif ($inNoBbc) { |
|
1445 | + $parts[$i] .= '[/nobbc]'; |
|
1446 | + } |
|
1395 | 1447 | |
1396 | 1448 | // Still inline tags left unclosed? Close them now, better late than never. |
1397 | - elseif (!empty($inlineElements)) |
|
1398 | - $parts[$i] .= '[/' . implode('][/', array_reverse($inlineElements)) . ']'; |
|
1449 | + elseif (!empty($inlineElements)) { |
|
1450 | + $parts[$i] .= '[/' . implode('][/', array_reverse($inlineElements)) . ']'; |
|
1451 | + } |
|
1399 | 1452 | |
1400 | 1453 | // Now close the block elements. |
1401 | - if (!empty($blockElements)) |
|
1402 | - $parts[$i] .= '[/' . implode('][/', array_reverse($blockElements)) . ']'; |
|
1454 | + if (!empty($blockElements)) { |
|
1455 | + $parts[$i] .= '[/' . implode('][/', array_reverse($blockElements)) . ']'; |
|
1456 | + } |
|
1403 | 1457 | |
1404 | 1458 | $text = implode('', $parts); |
1405 | 1459 | } |
1406 | 1460 | |
1407 | 1461 | // Final clean up of back to back tags. |
1408 | 1462 | $lastlen = 0; |
1409 | - while (strlen($text) !== $lastlen) |
|
1410 | - $lastlen = strlen($text = preg_replace($backToBackPattern, '', $text)); |
|
1463 | + while (strlen($text) !== $lastlen) { |
|
1464 | + $lastlen = strlen($text = preg_replace($backToBackPattern, '', $text)); |
|
1465 | + } |
|
1411 | 1466 | |
1412 | 1467 | return $text; |
1413 | 1468 | } |
@@ -1436,22 +1491,25 @@ discard block |
||
1436 | 1491 | $context['template_layers'] = array(); |
1437 | 1492 | // Lets make sure we aren't going to output anything nasty. |
1438 | 1493 | @ob_end_clean(); |
1439 | - if (!empty($modSettings['enableCompressedOutput'])) |
|
1440 | - @ob_start('ob_gzhandler'); |
|
1441 | - else |
|
1442 | - @ob_start(); |
|
1494 | + if (!empty($modSettings['enableCompressedOutput'])) { |
|
1495 | + @ob_start('ob_gzhandler'); |
|
1496 | + } else { |
|
1497 | + @ob_start(); |
|
1498 | + } |
|
1443 | 1499 | |
1444 | 1500 | // If we don't have any locale better avoid broken js |
1445 | - if (empty($txt['lang_locale'])) |
|
1446 | - die(); |
|
1501 | + if (empty($txt['lang_locale'])) { |
|
1502 | + die(); |
|
1503 | + } |
|
1447 | 1504 | |
1448 | 1505 | $file_data = '(function ($) { |
1449 | 1506 | \'use strict\'; |
1450 | 1507 | |
1451 | 1508 | $.sceditor.locale[' . javaScriptEscape($txt['lang_locale']) . '] = {'; |
1452 | - foreach ($editortxt as $key => $val) |
|
1453 | - $file_data .= ' |
|
1509 | + foreach ($editortxt as $key => $val) { |
|
1510 | + $file_data .= ' |
|
1454 | 1511 | ' . javaScriptEscape($key) . ': ' . javaScriptEscape($val) . ','; |
1512 | + } |
|
1455 | 1513 | |
1456 | 1514 | $file_data .= ' |
1457 | 1515 | dateFormat: "day.month.year" |
@@ -1519,8 +1577,9 @@ discard block |
||
1519 | 1577 | ) |
1520 | 1578 | ); |
1521 | 1579 | $icon_data = array(); |
1522 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1523 | - $icon_data[] = $row; |
|
1580 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1581 | + $icon_data[] = $row; |
|
1582 | + } |
|
1524 | 1583 | $smcFunc['db_free_result']($request); |
1525 | 1584 | |
1526 | 1585 | $icons = array(); |
@@ -1535,9 +1594,9 @@ discard block |
||
1535 | 1594 | } |
1536 | 1595 | |
1537 | 1596 | cache_put_data('posting_icons-' . $board_id, $icons, 480); |
1597 | + } else { |
|
1598 | + $icons = $temp; |
|
1538 | 1599 | } |
1539 | - else |
|
1540 | - $icons = $temp; |
|
1541 | 1600 | } |
1542 | 1601 | call_integration_hook('integrate_load_message_icons', array(&$icons)); |
1543 | 1602 | |
@@ -1578,8 +1637,9 @@ discard block |
||
1578 | 1637 | { |
1579 | 1638 | // Some general stuff. |
1580 | 1639 | $settings['smileys_url'] = $modSettings['smileys_url'] . '/' . $user_info['smiley_set']; |
1581 | - if (!empty($context['drafts_autosave'])) |
|
1582 | - $context['drafts_autosave_frequency'] = empty($modSettings['drafts_autosave_frequency']) ? 60000 : $modSettings['drafts_autosave_frequency'] * 1000; |
|
1640 | + if (!empty($context['drafts_autosave'])) { |
|
1641 | + $context['drafts_autosave_frequency'] = empty($modSettings['drafts_autosave_frequency']) ? 60000 : $modSettings['drafts_autosave_frequency'] * 1000; |
|
1642 | + } |
|
1583 | 1643 | |
1584 | 1644 | // This really has some WYSIWYG stuff. |
1585 | 1645 | loadCSSFile('jquery.sceditor.css', array('force_current' => false, 'validate' => true), 'smf_jquery_sceditor'); |
@@ -1595,8 +1655,9 @@ discard block |
||
1595 | 1655 | var bbc_quote = \'' . addcslashes($txt['quote'], "'") . '\'; |
1596 | 1656 | var bbc_search_on = \'' . addcslashes($txt['search_on'], "'") . '\';'); |
1597 | 1657 | // editor language file |
1598 | - if (!empty($txt['lang_locale']) && $txt['lang_locale'] != 'en_US') |
|
1599 | - loadJavaScriptFile($scripturl . '?action=loadeditorlocale', array('external' => true), 'sceditor_language'); |
|
1658 | + if (!empty($txt['lang_locale']) && $txt['lang_locale'] != 'en_US') { |
|
1659 | + loadJavaScriptFile($scripturl . '?action=loadeditorlocale', array('external' => true), 'sceditor_language'); |
|
1660 | + } |
|
1600 | 1661 | |
1601 | 1662 | $context['shortcuts_text'] = $txt['shortcuts' . (!empty($context['drafts_save']) ? '_drafts' : '') . (stripos($_SERVER['HTTP_USER_AGENT'], 'Macintosh') !== false ? '_mac' : (isBrowser('is_firefox') ? '_firefox' : ''))]; |
1602 | 1663 | $context['show_spellchecking'] = !empty($modSettings['enableSpellChecking']) && (function_exists('pspell_new') || (function_exists('enchant_broker_init') && ($txt['lang_charset'] == 'UTF-8' || function_exists('iconv')))); |
@@ -1605,11 +1666,12 @@ discard block |
||
1605 | 1666 | loadJavaScriptFile('spellcheck.js', array(), 'smf_spellcheck'); |
1606 | 1667 | |
1607 | 1668 | // Some hidden information is needed in order to make the spell checking work. |
1608 | - if (!isset($_REQUEST['xml'])) |
|
1609 | - $context['insert_after_template'] .= ' |
|
1669 | + if (!isset($_REQUEST['xml'])) { |
|
1670 | + $context['insert_after_template'] .= ' |
|
1610 | 1671 | <form name="spell_form" id="spell_form" method="post" accept-charset="' . $context['character_set'] . '" target="spellWindow" action="' . $scripturl . '?action=spellcheck"> |
1611 | 1672 | <input type="hidden" name="spellstring" value=""> |
1612 | 1673 | </form>'; |
1674 | + } |
|
1613 | 1675 | } |
1614 | 1676 | } |
1615 | 1677 | |
@@ -1775,10 +1837,12 @@ discard block |
||
1775 | 1837 | |
1776 | 1838 | // Generate a list of buttons that shouldn't be shown - this should be the fastest way to do this. |
1777 | 1839 | $disabled_tags = array(); |
1778 | - if (!empty($modSettings['disabledBBC'])) |
|
1779 | - $disabled_tags = explode(',', $modSettings['disabledBBC']); |
|
1780 | - if (empty($modSettings['enableEmbeddedFlash'])) |
|
1781 | - $disabled_tags[] = 'flash'; |
|
1840 | + if (!empty($modSettings['disabledBBC'])) { |
|
1841 | + $disabled_tags = explode(',', $modSettings['disabledBBC']); |
|
1842 | + } |
|
1843 | + if (empty($modSettings['enableEmbeddedFlash'])) { |
|
1844 | + $disabled_tags[] = 'flash'; |
|
1845 | + } |
|
1782 | 1846 | |
1783 | 1847 | foreach ($disabled_tags as $tag) |
1784 | 1848 | { |
@@ -1788,9 +1852,10 @@ discard block |
||
1788 | 1852 | $context['disabled_tags']['orderedlist'] = true; |
1789 | 1853 | } |
1790 | 1854 | |
1791 | - foreach ($editor_tag_map as $thisTag => $tagNameBBC) |
|
1792 | - if ($tag === $thisTag) |
|
1855 | + foreach ($editor_tag_map as $thisTag => $tagNameBBC) { |
|
1856 | + if ($tag === $thisTag) |
|
1793 | 1857 | $context['disabled_tags'][$tagNameBBC] = true; |
1858 | + } |
|
1794 | 1859 | |
1795 | 1860 | $context['disabled_tags'][trim($tag)] = true; |
1796 | 1861 | } |
@@ -1800,19 +1865,21 @@ discard block |
||
1800 | 1865 | $context['bbc_toolbar'] = array(); |
1801 | 1866 | foreach ($context['bbc_tags'] as $row => $tagRow) |
1802 | 1867 | { |
1803 | - if (!isset($context['bbc_toolbar'][$row])) |
|
1804 | - $context['bbc_toolbar'][$row] = array(); |
|
1868 | + if (!isset($context['bbc_toolbar'][$row])) { |
|
1869 | + $context['bbc_toolbar'][$row] = array(); |
|
1870 | + } |
|
1805 | 1871 | $tagsRow = array(); |
1806 | 1872 | foreach ($tagRow as $tag) |
1807 | 1873 | { |
1808 | 1874 | if ((!empty($tag['code'])) && empty($context['disabled_tags'][$tag['code']])) |
1809 | 1875 | { |
1810 | 1876 | $tagsRow[] = $tag['code']; |
1811 | - if (isset($tag['image'])) |
|
1812 | - $bbcodes_styles .= ' |
|
1877 | + if (isset($tag['image'])) { |
|
1878 | + $bbcodes_styles .= ' |
|
1813 | 1879 | .sceditor-button-' . $tag['code'] . ' div { |
1814 | 1880 | background: url(\'' . $settings['default_theme_url'] . '/images/bbc/' . $tag['image'] . '.png\'); |
1815 | 1881 | }'; |
1882 | + } |
|
1816 | 1883 | if (isset($tag['before'])) |
1817 | 1884 | { |
1818 | 1885 | $context['bbcodes_handlers'] .= ' |
@@ -1826,8 +1893,7 @@ discard block |
||
1826 | 1893 | });'; |
1827 | 1894 | } |
1828 | 1895 | |
1829 | - } |
|
1830 | - else |
|
1896 | + } else |
|
1831 | 1897 | { |
1832 | 1898 | $context['bbc_toolbar'][$row][] = implode(',', $tagsRow); |
1833 | 1899 | $tagsRow = array(); |
@@ -1838,14 +1904,16 @@ discard block |
||
1838 | 1904 | { |
1839 | 1905 | $context['bbc_toolbar'][$row][] = implode(',', $tagsRow); |
1840 | 1906 | $tagsRow = array(); |
1841 | - if (!isset($context['disabled_tags']['font'])) |
|
1842 | - $tagsRow[] = 'font'; |
|
1843 | - if (!isset($context['disabled_tags']['size'])) |
|
1844 | - $tagsRow[] = 'size'; |
|
1845 | - if (!isset($context['disabled_tags']['color'])) |
|
1846 | - $tagsRow[] = 'color'; |
|
1847 | - } |
|
1848 | - elseif ($row == 1 && empty($modSettings['disable_wysiwyg'])) |
|
1907 | + if (!isset($context['disabled_tags']['font'])) { |
|
1908 | + $tagsRow[] = 'font'; |
|
1909 | + } |
|
1910 | + if (!isset($context['disabled_tags']['size'])) { |
|
1911 | + $tagsRow[] = 'size'; |
|
1912 | + } |
|
1913 | + if (!isset($context['disabled_tags']['color'])) { |
|
1914 | + $tagsRow[] = 'color'; |
|
1915 | + } |
|
1916 | + } elseif ($row == 1 && empty($modSettings['disable_wysiwyg'])) |
|
1849 | 1917 | { |
1850 | 1918 | $tmp = array(); |
1851 | 1919 | $tagsRow[] = 'removeformat'; |
@@ -1856,13 +1924,15 @@ discard block |
||
1856 | 1924 | } |
1857 | 1925 | } |
1858 | 1926 | |
1859 | - if (!empty($tagsRow)) |
|
1860 | - $context['bbc_toolbar'][$row][] = implode(',', $tagsRow); |
|
1927 | + if (!empty($tagsRow)) { |
|
1928 | + $context['bbc_toolbar'][$row][] = implode(',', $tagsRow); |
|
1929 | + } |
|
1861 | 1930 | } |
1862 | - if (!empty($bbcodes_styles)) |
|
1863 | - $context['html_headers'] .= ' |
|
1931 | + if (!empty($bbcodes_styles)) { |
|
1932 | + $context['html_headers'] .= ' |
|
1864 | 1933 | <style>' . $bbcodes_styles . ' |
1865 | 1934 | </style>'; |
1935 | + } |
|
1866 | 1936 | } |
1867 | 1937 | |
1868 | 1938 | // Initialize smiley array... if not loaded before. |
@@ -1874,8 +1944,8 @@ discard block |
||
1874 | 1944 | ); |
1875 | 1945 | |
1876 | 1946 | // Load smileys - don't bother to run a query if we're not using the database's ones anyhow. |
1877 | - if (empty($modSettings['smiley_enable']) && $user_info['smiley_set'] != 'none') |
|
1878 | - $context['smileys']['postform'][] = array( |
|
1947 | + if (empty($modSettings['smiley_enable']) && $user_info['smiley_set'] != 'none') { |
|
1948 | + $context['smileys']['postform'][] = array( |
|
1879 | 1949 | 'smileys' => array( |
1880 | 1950 | array( |
1881 | 1951 | 'code' => ':)', |
@@ -1961,7 +2031,7 @@ discard block |
||
1961 | 2031 | ), |
1962 | 2032 | 'isLast' => true, |
1963 | 2033 | ); |
1964 | - elseif ($user_info['smiley_set'] != 'none') |
|
2034 | + } elseif ($user_info['smiley_set'] != 'none') |
|
1965 | 2035 | { |
1966 | 2036 | if (($temp = cache_get_data('posting_smileys', 480)) == null) |
1967 | 2037 | { |
@@ -1984,17 +2054,19 @@ discard block |
||
1984 | 2054 | |
1985 | 2055 | foreach ($context['smileys'] as $section => $smileyRows) |
1986 | 2056 | { |
1987 | - foreach ($smileyRows as $rowIndex => $smileys) |
|
1988 | - $context['smileys'][$section][$rowIndex]['smileys'][count($smileys['smileys']) - 1]['isLast'] = true; |
|
2057 | + foreach ($smileyRows as $rowIndex => $smileys) { |
|
2058 | + $context['smileys'][$section][$rowIndex]['smileys'][count($smileys['smileys']) - 1]['isLast'] = true; |
|
2059 | + } |
|
1989 | 2060 | |
1990 | - if (!empty($smileyRows)) |
|
1991 | - $context['smileys'][$section][count($smileyRows) - 1]['isLast'] = true; |
|
2061 | + if (!empty($smileyRows)) { |
|
2062 | + $context['smileys'][$section][count($smileyRows) - 1]['isLast'] = true; |
|
2063 | + } |
|
1992 | 2064 | } |
1993 | 2065 | |
1994 | 2066 | cache_put_data('posting_smileys', $context['smileys'], 480); |
2067 | + } else { |
|
2068 | + $context['smileys'] = $temp; |
|
1995 | 2069 | } |
1996 | - else |
|
1997 | - $context['smileys'] = $temp; |
|
1998 | 2070 | } |
1999 | 2071 | } |
2000 | 2072 | |
@@ -2020,8 +2092,9 @@ discard block |
||
2020 | 2092 | loadTemplate('GenericControls'); |
2021 | 2093 | |
2022 | 2094 | // Some javascript ma'am? |
2023 | - if (!empty($verificationOptions['override_visual']) || (!empty($modSettings['visual_verification_type']) && !isset($verificationOptions['override_visual']))) |
|
2024 | - loadJavaScriptFile('captcha.js', array(), 'smf_captcha'); |
|
2095 | + if (!empty($verificationOptions['override_visual']) || (!empty($modSettings['visual_verification_type']) && !isset($verificationOptions['override_visual']))) { |
|
2096 | + loadJavaScriptFile('captcha.js', array(), 'smf_captcha'); |
|
2097 | + } |
|
2025 | 2098 | |
2026 | 2099 | $context['use_graphic_library'] = in_array('gd', get_loaded_extensions()); |
2027 | 2100 | |
@@ -2034,8 +2107,8 @@ discard block |
||
2034 | 2107 | $isNew = !isset($context['controls']['verification'][$verificationOptions['id']]); |
2035 | 2108 | |
2036 | 2109 | // Log this into our collection. |
2037 | - if ($isNew) |
|
2038 | - $context['controls']['verification'][$verificationOptions['id']] = array( |
|
2110 | + if ($isNew) { |
|
2111 | + $context['controls']['verification'][$verificationOptions['id']] = array( |
|
2039 | 2112 | 'id' => $verificationOptions['id'], |
2040 | 2113 | 'empty_field' => empty($verificationOptions['no_empty_field']), |
2041 | 2114 | 'show_visual' => !empty($verificationOptions['override_visual']) || (!empty($modSettings['visual_verification_type']) && !isset($verificationOptions['override_visual'])), |
@@ -2046,13 +2119,15 @@ discard block |
||
2046 | 2119 | 'questions' => array(), |
2047 | 2120 | 'can_recaptcha' => !empty($modSettings['recaptcha_enabled']) && !empty($modSettings['recaptcha_site_key']) && !empty($modSettings['recaptcha_secret_key']), |
2048 | 2121 | ); |
2122 | + } |
|
2049 | 2123 | $thisVerification = &$context['controls']['verification'][$verificationOptions['id']]; |
2050 | 2124 | |
2051 | 2125 | // Is there actually going to be anything? |
2052 | - if (empty($thisVerification['show_visual']) && empty($thisVerification['number_questions']) && empty($thisVerification['can_recaptcha'])) |
|
2053 | - return false; |
|
2054 | - elseif (!$isNew && !$do_test) |
|
2055 | - return true; |
|
2126 | + if (empty($thisVerification['show_visual']) && empty($thisVerification['number_questions']) && empty($thisVerification['can_recaptcha'])) { |
|
2127 | + return false; |
|
2128 | + } elseif (!$isNew && !$do_test) { |
|
2129 | + return true; |
|
2130 | + } |
|
2056 | 2131 | |
2057 | 2132 | // Sanitize reCAPTCHA fields? |
2058 | 2133 | if ($thisVerification['can_recaptcha']) |
@@ -2065,11 +2140,12 @@ discard block |
||
2065 | 2140 | } |
2066 | 2141 | |
2067 | 2142 | // Add javascript for the object. |
2068 | - if ($context['controls']['verification'][$verificationOptions['id']]['show_visual']) |
|
2069 | - $context['insert_after_template'] .= ' |
|
2143 | + if ($context['controls']['verification'][$verificationOptions['id']]['show_visual']) { |
|
2144 | + $context['insert_after_template'] .= ' |
|
2070 | 2145 | <script> |
2071 | 2146 | var verification' . $verificationOptions['id'] . 'Handle = new smfCaptcha("' . $thisVerification['image_href'] . '", "' . $verificationOptions['id'] . '", ' . ($context['use_graphic_library'] ? 1 : 0) . '); |
2072 | 2147 | </script>'; |
2148 | + } |
|
2073 | 2149 | |
2074 | 2150 | // If we want questions do we have a cache of all the IDs? |
2075 | 2151 | if (!empty($thisVerification['number_questions']) && empty($modSettings['question_id_cache'])) |
@@ -2092,8 +2168,9 @@ discard block |
||
2092 | 2168 | unset ($row['id_question']); |
2093 | 2169 | // Make them all lowercase. We can't directly use $smcFunc['strtolower'] with array_walk, so do it manually, eh? |
2094 | 2170 | $row['answers'] = $smcFunc['json_decode']($row['answers'], true); |
2095 | - foreach ($row['answers'] as $k => $v) |
|
2096 | - $row['answers'][$k] = $smcFunc['strtolower']($v); |
|
2171 | + foreach ($row['answers'] as $k => $v) { |
|
2172 | + $row['answers'][$k] = $smcFunc['strtolower']($v); |
|
2173 | + } |
|
2097 | 2174 | |
2098 | 2175 | $modSettings['question_id_cache']['questions'][$id_question] = $row; |
2099 | 2176 | $modSettings['question_id_cache']['langs'][$row['lngfile']][] = $id_question; |
@@ -2104,35 +2181,42 @@ discard block |
||
2104 | 2181 | } |
2105 | 2182 | } |
2106 | 2183 | |
2107 | - if (!isset($_SESSION[$verificationOptions['id'] . '_vv'])) |
|
2108 | - $_SESSION[$verificationOptions['id'] . '_vv'] = array(); |
|
2184 | + if (!isset($_SESSION[$verificationOptions['id'] . '_vv'])) { |
|
2185 | + $_SESSION[$verificationOptions['id'] . '_vv'] = array(); |
|
2186 | + } |
|
2109 | 2187 | |
2110 | 2188 | // Do we need to refresh the verification? |
2111 | - if (!$do_test && (!empty($_SESSION[$verificationOptions['id'] . '_vv']['did_pass']) || empty($_SESSION[$verificationOptions['id'] . '_vv']['count']) || $_SESSION[$verificationOptions['id'] . '_vv']['count'] > 3) && empty($verificationOptions['dont_refresh'])) |
|
2112 | - $force_refresh = true; |
|
2113 | - else |
|
2114 | - $force_refresh = false; |
|
2189 | + if (!$do_test && (!empty($_SESSION[$verificationOptions['id'] . '_vv']['did_pass']) || empty($_SESSION[$verificationOptions['id'] . '_vv']['count']) || $_SESSION[$verificationOptions['id'] . '_vv']['count'] > 3) && empty($verificationOptions['dont_refresh'])) { |
|
2190 | + $force_refresh = true; |
|
2191 | + } else { |
|
2192 | + $force_refresh = false; |
|
2193 | + } |
|
2115 | 2194 | |
2116 | 2195 | // This can also force a fresh, although unlikely. |
2117 | - if (($thisVerification['show_visual'] && empty($_SESSION[$verificationOptions['id'] . '_vv']['code'])) || ($thisVerification['number_questions'] && empty($_SESSION[$verificationOptions['id'] . '_vv']['q']))) |
|
2118 | - $force_refresh = true; |
|
2196 | + if (($thisVerification['show_visual'] && empty($_SESSION[$verificationOptions['id'] . '_vv']['code'])) || ($thisVerification['number_questions'] && empty($_SESSION[$verificationOptions['id'] . '_vv']['q']))) { |
|
2197 | + $force_refresh = true; |
|
2198 | + } |
|
2119 | 2199 | |
2120 | 2200 | $verification_errors = array(); |
2121 | 2201 | // Start with any testing. |
2122 | 2202 | if ($do_test) |
2123 | 2203 | { |
2124 | 2204 | // This cannot happen! |
2125 | - if (!isset($_SESSION[$verificationOptions['id'] . '_vv']['count'])) |
|
2126 | - fatal_lang_error('no_access', false); |
|
2205 | + if (!isset($_SESSION[$verificationOptions['id'] . '_vv']['count'])) { |
|
2206 | + fatal_lang_error('no_access', false); |
|
2207 | + } |
|
2127 | 2208 | // ... nor this! |
2128 | - if ($thisVerification['number_questions'] && (!isset($_SESSION[$verificationOptions['id'] . '_vv']['q']) || !isset($_REQUEST[$verificationOptions['id'] . '_vv']['q']))) |
|
2129 | - fatal_lang_error('no_access', false); |
|
2209 | + if ($thisVerification['number_questions'] && (!isset($_SESSION[$verificationOptions['id'] . '_vv']['q']) || !isset($_REQUEST[$verificationOptions['id'] . '_vv']['q']))) { |
|
2210 | + fatal_lang_error('no_access', false); |
|
2211 | + } |
|
2130 | 2212 | // Hmm, it's requested but not actually declared. This shouldn't happen. |
2131 | - if ($thisVerification['empty_field'] && empty($_SESSION[$verificationOptions['id'] . '_vv']['empty_field'])) |
|
2132 | - fatal_lang_error('no_access', false); |
|
2213 | + if ($thisVerification['empty_field'] && empty($_SESSION[$verificationOptions['id'] . '_vv']['empty_field'])) { |
|
2214 | + fatal_lang_error('no_access', false); |
|
2215 | + } |
|
2133 | 2216 | // While we're here, did the user do something bad? |
2134 | - if ($thisVerification['empty_field'] && !empty($_SESSION[$verificationOptions['id'] . '_vv']['empty_field']) && !empty($_REQUEST[$_SESSION[$verificationOptions['id'] . '_vv']['empty_field']])) |
|
2135 | - $verification_errors[] = 'wrong_verification_answer'; |
|
2217 | + if ($thisVerification['empty_field'] && !empty($_SESSION[$verificationOptions['id'] . '_vv']['empty_field']) && !empty($_REQUEST[$_SESSION[$verificationOptions['id'] . '_vv']['empty_field']])) { |
|
2218 | + $verification_errors[] = 'wrong_verification_answer'; |
|
2219 | + } |
|
2136 | 2220 | |
2137 | 2221 | if ($thisVerification['can_recaptcha']) |
2138 | 2222 | { |
@@ -2143,22 +2227,25 @@ discard block |
||
2143 | 2227 | { |
2144 | 2228 | $resp = $reCaptcha->verify($_POST['g-recaptcha-response'], $user_info['ip']); |
2145 | 2229 | |
2146 | - if (!$resp->isSuccess()) |
|
2147 | - $verification_errors[] = 'wrong_verification_code'; |
|
2230 | + if (!$resp->isSuccess()) { |
|
2231 | + $verification_errors[] = 'wrong_verification_code'; |
|
2232 | + } |
|
2233 | + } else { |
|
2234 | + $verification_errors[] = 'wrong_verification_code'; |
|
2148 | 2235 | } |
2149 | - else |
|
2150 | - $verification_errors[] = 'wrong_verification_code'; |
|
2151 | 2236 | } |
2152 | - if ($thisVerification['show_visual'] && (empty($_REQUEST[$verificationOptions['id'] . '_vv']['code']) || empty($_SESSION[$verificationOptions['id'] . '_vv']['code']) || strtoupper($_REQUEST[$verificationOptions['id'] . '_vv']['code']) !== $_SESSION[$verificationOptions['id'] . '_vv']['code'])) |
|
2153 | - $verification_errors[] = 'wrong_verification_code'; |
|
2237 | + if ($thisVerification['show_visual'] && (empty($_REQUEST[$verificationOptions['id'] . '_vv']['code']) || empty($_SESSION[$verificationOptions['id'] . '_vv']['code']) || strtoupper($_REQUEST[$verificationOptions['id'] . '_vv']['code']) !== $_SESSION[$verificationOptions['id'] . '_vv']['code'])) { |
|
2238 | + $verification_errors[] = 'wrong_verification_code'; |
|
2239 | + } |
|
2154 | 2240 | if ($thisVerification['number_questions']) |
2155 | 2241 | { |
2156 | 2242 | $incorrectQuestions = array(); |
2157 | 2243 | foreach ($_SESSION[$verificationOptions['id'] . '_vv']['q'] as $q) |
2158 | 2244 | { |
2159 | 2245 | // We don't have this question any more, thus no answers. |
2160 | - if (!isset($modSettings['question_id_cache']['questions'][$q])) |
|
2161 | - continue; |
|
2246 | + if (!isset($modSettings['question_id_cache']['questions'][$q])) { |
|
2247 | + continue; |
|
2248 | + } |
|
2162 | 2249 | // This is quite complex. We have our question but it might have multiple answers. |
2163 | 2250 | // First, did they actually answer this question? |
2164 | 2251 | if (!isset($_REQUEST[$verificationOptions['id'] . '_vv']['q'][$q]) || trim($_REQUEST[$verificationOptions['id'] . '_vv']['q'][$q]) == '') |
@@ -2170,24 +2257,28 @@ discard block |
||
2170 | 2257 | else |
2171 | 2258 | { |
2172 | 2259 | $given_answer = trim($smcFunc['htmlspecialchars'](strtolower($_REQUEST[$verificationOptions['id'] . '_vv']['q'][$q]))); |
2173 | - if (!in_array($given_answer, $modSettings['question_id_cache']['questions'][$q]['answers'])) |
|
2174 | - $incorrectQuestions[] = $q; |
|
2260 | + if (!in_array($given_answer, $modSettings['question_id_cache']['questions'][$q]['answers'])) { |
|
2261 | + $incorrectQuestions[] = $q; |
|
2262 | + } |
|
2175 | 2263 | } |
2176 | 2264 | } |
2177 | 2265 | |
2178 | - if (!empty($incorrectQuestions)) |
|
2179 | - $verification_errors[] = 'wrong_verification_answer'; |
|
2266 | + if (!empty($incorrectQuestions)) { |
|
2267 | + $verification_errors[] = 'wrong_verification_answer'; |
|
2268 | + } |
|
2180 | 2269 | } |
2181 | 2270 | } |
2182 | 2271 | |
2183 | 2272 | // Any errors means we refresh potentially. |
2184 | 2273 | if (!empty($verification_errors)) |
2185 | 2274 | { |
2186 | - if (empty($_SESSION[$verificationOptions['id'] . '_vv']['errors'])) |
|
2187 | - $_SESSION[$verificationOptions['id'] . '_vv']['errors'] = 0; |
|
2275 | + if (empty($_SESSION[$verificationOptions['id'] . '_vv']['errors'])) { |
|
2276 | + $_SESSION[$verificationOptions['id'] . '_vv']['errors'] = 0; |
|
2277 | + } |
|
2188 | 2278 | // Too many errors? |
2189 | - elseif ($_SESSION[$verificationOptions['id'] . '_vv']['errors'] > $thisVerification['max_errors']) |
|
2190 | - $force_refresh = true; |
|
2279 | + elseif ($_SESSION[$verificationOptions['id'] . '_vv']['errors'] > $thisVerification['max_errors']) { |
|
2280 | + $force_refresh = true; |
|
2281 | + } |
|
2191 | 2282 | |
2192 | 2283 | // Keep a track of these. |
2193 | 2284 | $_SESSION[$verificationOptions['id'] . '_vv']['errors']++; |
@@ -2220,8 +2311,9 @@ discard block |
||
2220 | 2311 | // Are we overriding the range? |
2221 | 2312 | $character_range = !empty($verificationOptions['override_range']) ? $verificationOptions['override_range'] : $context['standard_captcha_range']; |
2222 | 2313 | |
2223 | - for ($i = 0; $i < 6; $i++) |
|
2224 | - $_SESSION[$verificationOptions['id'] . '_vv']['code'] .= $character_range[array_rand($character_range)]; |
|
2314 | + for ($i = 0; $i < 6; $i++) { |
|
2315 | + $_SESSION[$verificationOptions['id'] . '_vv']['code'] .= $character_range[array_rand($character_range)]; |
|
2316 | + } |
|
2225 | 2317 | } |
2226 | 2318 | |
2227 | 2319 | // Getting some new questions? |
@@ -2229,8 +2321,9 @@ discard block |
||
2229 | 2321 | { |
2230 | 2322 | // Attempt to try the current page's language, followed by the user's preference, followed by the site default. |
2231 | 2323 | $possible_langs = array(); |
2232 | - if (isset($_SESSION['language'])) |
|
2233 | - $possible_langs[] = strtr($_SESSION['language'], array('-utf8' => '')); |
|
2324 | + if (isset($_SESSION['language'])) { |
|
2325 | + $possible_langs[] = strtr($_SESSION['language'], array('-utf8' => '')); |
|
2326 | + } |
|
2234 | 2327 | if (!empty($user_info['language'])); |
2235 | 2328 | $possible_langs[] = $user_info['language']; |
2236 | 2329 | $possible_langs[] = $language; |
@@ -2249,8 +2342,7 @@ discard block |
||
2249 | 2342 | } |
2250 | 2343 | } |
2251 | 2344 | } |
2252 | - } |
|
2253 | - else |
|
2345 | + } else |
|
2254 | 2346 | { |
2255 | 2347 | // Same questions as before. |
2256 | 2348 | $questionIDs = !empty($_SESSION[$verificationOptions['id'] . '_vv']['q']) ? $_SESSION[$verificationOptions['id'] . '_vv']['q'] : array(); |
@@ -2260,8 +2352,9 @@ discard block |
||
2260 | 2352 | // If we do have an empty field, it would be nice to hide it from legitimate users who shouldn't be populating it anyway. |
2261 | 2353 | if (!empty($_SESSION[$verificationOptions['id'] . '_vv']['empty_field'])) |
2262 | 2354 | { |
2263 | - if (!isset($context['html_headers'])) |
|
2264 | - $context['html_headers'] = ''; |
|
2355 | + if (!isset($context['html_headers'])) { |
|
2356 | + $context['html_headers'] = ''; |
|
2357 | + } |
|
2265 | 2358 | $context['html_headers'] .= '<style>.vv_special { display:none; }</style>'; |
2266 | 2359 | } |
2267 | 2360 | |
@@ -2287,11 +2380,13 @@ discard block |
||
2287 | 2380 | $_SESSION[$verificationOptions['id'] . '_vv']['count'] = empty($_SESSION[$verificationOptions['id'] . '_vv']['count']) ? 1 : $_SESSION[$verificationOptions['id'] . '_vv']['count'] + 1; |
2288 | 2381 | |
2289 | 2382 | // Return errors if we have them. |
2290 | - if (!empty($verification_errors)) |
|
2291 | - return $verification_errors; |
|
2383 | + if (!empty($verification_errors)) { |
|
2384 | + return $verification_errors; |
|
2385 | + } |
|
2292 | 2386 | // If we had a test that one, make a note. |
2293 | - elseif ($do_test) |
|
2294 | - $_SESSION[$verificationOptions['id'] . '_vv']['did_pass'] = true; |
|
2387 | + elseif ($do_test) { |
|
2388 | + $_SESSION[$verificationOptions['id'] . '_vv']['did_pass'] = true; |
|
2389 | + } |
|
2295 | 2390 | |
2296 | 2391 | // Say that everything went well chaps. |
2297 | 2392 | return true; |
@@ -2316,8 +2411,9 @@ discard block |
||
2316 | 2411 | call_integration_hook('integrate_autosuggest', array(&$searchTypes)); |
2317 | 2412 | |
2318 | 2413 | // If we're just checking the callback function is registered return true or false. |
2319 | - if ($checkRegistered != null) |
|
2320 | - return isset($searchTypes[$checkRegistered]) && function_exists('AutoSuggest_Search_' . $checkRegistered); |
|
2414 | + if ($checkRegistered != null) { |
|
2415 | + return isset($searchTypes[$checkRegistered]) && function_exists('AutoSuggest_Search_' . $checkRegistered); |
|
2416 | + } |
|
2321 | 2417 | |
2322 | 2418 | checkSession('get'); |
2323 | 2419 | loadTemplate('Xml'); |
@@ -2468,24 +2564,27 @@ discard block |
||
2468 | 2564 | foreach ($possible_versions as $ver) |
2469 | 2565 | { |
2470 | 2566 | $ver = trim($ver); |
2471 | - if (strpos($ver, 'SMF') === 0) |
|
2472 | - $versions[] = $ver; |
|
2567 | + if (strpos($ver, 'SMF') === 0) { |
|
2568 | + $versions[] = $ver; |
|
2569 | + } |
|
2473 | 2570 | } |
2474 | 2571 | } |
2475 | 2572 | $smcFunc['db_free_result']($request); |
2476 | 2573 | |
2477 | 2574 | // Just in case we don't have ANYthing. |
2478 | - if (empty($versions)) |
|
2479 | - $versions = array('SMF 2.0'); |
|
2575 | + if (empty($versions)) { |
|
2576 | + $versions = array('SMF 2.0'); |
|
2577 | + } |
|
2480 | 2578 | |
2481 | - foreach ($versions as $id => $version) |
|
2482 | - if (strpos($version, strtoupper($_REQUEST['search'])) !== false) |
|
2579 | + foreach ($versions as $id => $version) { |
|
2580 | + if (strpos($version, strtoupper($_REQUEST['search'])) !== false) |
|
2483 | 2581 | $xml_data['items']['children'][] = array( |
2484 | 2582 | 'attributes' => array( |
2485 | 2583 | 'id' => $id, |
2486 | 2584 | ), |
2487 | 2585 | 'value' => $version, |
2488 | 2586 | ); |
2587 | + } |
|
2489 | 2588 | |
2490 | 2589 | return $xml_data; |
2491 | 2590 | } |
@@ -14,8 +14,9 @@ discard block |
||
14 | 14 | * @version 2.1 Beta 4 |
15 | 15 | */ |
16 | 16 | |
17 | -if (!defined('SMF')) |
|
17 | +if (!defined('SMF')) { |
|
18 | 18 | die('No direct access...'); |
19 | +} |
|
19 | 20 | |
20 | 21 | /** |
21 | 22 | * Who's online, and what are they doing? |
@@ -35,8 +36,9 @@ discard block |
||
35 | 36 | isAllowedTo('who_view'); |
36 | 37 | |
37 | 38 | // You can't do anything if this is off. |
38 | - if (empty($modSettings['who_enabled'])) |
|
39 | - fatal_lang_error('who_off', false); |
|
39 | + if (empty($modSettings['who_enabled'])) { |
|
40 | + fatal_lang_error('who_off', false); |
|
41 | + } |
|
40 | 42 | |
41 | 43 | // Load the 'Who' template. |
42 | 44 | loadTemplate('Who'); |
@@ -71,9 +73,9 @@ discard block |
||
71 | 73 | $show_methods['spiders'] = '(lo.id_member = 0 AND lo.id_spider > 0)'; |
72 | 74 | $show_methods['guests'] = '(lo.id_member = 0 AND lo.id_spider = 0)'; |
73 | 75 | $context['show_methods']['spiders'] = $txt['who_show_spiders_only']; |
76 | + } elseif (empty($modSettings['show_spider_online']) && isset($_SESSION['who_online_filter']) && $_SESSION['who_online_filter'] == 'spiders') { |
|
77 | + unset($_SESSION['who_online_filter']); |
|
74 | 78 | } |
75 | - elseif (empty($modSettings['show_spider_online']) && isset($_SESSION['who_online_filter']) && $_SESSION['who_online_filter'] == 'spiders') |
|
76 | - unset($_SESSION['who_online_filter']); |
|
77 | 79 | |
78 | 80 | // Does the user prefer a different sort direction? |
79 | 81 | if (isset($_REQUEST['sort']) && isset($sort_methods[$_REQUEST['sort']])) |
@@ -97,20 +99,24 @@ discard block |
||
97 | 99 | $context['sort_direction'] = isset($_REQUEST['asc']) || (isset($_REQUEST['sort_dir']) && $_REQUEST['sort_dir'] == 'asc') ? 'up' : 'down'; |
98 | 100 | |
99 | 101 | $conditions = array(); |
100 | - if (!allowedTo('moderate_forum')) |
|
101 | - $conditions[] = '(COALESCE(mem.show_online, 1) = 1)'; |
|
102 | + if (!allowedTo('moderate_forum')) { |
|
103 | + $conditions[] = '(COALESCE(mem.show_online, 1) = 1)'; |
|
104 | + } |
|
102 | 105 | |
103 | 106 | // Fallback to top filter? |
104 | - if (isset($_REQUEST['submit_top']) && isset($_REQUEST['show_top'])) |
|
105 | - $_REQUEST['show'] = $_REQUEST['show_top']; |
|
107 | + if (isset($_REQUEST['submit_top']) && isset($_REQUEST['show_top'])) { |
|
108 | + $_REQUEST['show'] = $_REQUEST['show_top']; |
|
109 | + } |
|
106 | 110 | // Does the user wish to apply a filter? |
107 | - if (isset($_REQUEST['show']) && isset($show_methods[$_REQUEST['show']])) |
|
108 | - $context['show_by'] = $_SESSION['who_online_filter'] = $_REQUEST['show']; |
|
111 | + if (isset($_REQUEST['show']) && isset($show_methods[$_REQUEST['show']])) { |
|
112 | + $context['show_by'] = $_SESSION['who_online_filter'] = $_REQUEST['show']; |
|
113 | + } |
|
109 | 114 | // Perhaps we saved a filter earlier in the session? |
110 | - elseif (isset($_SESSION['who_online_filter'])) |
|
111 | - $context['show_by'] = $_SESSION['who_online_filter']; |
|
112 | - else |
|
113 | - $context['show_by'] = 'members'; |
|
115 | + elseif (isset($_SESSION['who_online_filter'])) { |
|
116 | + $context['show_by'] = $_SESSION['who_online_filter']; |
|
117 | + } else { |
|
118 | + $context['show_by'] = 'members'; |
|
119 | + } |
|
114 | 120 | |
115 | 121 | $conditions[] = $show_methods[$context['show_by']]; |
116 | 122 | |
@@ -156,8 +162,9 @@ discard block |
||
156 | 162 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
157 | 163 | { |
158 | 164 | $actions = $smcFunc['json_decode']($row['url'], true); |
159 | - if ($actions === false) |
|
160 | - continue; |
|
165 | + if ($actions === false) { |
|
166 | + continue; |
|
167 | + } |
|
161 | 168 | |
162 | 169 | // Send the information to the template. |
163 | 170 | $context['members'][$row['session']] = array( |
@@ -195,8 +202,8 @@ discard block |
||
195 | 202 | $spiderContext = array(); |
196 | 203 | if (!empty($modSettings['show_spider_online']) && ($modSettings['show_spider_online'] == 2 || allowedTo('admin_forum')) && !empty($modSettings['spider_name_cache'])) |
197 | 204 | { |
198 | - foreach ($smcFunc['json_decode']($modSettings['spider_name_cache'], true) as $id => $name) |
|
199 | - $spiderContext[$id] = array( |
|
205 | + foreach ($smcFunc['json_decode']($modSettings['spider_name_cache'], true) as $id => $name) { |
|
206 | + $spiderContext[$id] = array( |
|
200 | 207 | 'id' => 0, |
201 | 208 | 'name' => $name, |
202 | 209 | 'group' => $txt['spiders'], |
@@ -205,6 +212,7 @@ discard block |
||
205 | 212 | 'email' => $name, |
206 | 213 | 'is_guest' => true |
207 | 214 | ); |
215 | + } |
|
208 | 216 | } |
209 | 217 | |
210 | 218 | $url_data = determineActions($url_data); |
@@ -219,16 +227,18 @@ discard block |
||
219 | 227 | // Put it in the context variables. |
220 | 228 | foreach ($context['members'] as $i => $member) |
221 | 229 | { |
222 | - if ($member['id'] != 0) |
|
223 | - $member['id'] = loadMemberContext($member['id']) ? $member['id'] : 0; |
|
230 | + if ($member['id'] != 0) { |
|
231 | + $member['id'] = loadMemberContext($member['id']) ? $member['id'] : 0; |
|
232 | + } |
|
224 | 233 | |
225 | 234 | // Keep the IP that came from the database. |
226 | 235 | $memberContext[$member['id']]['ip'] = $member['ip']; |
227 | 236 | $context['members'][$i]['action'] = isset($url_data[$i]) ? $url_data[$i] : $txt['who_hidden']; |
228 | - if ($member['id'] == 0 && isset($spiderContext[$member['id_spider']])) |
|
229 | - $context['members'][$i] += $spiderContext[$member['id_spider']]; |
|
230 | - else |
|
231 | - $context['members'][$i] += $memberContext[$member['id']]; |
|
237 | + if ($member['id'] == 0 && isset($spiderContext[$member['id_spider']])) { |
|
238 | + $context['members'][$i] += $spiderContext[$member['id_spider']]; |
|
239 | + } else { |
|
240 | + $context['members'][$i] += $memberContext[$member['id']]; |
|
241 | + } |
|
232 | 242 | } |
233 | 243 | |
234 | 244 | // Some people can't send personal messages... |
@@ -263,8 +273,9 @@ discard block |
||
263 | 273 | { |
264 | 274 | global $txt, $user_info, $modSettings, $smcFunc; |
265 | 275 | |
266 | - if (!allowedTo('who_view')) |
|
267 | - return array(); |
|
276 | + if (!allowedTo('who_view')) { |
|
277 | + return array(); |
|
278 | + } |
|
268 | 279 | loadLanguage('Who'); |
269 | 280 | |
270 | 281 | // Actions that require a specific permission level. |
@@ -292,10 +303,11 @@ discard block |
||
292 | 303 | ); |
293 | 304 | call_integration_hook('who_allowed', array(&$allowedActions)); |
294 | 305 | |
295 | - if (!is_array($urls)) |
|
296 | - $url_list = array(array($urls, $user_info['id'])); |
|
297 | - else |
|
298 | - $url_list = $urls; |
|
306 | + if (!is_array($urls)) { |
|
307 | + $url_list = array(array($urls, $user_info['id'])); |
|
308 | + } else { |
|
309 | + $url_list = $urls; |
|
310 | + } |
|
299 | 311 | |
300 | 312 | // These are done to later query these in large chunks. (instead of one by one.) |
301 | 313 | $topic_ids = array(); |
@@ -307,12 +319,14 @@ discard block |
||
307 | 319 | { |
308 | 320 | // Get the request parameters.. |
309 | 321 | $actions = $smcFunc['json_decode']($url[0], true); |
310 | - if ($actions === false) |
|
311 | - continue; |
|
322 | + if ($actions === false) { |
|
323 | + continue; |
|
324 | + } |
|
312 | 325 | |
313 | 326 | // If it's the admin or moderation center, and there is an area set, use that instead. |
314 | - if (isset($actions['action']) && ($actions['action'] == 'admin' || $actions['action'] == 'moderate') && isset($actions['area'])) |
|
315 | - $actions['action'] = $actions['area']; |
|
327 | + if (isset($actions['action']) && ($actions['action'] == 'admin' || $actions['action'] == 'moderate') && isset($actions['area'])) { |
|
328 | + $actions['action'] = $actions['area']; |
|
329 | + } |
|
316 | 330 | |
317 | 331 | // Check if there was no action or the action is display. |
318 | 332 | if (!isset($actions['action']) || $actions['action'] == 'display') |
@@ -332,12 +346,14 @@ discard block |
||
332 | 346 | $board_ids[$actions['board']][$k] = $txt['who_board']; |
333 | 347 | } |
334 | 348 | // It's the board index!! It must be! |
335 | - else |
|
336 | - $data[$k] = $txt['who_index']; |
|
349 | + else { |
|
350 | + $data[$k] = $txt['who_index']; |
|
351 | + } |
|
337 | 352 | } |
338 | 353 | // Probably an error or some goon? |
339 | - elseif ($actions['action'] == '') |
|
340 | - $data[$k] = $txt['who_index']; |
|
354 | + elseif ($actions['action'] == '') { |
|
355 | + $data[$k] = $txt['who_index']; |
|
356 | + } |
|
341 | 357 | // Some other normal action...? |
342 | 358 | else |
343 | 359 | { |
@@ -345,23 +361,25 @@ discard block |
||
345 | 361 | if ($actions['action'] == 'profile') |
346 | 362 | { |
347 | 363 | // Whose? Their own? |
348 | - if (empty($actions['u'])) |
|
349 | - $actions['u'] = $url[1]; |
|
364 | + if (empty($actions['u'])) { |
|
365 | + $actions['u'] = $url[1]; |
|
366 | + } |
|
350 | 367 | |
351 | 368 | $data[$k] = $txt['who_hidden']; |
352 | 369 | $profile_ids[(int) $actions['u']][$k] = $actions['u'] == $url[1] ? $txt['who_viewownprofile'] : $txt['who_viewprofile']; |
353 | - } |
|
354 | - elseif (($actions['action'] == 'post' || $actions['action'] == 'post2') && empty($actions['topic']) && isset($actions['board'])) |
|
370 | + } elseif (($actions['action'] == 'post' || $actions['action'] == 'post2') && empty($actions['topic']) && isset($actions['board'])) |
|
355 | 371 | { |
356 | 372 | $data[$k] = $txt['who_hidden']; |
357 | 373 | $board_ids[(int) $actions['board']][$k] = isset($actions['poll']) ? $txt['who_poll'] : $txt['who_post']; |
358 | 374 | } |
359 | 375 | // A subaction anyone can view... if the language string is there, show it. |
360 | - elseif (isset($actions['sa']) && isset($txt['whoall_' . $actions['action'] . '_' . $actions['sa']])) |
|
361 | - $data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']]) ? $txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']] : $txt['whoall_' . $actions['action'] . '_' . $actions['sa']]; |
|
376 | + elseif (isset($actions['sa']) && isset($txt['whoall_' . $actions['action'] . '_' . $actions['sa']])) { |
|
377 | + $data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']]) ? $txt[$preferred_prefix . $actions['action'] . '_' . $actions['sa']] : $txt['whoall_' . $actions['action'] . '_' . $actions['sa']]; |
|
378 | + } |
|
362 | 379 | // An action any old fellow can look at. (if ['whoall_' . $action] exists, we know everyone can see it.) |
363 | - elseif (isset($txt['whoall_' . $actions['action']])) |
|
364 | - $data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action']]) ? $txt[$preferred_prefix . $actions['action']] : $txt['whoall_' . $actions['action']]; |
|
380 | + elseif (isset($txt['whoall_' . $actions['action']])) { |
|
381 | + $data[$k] = $preferred_prefix && isset($txt[$preferred_prefix . $actions['action']]) ? $txt[$preferred_prefix . $actions['action']] : $txt['whoall_' . $actions['action']]; |
|
382 | + } |
|
365 | 383 | // Viewable if and only if they can see the board... |
366 | 384 | elseif (isset($txt['whotopic_' . $actions['action']])) |
367 | 385 | { |
@@ -370,8 +388,7 @@ discard block |
||
370 | 388 | |
371 | 389 | $data[$k] = $txt['who_hidden']; |
372 | 390 | $topic_ids[$topic][$k] = $txt['whotopic_' . $actions['action']]; |
373 | - } |
|
374 | - elseif (isset($txt['whopost_' . $actions['action']])) |
|
391 | + } elseif (isset($txt['whopost_' . $actions['action']])) |
|
375 | 392 | { |
376 | 393 | // Find out what message they are accessing. |
377 | 394 | $msgid = (int) (isset($actions['msg']) ? $actions['msg'] : (isset($actions['quote']) ? $actions['quote'] : 0)); |
@@ -394,41 +411,46 @@ discard block |
||
394 | 411 | $data[$k] = sprintf($txt['whopost_' . $actions['action']], $id_topic, $subject); |
395 | 412 | $smcFunc['db_free_result']($result); |
396 | 413 | |
397 | - if (empty($id_topic)) |
|
398 | - $data[$k] = $txt['who_hidden']; |
|
414 | + if (empty($id_topic)) { |
|
415 | + $data[$k] = $txt['who_hidden']; |
|
416 | + } |
|
399 | 417 | } |
400 | 418 | // Viewable only by administrators.. (if it starts with whoadmin, it's admin only!) |
401 | - elseif (allowedTo('moderate_forum') && isset($txt['whoadmin_' . $actions['action']])) |
|
402 | - $data[$k] = $txt['whoadmin_' . $actions['action']]; |
|
419 | + elseif (allowedTo('moderate_forum') && isset($txt['whoadmin_' . $actions['action']])) { |
|
420 | + $data[$k] = $txt['whoadmin_' . $actions['action']]; |
|
421 | + } |
|
403 | 422 | // Viewable by permission level. |
404 | 423 | elseif (isset($allowedActions[$actions['action']])) |
405 | 424 | { |
406 | - if (allowedTo($allowedActions[$actions['action']])) |
|
407 | - $data[$k] = $txt['whoallow_' . $actions['action']]; |
|
408 | - elseif (in_array('moderate_forum', $allowedActions[$actions['action']])) |
|
409 | - $data[$k] = $txt['who_moderate']; |
|
410 | - elseif (in_array('admin_forum', $allowedActions[$actions['action']])) |
|
411 | - $data[$k] = $txt['who_admin']; |
|
412 | - else |
|
413 | - $data[$k] = $txt['who_hidden']; |
|
425 | + if (allowedTo($allowedActions[$actions['action']])) { |
|
426 | + $data[$k] = $txt['whoallow_' . $actions['action']]; |
|
427 | + } elseif (in_array('moderate_forum', $allowedActions[$actions['action']])) { |
|
428 | + $data[$k] = $txt['who_moderate']; |
|
429 | + } elseif (in_array('admin_forum', $allowedActions[$actions['action']])) { |
|
430 | + $data[$k] = $txt['who_admin']; |
|
431 | + } else { |
|
432 | + $data[$k] = $txt['who_hidden']; |
|
433 | + } |
|
434 | + } elseif (!empty($actions['action'])) { |
|
435 | + $data[$k] = $txt['who_generic'] . ' ' . $actions['action']; |
|
436 | + } else { |
|
437 | + $data[$k] = $txt['who_unknown']; |
|
414 | 438 | } |
415 | - elseif (!empty($actions['action'])) |
|
416 | - $data[$k] = $txt['who_generic'] . ' ' . $actions['action']; |
|
417 | - else |
|
418 | - $data[$k] = $txt['who_unknown']; |
|
419 | 439 | } |
420 | 440 | |
421 | 441 | if (isset($actions['error'])) |
422 | 442 | { |
423 | - if (isset($txt[$actions['error']])) |
|
424 | - $error_message = str_replace('"', '"', empty($actions['who_error_params']) ? $txt[$actions['error']] : vsprintf($txt[$actions['error']], $actions['who_error_params'])); |
|
425 | - elseif ($actions['error'] == 'guest_login') |
|
426 | - $error_message = str_replace('"', '"', $txt['who_guest_login']); |
|
427 | - else |
|
428 | - $error_message = str_replace('"', '"', $actions['error']); |
|
429 | - |
|
430 | - if (!empty($error_message)) |
|
431 | - $data[$k] .= ' <span class="generic_icons error" title="' . $error_message . '"></span>'; |
|
443 | + if (isset($txt[$actions['error']])) { |
|
444 | + $error_message = str_replace('"', '"', empty($actions['who_error_params']) ? $txt[$actions['error']] : vsprintf($txt[$actions['error']], $actions['who_error_params'])); |
|
445 | + } elseif ($actions['error'] == 'guest_login') { |
|
446 | + $error_message = str_replace('"', '"', $txt['who_guest_login']); |
|
447 | + } else { |
|
448 | + $error_message = str_replace('"', '"', $actions['error']); |
|
449 | + } |
|
450 | + |
|
451 | + if (!empty($error_message)) { |
|
452 | + $data[$k] .= ' <span class="generic_icons error" title="' . $error_message . '"></span>'; |
|
453 | + } |
|
432 | 454 | } |
433 | 455 | |
434 | 456 | // Maybe the action is integrated into another system? |
@@ -439,12 +461,15 @@ discard block |
||
439 | 461 | if (!empty($integrate_action)) |
440 | 462 | { |
441 | 463 | $data[$k] = $integrate_action; |
442 | - if (isset($actions['topic']) && isset($topic_ids[(int) $actions['topic']][$k])) |
|
443 | - $topic_ids[(int) $actions['topic']][$k] = $integrate_action; |
|
444 | - if (isset($actions['board']) && isset($board_ids[(int) $actions['board']][$k])) |
|
445 | - $board_ids[(int) $actions['board']][$k] = $integrate_action; |
|
446 | - if (isset($actions['u']) && isset($profile_ids[(int) $actions['u']][$k])) |
|
447 | - $profile_ids[(int) $actions['u']][$k] = $integrate_action; |
|
464 | + if (isset($actions['topic']) && isset($topic_ids[(int) $actions['topic']][$k])) { |
|
465 | + $topic_ids[(int) $actions['topic']][$k] = $integrate_action; |
|
466 | + } |
|
467 | + if (isset($actions['board']) && isset($board_ids[(int) $actions['board']][$k])) { |
|
468 | + $board_ids[(int) $actions['board']][$k] = $integrate_action; |
|
469 | + } |
|
470 | + if (isset($actions['u']) && isset($profile_ids[(int) $actions['u']][$k])) { |
|
471 | + $profile_ids[(int) $actions['u']][$k] = $integrate_action; |
|
472 | + } |
|
448 | 473 | break; |
449 | 474 | } |
450 | 475 | } |
@@ -472,8 +497,9 @@ discard block |
||
472 | 497 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
473 | 498 | { |
474 | 499 | // Show the topic's subject for each of the actions. |
475 | - foreach ($topic_ids[$row['id_topic']] as $k => $session_text) |
|
476 | - $data[$k] = sprintf($session_text, $row['id_topic'], censorText($row['subject'])); |
|
500 | + foreach ($topic_ids[$row['id_topic']] as $k => $session_text) { |
|
501 | + $data[$k] = sprintf($session_text, $row['id_topic'], censorText($row['subject'])); |
|
502 | + } |
|
477 | 503 | } |
478 | 504 | $smcFunc['db_free_result']($result); |
479 | 505 | } |
@@ -495,8 +521,9 @@ discard block |
||
495 | 521 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
496 | 522 | { |
497 | 523 | // Put the board name into the string for each member... |
498 | - foreach ($board_ids[$row['id_board']] as $k => $session_text) |
|
499 | - $data[$k] = sprintf($session_text, $row['id_board'], $row['name']); |
|
524 | + foreach ($board_ids[$row['id_board']] as $k => $session_text) { |
|
525 | + $data[$k] = sprintf($session_text, $row['id_board'], $row['name']); |
|
526 | + } |
|
500 | 527 | } |
501 | 528 | $smcFunc['db_free_result']($result); |
502 | 529 | } |
@@ -518,23 +545,26 @@ discard block |
||
518 | 545 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
519 | 546 | { |
520 | 547 | // If they aren't allowed to view this person's profile, skip it. |
521 | - if (!$allow_view_any && ($user_info['id'] != $row['id_member'])) |
|
522 | - continue; |
|
548 | + if (!$allow_view_any && ($user_info['id'] != $row['id_member'])) { |
|
549 | + continue; |
|
550 | + } |
|
523 | 551 | |
524 | 552 | // Set their action on each - session/text to sprintf. |
525 | - foreach ($profile_ids[$row['id_member']] as $k => $session_text) |
|
526 | - $data[$k] = sprintf($session_text, $row['id_member'], $row['real_name']); |
|
553 | + foreach ($profile_ids[$row['id_member']] as $k => $session_text) { |
|
554 | + $data[$k] = sprintf($session_text, $row['id_member'], $row['real_name']); |
|
555 | + } |
|
527 | 556 | } |
528 | 557 | $smcFunc['db_free_result']($result); |
529 | 558 | } |
530 | 559 | |
531 | 560 | call_integration_hook('whos_online_after', array(&$urls, &$data)); |
532 | 561 | |
533 | - if (!is_array($urls)) |
|
534 | - return isset($data[0]) ? $data[0] : false; |
|
535 | - else |
|
536 | - return $data; |
|
537 | -} |
|
562 | + if (!is_array($urls)) { |
|
563 | + return isset($data[0]) ? $data[0] : false; |
|
564 | + } else { |
|
565 | + return $data; |
|
566 | + } |
|
567 | + } |
|
538 | 568 | |
539 | 569 | /** |
540 | 570 | * It prepares credit and copyright information for the credits page or the admin page |
@@ -710,8 +740,8 @@ discard block |
||
710 | 740 | ); |
711 | 741 | |
712 | 742 | // Give the translators some credit for their hard work. |
713 | - if (!empty($txt['translation_credits'])) |
|
714 | - $context['credits'][] = array( |
|
743 | + if (!empty($txt['translation_credits'])) { |
|
744 | + $context['credits'][] = array( |
|
715 | 745 | 'title' => $txt['credits_groups_translation'], |
716 | 746 | 'groups' => array( |
717 | 747 | array( |
@@ -720,6 +750,7 @@ discard block |
||
720 | 750 | ), |
721 | 751 | ), |
722 | 752 | ); |
753 | + } |
|
723 | 754 | |
724 | 755 | $context['credits'][] = array( |
725 | 756 | 'title' => $txt['credits_special'], |
@@ -14,8 +14,9 @@ discard block |
||
14 | 14 | * @version 2.1 Beta 4 |
15 | 15 | */ |
16 | 16 | |
17 | -if (!defined('SMF')) |
|
17 | +if (!defined('SMF')) { |
|
18 | 18 | die('No direct access...'); |
19 | +} |
|
19 | 20 | |
20 | 21 | /** |
21 | 22 | * Check if the current directory is still valid or not. |
@@ -28,22 +29,24 @@ discard block |
||
28 | 29 | global $smcFunc, $boarddir, $modSettings, $context; |
29 | 30 | |
30 | 31 | // Not pretty, but since we don't want folders created for every post. It'll do unless a better solution can be found. |
31 | - if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'admin') |
|
32 | - $doit = true; |
|
33 | - elseif (empty($modSettings['automanage_attachments'])) |
|
34 | - return; |
|
35 | - elseif (!isset($_FILES)) |
|
36 | - return; |
|
37 | - elseif (isset($_FILES['attachment'])) |
|
38 | - foreach ($_FILES['attachment']['tmp_name'] as $dummy) |
|
32 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'admin') { |
|
33 | + $doit = true; |
|
34 | + } elseif (empty($modSettings['automanage_attachments'])) { |
|
35 | + return; |
|
36 | + } elseif (!isset($_FILES)) { |
|
37 | + return; |
|
38 | + } elseif (isset($_FILES['attachment'])) { |
|
39 | + foreach ($_FILES['attachment']['tmp_name'] as $dummy) |
|
39 | 40 | if (!empty($dummy)) |
40 | 41 | { |
41 | 42 | $doit = true; |
43 | + } |
|
42 | 44 | break; |
43 | 45 | } |
44 | 46 | |
45 | - if (!isset($doit)) |
|
46 | - return; |
|
47 | + if (!isset($doit)) { |
|
48 | + return; |
|
49 | + } |
|
47 | 50 | |
48 | 51 | $year = date('Y'); |
49 | 52 | $month = date('m'); |
@@ -54,21 +57,25 @@ discard block |
||
54 | 57 | |
55 | 58 | if (!empty($modSettings['attachment_basedirectories']) && !empty($modSettings['use_subdirectories_for_attachments'])) |
56 | 59 | { |
57 | - if (!is_array($modSettings['attachment_basedirectories'])) |
|
58 | - $modSettings['attachment_basedirectories'] = $smcFunc['json_decode']($modSettings['attachment_basedirectories'], true); |
|
60 | + if (!is_array($modSettings['attachment_basedirectories'])) { |
|
61 | + $modSettings['attachment_basedirectories'] = $smcFunc['json_decode']($modSettings['attachment_basedirectories'], true); |
|
62 | + } |
|
59 | 63 | $base_dir = array_search($modSettings['basedirectory_for_attachments'], $modSettings['attachment_basedirectories']); |
64 | + } else { |
|
65 | + $base_dir = 0; |
|
60 | 66 | } |
61 | - else |
|
62 | - $base_dir = 0; |
|
63 | 67 | |
64 | 68 | if ($modSettings['automanage_attachments'] == 1) |
65 | 69 | { |
66 | - if (!isset($modSettings['last_attachments_directory'])) |
|
67 | - $modSettings['last_attachments_directory'] = array(); |
|
68 | - if (!is_array($modSettings['last_attachments_directory'])) |
|
69 | - $modSettings['last_attachments_directory'] = $smcFunc['json_decode']($modSettings['last_attachments_directory'], true); |
|
70 | - if (!isset($modSettings['last_attachments_directory'][$base_dir])) |
|
71 | - $modSettings['last_attachments_directory'][$base_dir] = 0; |
|
70 | + if (!isset($modSettings['last_attachments_directory'])) { |
|
71 | + $modSettings['last_attachments_directory'] = array(); |
|
72 | + } |
|
73 | + if (!is_array($modSettings['last_attachments_directory'])) { |
|
74 | + $modSettings['last_attachments_directory'] = $smcFunc['json_decode']($modSettings['last_attachments_directory'], true); |
|
75 | + } |
|
76 | + if (!isset($modSettings['last_attachments_directory'][$base_dir])) { |
|
77 | + $modSettings['last_attachments_directory'][$base_dir] = 0; |
|
78 | + } |
|
72 | 79 | } |
73 | 80 | |
74 | 81 | $basedirectory = (!empty($modSettings['use_subdirectories_for_attachments']) ? ($modSettings['basedirectory_for_attachments']) : $boarddir); |
@@ -97,12 +104,14 @@ discard block |
||
97 | 104 | $updir = ''; |
98 | 105 | } |
99 | 106 | |
100 | - if (!is_array($modSettings['attachmentUploadDir'])) |
|
101 | - $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
102 | - if (!in_array($updir, $modSettings['attachmentUploadDir']) && !empty($updir)) |
|
103 | - $outputCreation = automanage_attachments_create_directory($updir); |
|
104 | - elseif (in_array($updir, $modSettings['attachmentUploadDir'])) |
|
105 | - $outputCreation = true; |
|
107 | + if (!is_array($modSettings['attachmentUploadDir'])) { |
|
108 | + $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
109 | + } |
|
110 | + if (!in_array($updir, $modSettings['attachmentUploadDir']) && !empty($updir)) { |
|
111 | + $outputCreation = automanage_attachments_create_directory($updir); |
|
112 | + } elseif (in_array($updir, $modSettings['attachmentUploadDir'])) { |
|
113 | + $outputCreation = true; |
|
114 | + } |
|
106 | 115 | |
107 | 116 | if ($outputCreation) |
108 | 117 | { |
@@ -139,8 +148,9 @@ discard block |
||
139 | 148 | $count = count($tree); |
140 | 149 | |
141 | 150 | $directory = attachments_init_dir($tree, $count); |
142 | - if ($directory === false) |
|
143 | - return false; |
|
151 | + if ($directory === false) { |
|
152 | + return false; |
|
153 | + } |
|
144 | 154 | } |
145 | 155 | |
146 | 156 | $directory .= DIRECTORY_SEPARATOR . array_shift($tree); |
@@ -168,8 +178,9 @@ discard block |
||
168 | 178 | } |
169 | 179 | |
170 | 180 | // Everything seems fine...let's create the .htaccess |
171 | - if (!file_exists($directory . DIRECTORY_SEPARATOR . '.htaccess')) |
|
172 | - secureDirectory($updir, true); |
|
181 | + if (!file_exists($directory . DIRECTORY_SEPARATOR . '.htaccess')) { |
|
182 | + secureDirectory($updir, true); |
|
183 | + } |
|
173 | 184 | |
174 | 185 | $sep = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? '\/' : DIRECTORY_SEPARATOR; |
175 | 186 | $updir = rtrim($updir, $sep); |
@@ -201,8 +212,9 @@ discard block |
||
201 | 212 | { |
202 | 213 | global $smcFunc, $modSettings, $boarddir; |
203 | 214 | |
204 | - if (!isset($modSettings['automanage_attachments']) || (!empty($modSettings['automanage_attachments']) && $modSettings['automanage_attachments'] != 1)) |
|
205 | - return; |
|
215 | + if (!isset($modSettings['automanage_attachments']) || (!empty($modSettings['automanage_attachments']) && $modSettings['automanage_attachments'] != 1)) { |
|
216 | + return; |
|
217 | + } |
|
206 | 218 | |
207 | 219 | $basedirectory = !empty($modSettings['use_subdirectories_for_attachments']) ? $modSettings['basedirectory_for_attachments'] : $boarddir; |
208 | 220 | // Just to be sure: I don't want directory separators at the end |
@@ -214,13 +226,14 @@ discard block |
||
214 | 226 | { |
215 | 227 | $base_dir = array_search($modSettings['basedirectory_for_attachments'], $modSettings['attachment_basedirectories']); |
216 | 228 | $base_dir = !empty($modSettings['automanage_attachments']) ? $base_dir : 0; |
229 | + } else { |
|
230 | + $base_dir = 0; |
|
217 | 231 | } |
218 | - else |
|
219 | - $base_dir = 0; |
|
220 | 232 | |
221 | 233 | // Get the last attachment directory for that base directory |
222 | - if (empty($modSettings['last_attachments_directory'][$base_dir])) |
|
223 | - $modSettings['last_attachments_directory'][$base_dir] = 0; |
|
234 | + if (empty($modSettings['last_attachments_directory'][$base_dir])) { |
|
235 | + $modSettings['last_attachments_directory'][$base_dir] = 0; |
|
236 | + } |
|
224 | 237 | // And increment it. |
225 | 238 | $modSettings['last_attachments_directory'][$base_dir]++; |
226 | 239 | |
@@ -235,10 +248,10 @@ discard block |
||
235 | 248 | $modSettings['last_attachments_directory'] = $smcFunc['json_decode']($modSettings['last_attachments_directory'], true); |
236 | 249 | |
237 | 250 | return true; |
251 | + } else { |
|
252 | + return false; |
|
253 | + } |
|
238 | 254 | } |
239 | - else |
|
240 | - return false; |
|
241 | -} |
|
242 | 255 | |
243 | 256 | /** |
244 | 257 | * Split a path into a list of all directories and subdirectories |
@@ -256,12 +269,13 @@ discard block |
||
256 | 269 | * in Windows we need to explode for both \ and / |
257 | 270 | * while in linux should be safe to explode only for / (aka DIRECTORY_SEPARATOR) |
258 | 271 | */ |
259 | - if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') |
|
260 | - $tree = preg_split('#[\\\/]#', $directory); |
|
261 | - else |
|
272 | + if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { |
|
273 | + $tree = preg_split('#[\\\/]#', $directory); |
|
274 | + } else |
|
262 | 275 | { |
263 | - if (substr($directory, 0, 1) != DIRECTORY_SEPARATOR) |
|
264 | - return false; |
|
276 | + if (substr($directory, 0, 1) != DIRECTORY_SEPARATOR) { |
|
277 | + return false; |
|
278 | + } |
|
265 | 279 | |
266 | 280 | $tree = explode(DIRECTORY_SEPARATOR, trim($directory, DIRECTORY_SEPARATOR)); |
267 | 281 | } |
@@ -285,10 +299,11 @@ discard block |
||
285 | 299 | //Better be sure that the first part of the path is actually a drive letter... |
286 | 300 | //...even if, I should check this in the admin page...isn't it? |
287 | 301 | //...NHAAA Let's leave space for users' complains! :P |
288 | - if (preg_match('/^[a-z]:$/i', $tree[0])) |
|
289 | - $directory = array_shift($tree); |
|
290 | - else |
|
291 | - return false; |
|
302 | + if (preg_match('/^[a-z]:$/i', $tree[0])) { |
|
303 | + $directory = array_shift($tree); |
|
304 | + } else { |
|
305 | + return false; |
|
306 | + } |
|
292 | 307 | |
293 | 308 | $count--; |
294 | 309 | } |
@@ -303,18 +318,20 @@ discard block |
||
303 | 318 | global $context, $modSettings, $smcFunc, $txt, $user_info; |
304 | 319 | |
305 | 320 | // Make sure we're uploading to the right place. |
306 | - if (!empty($modSettings['automanage_attachments'])) |
|
307 | - automanage_attachments_check_directory(); |
|
321 | + if (!empty($modSettings['automanage_attachments'])) { |
|
322 | + automanage_attachments_check_directory(); |
|
323 | + } |
|
308 | 324 | |
309 | - if (!is_array($modSettings['attachmentUploadDir'])) |
|
310 | - $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
325 | + if (!is_array($modSettings['attachmentUploadDir'])) { |
|
326 | + $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
327 | + } |
|
311 | 328 | |
312 | 329 | $context['attach_dir'] = $modSettings['attachmentUploadDir'][$modSettings['currentAttachmentUploadDir']]; |
313 | 330 | |
314 | 331 | // Is the attachments folder actualy there? |
315 | - if (!empty($context['dir_creation_error'])) |
|
316 | - $initial_error = $context['dir_creation_error']; |
|
317 | - elseif (!is_dir($context['attach_dir'])) |
|
332 | + if (!empty($context['dir_creation_error'])) { |
|
333 | + $initial_error = $context['dir_creation_error']; |
|
334 | + } elseif (!is_dir($context['attach_dir'])) |
|
318 | 335 | { |
319 | 336 | $initial_error = 'attach_folder_warning'; |
320 | 337 | log_error(sprintf($txt['attach_folder_admin_warning'], $context['attach_dir']), 'critical'); |
@@ -337,12 +354,12 @@ discard block |
||
337 | 354 | ); |
338 | 355 | list ($context['attachments']['quantity'], $context['attachments']['total_size']) = $smcFunc['db_fetch_row']($request); |
339 | 356 | $smcFunc['db_free_result']($request); |
340 | - } |
|
341 | - else |
|
342 | - $context['attachments'] = array( |
|
357 | + } else { |
|
358 | + $context['attachments'] = array( |
|
343 | 359 | 'quantity' => 0, |
344 | 360 | 'total_size' => 0, |
345 | 361 | ); |
362 | + } |
|
346 | 363 | } |
347 | 364 | |
348 | 365 | // Hmm. There are still files in session. |
@@ -352,39 +369,44 @@ discard block |
||
352 | 369 | // Let's try to keep them. But... |
353 | 370 | $ignore_temp = true; |
354 | 371 | // If new files are being added. We can't ignore those |
355 | - foreach ($_FILES['attachment']['tmp_name'] as $dummy) |
|
356 | - if (!empty($dummy)) |
|
372 | + foreach ($_FILES['attachment']['tmp_name'] as $dummy) { |
|
373 | + if (!empty($dummy)) |
|
357 | 374 | { |
358 | 375 | $ignore_temp = false; |
376 | + } |
|
359 | 377 | break; |
360 | 378 | } |
361 | 379 | |
362 | 380 | // Need to make space for the new files. So, bye bye. |
363 | 381 | if (!$ignore_temp) |
364 | 382 | { |
365 | - foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) |
|
366 | - if (strpos($attachID, 'post_tmp_' . $user_info['id']) !== false) |
|
383 | + foreach ($_SESSION['temp_attachments'] as $attachID => $attachment) { |
|
384 | + if (strpos($attachID, 'post_tmp_' . $user_info['id']) !== false) |
|
367 | 385 | unlink($attachment['tmp_name']); |
386 | + } |
|
368 | 387 | |
369 | 388 | $context['we_are_history'] = $txt['error_temp_attachments_flushed']; |
370 | 389 | $_SESSION['temp_attachments'] = array(); |
371 | 390 | } |
372 | 391 | } |
373 | 392 | |
374 | - if (!isset($_FILES['attachment']['name'])) |
|
375 | - $_FILES['attachment']['tmp_name'] = array(); |
|
393 | + if (!isset($_FILES['attachment']['name'])) { |
|
394 | + $_FILES['attachment']['tmp_name'] = array(); |
|
395 | + } |
|
376 | 396 | |
377 | - if (!isset($_SESSION['temp_attachments'])) |
|
378 | - $_SESSION['temp_attachments'] = array(); |
|
397 | + if (!isset($_SESSION['temp_attachments'])) { |
|
398 | + $_SESSION['temp_attachments'] = array(); |
|
399 | + } |
|
379 | 400 | |
380 | 401 | // Remember where we are at. If it's anywhere at all. |
381 | - if (!$ignore_temp) |
|
382 | - $_SESSION['temp_attachments']['post'] = array( |
|
402 | + if (!$ignore_temp) { |
|
403 | + $_SESSION['temp_attachments']['post'] = array( |
|
383 | 404 | 'msg' => !empty($_REQUEST['msg']) ? $_REQUEST['msg'] : 0, |
384 | 405 | 'last_msg' => !empty($_REQUEST['last_msg']) ? $_REQUEST['last_msg'] : 0, |
385 | 406 | 'topic' => !empty($topic) ? $topic : 0, |
386 | 407 | 'board' => !empty($board) ? $board : 0, |
387 | 408 | ); |
409 | + } |
|
388 | 410 | |
389 | 411 | // If we have an initial error, lets just display it. |
390 | 412 | if (!empty($initial_error)) |
@@ -392,9 +414,10 @@ discard block |
||
392 | 414 | $_SESSION['temp_attachments']['initial_error'] = $initial_error; |
393 | 415 | |
394 | 416 | // And delete the files 'cos they ain't going nowhere. |
395 | - foreach ($_FILES['attachment']['tmp_name'] as $n => $dummy) |
|
396 | - if (file_exists($_FILES['attachment']['tmp_name'][$n])) |
|
417 | + foreach ($_FILES['attachment']['tmp_name'] as $n => $dummy) { |
|
418 | + if (file_exists($_FILES['attachment']['tmp_name'][$n])) |
|
397 | 419 | unlink($_FILES['attachment']['tmp_name'][$n]); |
420 | + } |
|
398 | 421 | |
399 | 422 | $_FILES['attachment']['tmp_name'] = array(); |
400 | 423 | } |
@@ -402,21 +425,24 @@ discard block |
||
402 | 425 | // Loop through $_FILES['attachment'] array and move each file to the current attachments folder. |
403 | 426 | foreach ($_FILES['attachment']['tmp_name'] as $n => $dummy) |
404 | 427 | { |
405 | - if ($_FILES['attachment']['name'][$n] == '') |
|
406 | - continue; |
|
428 | + if ($_FILES['attachment']['name'][$n] == '') { |
|
429 | + continue; |
|
430 | + } |
|
407 | 431 | |
408 | 432 | // First, let's first check for PHP upload errors. |
409 | 433 | $errors = array(); |
410 | 434 | if (!empty($_FILES['attachment']['error'][$n])) |
411 | 435 | { |
412 | - if ($_FILES['attachment']['error'][$n] == 2) |
|
413 | - $errors[] = array('file_too_big', array($modSettings['attachmentSizeLimit'])); |
|
414 | - elseif ($_FILES['attachment']['error'][$n] == 6) |
|
415 | - log_error($_FILES['attachment']['name'][$n] . ': ' . $txt['php_upload_error_6'], 'critical'); |
|
416 | - else |
|
417 | - log_error($_FILES['attachment']['name'][$n] . ': ' . $txt['php_upload_error_' . $_FILES['attachment']['error'][$n]]); |
|
418 | - if (empty($errors)) |
|
419 | - $errors[] = 'attach_php_error'; |
|
436 | + if ($_FILES['attachment']['error'][$n] == 2) { |
|
437 | + $errors[] = array('file_too_big', array($modSettings['attachmentSizeLimit'])); |
|
438 | + } elseif ($_FILES['attachment']['error'][$n] == 6) { |
|
439 | + log_error($_FILES['attachment']['name'][$n] . ': ' . $txt['php_upload_error_6'], 'critical'); |
|
440 | + } else { |
|
441 | + log_error($_FILES['attachment']['name'][$n] . ': ' . $txt['php_upload_error_' . $_FILES['attachment']['error'][$n]]); |
|
442 | + } |
|
443 | + if (empty($errors)) { |
|
444 | + $errors[] = 'attach_php_error'; |
|
445 | + } |
|
420 | 446 | } |
421 | 447 | |
422 | 448 | // Try to move and rename the file before doing any more checks on it. |
@@ -426,8 +452,9 @@ discard block |
||
426 | 452 | { |
427 | 453 | // The reported MIME type of the attachment might not be reliable. |
428 | 454 | // Fortunately, PHP 5.3+ lets us easily verify the real MIME type. |
429 | - if (function_exists('mime_content_type')) |
|
430 | - $_FILES['attachment']['type'][$n] = mime_content_type($_FILES['attachment']['tmp_name'][$n]); |
|
455 | + if (function_exists('mime_content_type')) { |
|
456 | + $_FILES['attachment']['type'][$n] = mime_content_type($_FILES['attachment']['tmp_name'][$n]); |
|
457 | + } |
|
431 | 458 | |
432 | 459 | $_SESSION['temp_attachments'][$attachID] = array( |
433 | 460 | 'name' => $smcFunc['htmlspecialchars'](basename($_FILES['attachment']['name'][$n])), |
@@ -439,16 +466,16 @@ discard block |
||
439 | 466 | ); |
440 | 467 | |
441 | 468 | // Move the file to the attachments folder with a temp name for now. |
442 | - if (@move_uploaded_file($_FILES['attachment']['tmp_name'][$n], $destName)) |
|
443 | - smf_chmod($destName, 0644); |
|
444 | - else |
|
469 | + if (@move_uploaded_file($_FILES['attachment']['tmp_name'][$n], $destName)) { |
|
470 | + smf_chmod($destName, 0644); |
|
471 | + } else |
|
445 | 472 | { |
446 | 473 | $_SESSION['temp_attachments'][$attachID]['errors'][] = 'attach_timeout'; |
447 | - if (file_exists($_FILES['attachment']['tmp_name'][$n])) |
|
448 | - unlink($_FILES['attachment']['tmp_name'][$n]); |
|
474 | + if (file_exists($_FILES['attachment']['tmp_name'][$n])) { |
|
475 | + unlink($_FILES['attachment']['tmp_name'][$n]); |
|
476 | + } |
|
449 | 477 | } |
450 | - } |
|
451 | - else |
|
478 | + } else |
|
452 | 479 | { |
453 | 480 | $_SESSION['temp_attachments'][$attachID] = array( |
454 | 481 | 'name' => $smcFunc['htmlspecialchars'](basename($_FILES['attachment']['name'][$n])), |
@@ -456,12 +483,14 @@ discard block |
||
456 | 483 | 'errors' => $errors, |
457 | 484 | ); |
458 | 485 | |
459 | - if (file_exists($_FILES['attachment']['tmp_name'][$n])) |
|
460 | - unlink($_FILES['attachment']['tmp_name'][$n]); |
|
486 | + if (file_exists($_FILES['attachment']['tmp_name'][$n])) { |
|
487 | + unlink($_FILES['attachment']['tmp_name'][$n]); |
|
488 | + } |
|
461 | 489 | } |
462 | 490 | // If there's no errors to this point. We still do need to apply some additional checks before we are finished. |
463 | - if (empty($_SESSION['temp_attachments'][$attachID]['errors'])) |
|
464 | - attachmentChecks($attachID); |
|
491 | + if (empty($_SESSION['temp_attachments'][$attachID]['errors'])) { |
|
492 | + attachmentChecks($attachID); |
|
493 | + } |
|
465 | 494 | } |
466 | 495 | // Mod authors, finally a hook to hang an alternate attachment upload system upon |
467 | 496 | // Upload to the current attachment folder with the file name $attachID or 'post_tmp_' . $user_info['id'] . '_' . md5(mt_rand()) |
@@ -488,21 +517,20 @@ discard block |
||
488 | 517 | global $modSettings, $context, $sourcedir, $smcFunc; |
489 | 518 | |
490 | 519 | // No data or missing data .... Not necessarily needed, but in case a mod author missed something. |
491 | - if (empty($_SESSION['temp_attachments'][$attachID])) |
|
492 | - $error = '$_SESSION[\'temp_attachments\'][$attachID]'; |
|
493 | - |
|
494 | - elseif (empty($attachID)) |
|
495 | - $error = '$attachID'; |
|
496 | - |
|
497 | - elseif (empty($context['attachments'])) |
|
498 | - $error = '$context[\'attachments\']'; |
|
499 | - |
|
500 | - elseif (empty($context['attach_dir'])) |
|
501 | - $error = '$context[\'attach_dir\']'; |
|
520 | + if (empty($_SESSION['temp_attachments'][$attachID])) { |
|
521 | + $error = '$_SESSION[\'temp_attachments\'][$attachID]'; |
|
522 | + } elseif (empty($attachID)) { |
|
523 | + $error = '$attachID'; |
|
524 | + } elseif (empty($context['attachments'])) { |
|
525 | + $error = '$context[\'attachments\']'; |
|
526 | + } elseif (empty($context['attach_dir'])) { |
|
527 | + $error = '$context[\'attach_dir\']'; |
|
528 | + } |
|
502 | 529 | |
503 | 530 | // Let's get their attention. |
504 | - if (!empty($error)) |
|
505 | - fatal_lang_error('attach_check_nag', 'debug', array($error)); |
|
531 | + if (!empty($error)) { |
|
532 | + fatal_lang_error('attach_check_nag', 'debug', array($error)); |
|
533 | + } |
|
506 | 534 | |
507 | 535 | // Just in case this slipped by the first checks, we stop it here and now |
508 | 536 | if ($_SESSION['temp_attachments'][$attachID]['size'] == 0) |
@@ -531,8 +559,9 @@ discard block |
||
531 | 559 | $size = @getimagesize($_SESSION['temp_attachments'][$attachID]['tmp_name']); |
532 | 560 | if (!(empty($size)) && ($size[2] != $old_format)) |
533 | 561 | { |
534 | - if (isset($context['validImageTypes'][$size[2]])) |
|
535 | - $_SESSION['temp_attachments'][$attachID]['type'] = 'image/' . $context['validImageTypes'][$size[2]]; |
|
562 | + if (isset($context['validImageTypes'][$size[2]])) { |
|
563 | + $_SESSION['temp_attachments'][$attachID]['type'] = 'image/' . $context['validImageTypes'][$size[2]]; |
|
564 | + } |
|
536 | 565 | } |
537 | 566 | } |
538 | 567 | } |
@@ -586,42 +615,48 @@ discard block |
||
586 | 615 | // Or, let the user know that it ain't gonna happen. |
587 | 616 | else |
588 | 617 | { |
589 | - if (isset($context['dir_creation_error'])) |
|
590 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = $context['dir_creation_error']; |
|
591 | - else |
|
592 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = 'ran_out_of_space'; |
|
618 | + if (isset($context['dir_creation_error'])) { |
|
619 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = $context['dir_creation_error']; |
|
620 | + } else { |
|
621 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = 'ran_out_of_space'; |
|
622 | + } |
|
593 | 623 | } |
624 | + } else { |
|
625 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = 'ran_out_of_space'; |
|
594 | 626 | } |
595 | - else |
|
596 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = 'ran_out_of_space'; |
|
597 | 627 | } |
598 | 628 | } |
599 | 629 | |
600 | 630 | // Is the file too big? |
601 | 631 | $context['attachments']['total_size'] += $_SESSION['temp_attachments'][$attachID]['size']; |
602 | - if (!empty($modSettings['attachmentSizeLimit']) && $_SESSION['temp_attachments'][$attachID]['size'] > $modSettings['attachmentSizeLimit'] * 1024) |
|
603 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = array('file_too_big', array(comma_format($modSettings['attachmentSizeLimit'], 0))); |
|
632 | + if (!empty($modSettings['attachmentSizeLimit']) && $_SESSION['temp_attachments'][$attachID]['size'] > $modSettings['attachmentSizeLimit'] * 1024) { |
|
633 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = array('file_too_big', array(comma_format($modSettings['attachmentSizeLimit'], 0))); |
|
634 | + } |
|
604 | 635 | |
605 | 636 | // Check the total upload size for this post... |
606 | - if (!empty($modSettings['attachmentPostLimit']) && $context['attachments']['total_size'] > $modSettings['attachmentPostLimit'] * 1024) |
|
607 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attach_max_total_file_size', array(comma_format($modSettings['attachmentPostLimit'], 0), comma_format($modSettings['attachmentPostLimit'] - (($context['attachments']['total_size'] - $_SESSION['temp_attachments'][$attachID]['size']) / 1024), 0))); |
|
637 | + if (!empty($modSettings['attachmentPostLimit']) && $context['attachments']['total_size'] > $modSettings['attachmentPostLimit'] * 1024) { |
|
638 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attach_max_total_file_size', array(comma_format($modSettings['attachmentPostLimit'], 0), comma_format($modSettings['attachmentPostLimit'] - (($context['attachments']['total_size'] - $_SESSION['temp_attachments'][$attachID]['size']) / 1024), 0))); |
|
639 | + } |
|
608 | 640 | |
609 | 641 | // Have we reached the maximum number of files we are allowed? |
610 | 642 | $context['attachments']['quantity']++; |
611 | 643 | |
612 | 644 | // Set a max limit if none exists |
613 | - if (empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] >= 50) |
|
614 | - $modSettings['attachmentNumPerPostLimit'] = 50; |
|
645 | + if (empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] >= 50) { |
|
646 | + $modSettings['attachmentNumPerPostLimit'] = 50; |
|
647 | + } |
|
615 | 648 | |
616 | - if (!empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] > $modSettings['attachmentNumPerPostLimit']) |
|
617 | - $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attachments_limit_per_post', array($modSettings['attachmentNumPerPostLimit'])); |
|
649 | + if (!empty($modSettings['attachmentNumPerPostLimit']) && $context['attachments']['quantity'] > $modSettings['attachmentNumPerPostLimit']) { |
|
650 | + $_SESSION['temp_attachments'][$attachID]['errors'][] = array('attachments_limit_per_post', array($modSettings['attachmentNumPerPostLimit'])); |
|
651 | + } |
|
618 | 652 | |
619 | 653 | // File extension check |
620 | 654 | if (!empty($modSettings['attachmentCheckExtensions'])) |
621 | 655 | { |
622 | 656 | $allowed = explode(',', strtolower($modSettings['attachmentExtensions'])); |
623 | - foreach ($allowed as $k => $dummy) |
|
624 | - $allowed[$k] = trim($dummy); |
|
657 | + foreach ($allowed as $k => $dummy) { |
|
658 | + $allowed[$k] = trim($dummy); |
|
659 | + } |
|
625 | 660 | |
626 | 661 | if (!in_array(strtolower(substr(strrchr($_SESSION['temp_attachments'][$attachID]['name'], '.'), 1)), $allowed)) |
627 | 662 | { |
@@ -633,10 +668,12 @@ discard block |
||
633 | 668 | // Undo the math if there's an error |
634 | 669 | if (!empty($_SESSION['temp_attachments'][$attachID]['errors'])) |
635 | 670 | { |
636 | - if (isset($context['dir_size'])) |
|
637 | - $context['dir_size'] -= $_SESSION['temp_attachments'][$attachID]['size']; |
|
638 | - if (isset($context['dir_files'])) |
|
639 | - $context['dir_files']--; |
|
671 | + if (isset($context['dir_size'])) { |
|
672 | + $context['dir_size'] -= $_SESSION['temp_attachments'][$attachID]['size']; |
|
673 | + } |
|
674 | + if (isset($context['dir_files'])) { |
|
675 | + $context['dir_files']--; |
|
676 | + } |
|
640 | 677 | $context['attachments']['total_size'] -= $_SESSION['temp_attachments'][$attachID]['size']; |
641 | 678 | $context['attachments']['quantity']--; |
642 | 679 | return false; |
@@ -668,12 +705,14 @@ discard block |
||
668 | 705 | if (empty($attachmentOptions['mime_type']) && $attachmentOptions['width']) |
669 | 706 | { |
670 | 707 | // Got a proper mime type? |
671 | - if (!empty($size['mime'])) |
|
672 | - $attachmentOptions['mime_type'] = $size['mime']; |
|
708 | + if (!empty($size['mime'])) { |
|
709 | + $attachmentOptions['mime_type'] = $size['mime']; |
|
710 | + } |
|
673 | 711 | |
674 | 712 | // Otherwise a valid one? |
675 | - elseif (isset($context['validImageTypes'][$size[2]])) |
|
676 | - $attachmentOptions['mime_type'] = 'image/' . $context['validImageTypes'][$size[2]]; |
|
713 | + elseif (isset($context['validImageTypes'][$size[2]])) { |
|
714 | + $attachmentOptions['mime_type'] = 'image/' . $context['validImageTypes'][$size[2]]; |
|
715 | + } |
|
677 | 716 | } |
678 | 717 | |
679 | 718 | // It is possible we might have a MIME type that isn't actually an image but still have a size. |
@@ -685,15 +724,17 @@ discard block |
||
685 | 724 | } |
686 | 725 | |
687 | 726 | // Get the hash if no hash has been given yet. |
688 | - if (empty($attachmentOptions['file_hash'])) |
|
689 | - $attachmentOptions['file_hash'] = getAttachmentFilename($attachmentOptions['name'], false, null, true); |
|
727 | + if (empty($attachmentOptions['file_hash'])) { |
|
728 | + $attachmentOptions['file_hash'] = getAttachmentFilename($attachmentOptions['name'], false, null, true); |
|
729 | + } |
|
690 | 730 | |
691 | 731 | // Assuming no-one set the extension let's take a look at it. |
692 | 732 | if (empty($attachmentOptions['fileext'])) |
693 | 733 | { |
694 | 734 | $attachmentOptions['fileext'] = strtolower(strrpos($attachmentOptions['name'], '.') !== false ? substr($attachmentOptions['name'], strrpos($attachmentOptions['name'], '.') + 1) : ''); |
695 | - if (strlen($attachmentOptions['fileext']) > 8 || '.' . $attachmentOptions['fileext'] == $attachmentOptions['name']) |
|
696 | - $attachmentOptions['fileext'] = ''; |
|
735 | + if (strlen($attachmentOptions['fileext']) > 8 || '.' . $attachmentOptions['fileext'] == $attachmentOptions['name']) { |
|
736 | + $attachmentOptions['fileext'] = ''; |
|
737 | + } |
|
697 | 738 | } |
698 | 739 | |
699 | 740 | // Last chance to change stuff! |
@@ -702,8 +743,9 @@ discard block |
||
702 | 743 | // Make sure the folder is valid... |
703 | 744 | $tmp = is_array($modSettings['attachmentUploadDir']) ? $modSettings['attachmentUploadDir'] : $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
704 | 745 | $folders = array_keys($tmp); |
705 | - if (empty($attachmentOptions['id_folder']) || !in_array($attachmentOptions['id_folder'], $folders)) |
|
706 | - $attachmentOptions['id_folder'] = $modSettings['currentAttachmentUploadDir']; |
|
746 | + if (empty($attachmentOptions['id_folder']) || !in_array($attachmentOptions['id_folder'], $folders)) { |
|
747 | + $attachmentOptions['id_folder'] = $modSettings['currentAttachmentUploadDir']; |
|
748 | + } |
|
707 | 749 | |
708 | 750 | $attachmentOptions['id'] = $smcFunc['db_insert']('', |
709 | 751 | '{db_prefix}attachments', |
@@ -734,8 +776,8 @@ discard block |
||
734 | 776 | rename($attachmentOptions['tmp_name'], $attachmentOptions['destination']); |
735 | 777 | |
736 | 778 | // If it's not approved then add to the approval queue. |
737 | - if (!$attachmentOptions['approved']) |
|
738 | - $smcFunc['db_insert']('', |
|
779 | + if (!$attachmentOptions['approved']) { |
|
780 | + $smcFunc['db_insert']('', |
|
739 | 781 | '{db_prefix}approval_queue', |
740 | 782 | array( |
741 | 783 | 'id_attach' => 'int', 'id_msg' => 'int', |
@@ -745,9 +787,11 @@ discard block |
||
745 | 787 | ), |
746 | 788 | array() |
747 | 789 | ); |
790 | + } |
|
748 | 791 | |
749 | - if (empty($modSettings['attachmentThumbnails']) || (empty($attachmentOptions['width']) && empty($attachmentOptions['height']))) |
|
750 | - return true; |
|
792 | + if (empty($modSettings['attachmentThumbnails']) || (empty($attachmentOptions['width']) && empty($attachmentOptions['height']))) { |
|
793 | + return true; |
|
794 | + } |
|
751 | 795 | |
752 | 796 | // Like thumbnails, do we? |
753 | 797 | if (!empty($modSettings['attachmentThumbWidth']) && !empty($modSettings['attachmentThumbHeight']) && ($attachmentOptions['width'] > $modSettings['attachmentThumbWidth'] || $attachmentOptions['height'] > $modSettings['attachmentThumbHeight'])) |
@@ -758,13 +802,15 @@ discard block |
||
758 | 802 | $size = @getimagesize($attachmentOptions['destination'] . '_thumb'); |
759 | 803 | list ($thumb_width, $thumb_height) = $size; |
760 | 804 | |
761 | - if (!empty($size['mime'])) |
|
762 | - $thumb_mime = $size['mime']; |
|
763 | - elseif (isset($context['validImageTypes'][$size[2]])) |
|
764 | - $thumb_mime = 'image/' . $context['validImageTypes'][$size[2]]; |
|
805 | + if (!empty($size['mime'])) { |
|
806 | + $thumb_mime = $size['mime']; |
|
807 | + } elseif (isset($context['validImageTypes'][$size[2]])) { |
|
808 | + $thumb_mime = 'image/' . $context['validImageTypes'][$size[2]]; |
|
809 | + } |
|
765 | 810 | // Lord only knows how this happened... |
766 | - else |
|
767 | - $thumb_mime = ''; |
|
811 | + else { |
|
812 | + $thumb_mime = ''; |
|
813 | + } |
|
768 | 814 | |
769 | 815 | $thumb_filename = $attachmentOptions['name'] . '_thumb'; |
770 | 816 | $thumb_size = filesize($attachmentOptions['destination'] . '_thumb'); |
@@ -844,15 +890,17 @@ discard block |
||
844 | 890 | global $smcFunc; |
845 | 891 | |
846 | 892 | // Oh, come on! |
847 | - if (empty($attachIDs) || empty($msgID)) |
|
848 | - return false; |
|
893 | + if (empty($attachIDs) || empty($msgID)) { |
|
894 | + return false; |
|
895 | + } |
|
849 | 896 | |
850 | 897 | // "I see what is right and approve, but I do what is wrong." |
851 | 898 | call_integration_hook('integrate_assign_attachments', array(&$attachIDs, &$msgID)); |
852 | 899 | |
853 | 900 | // One last check |
854 | - if (empty($attachIDs)) |
|
855 | - return false; |
|
901 | + if (empty($attachIDs)) { |
|
902 | + return false; |
|
903 | + } |
|
856 | 904 | |
857 | 905 | // Perform. |
858 | 906 | $smcFunc['db_query']('', ' |
@@ -880,8 +928,9 @@ discard block |
||
880 | 928 | global $board, $modSettings, $context, $scripturl, $smcFunc; |
881 | 929 | |
882 | 930 | // Meh... |
883 | - if (empty($attachID)) |
|
884 | - return 'attachments_no_data_loaded'; |
|
931 | + if (empty($attachID)) { |
|
932 | + return 'attachments_no_data_loaded'; |
|
933 | + } |
|
885 | 934 | |
886 | 935 | // Make it easy. |
887 | 936 | $msgID = !empty($_REQUEST['msg']) ? (int) $_REQUEST['msg'] : 0; |
@@ -890,20 +939,23 @@ discard block |
||
890 | 939 | $externalParse = call_integration_hook('integrate_pre_parseAttachBBC', array($attachID, $msgID)); |
891 | 940 | |
892 | 941 | // "I am innocent of the blood of this just person: see ye to it." |
893 | - if (!empty($externalParse) && (is_string($externalParse) || is_array($externalParse))) |
|
894 | - return $externalParse; |
|
942 | + if (!empty($externalParse) && (is_string($externalParse) || is_array($externalParse))) { |
|
943 | + return $externalParse; |
|
944 | + } |
|
895 | 945 | |
896 | 946 | //Are attachments enable? |
897 | - if (empty($modSettings['attachmentEnable'])) |
|
898 | - return 'attachments_not_enable'; |
|
947 | + if (empty($modSettings['attachmentEnable'])) { |
|
948 | + return 'attachments_not_enable'; |
|
949 | + } |
|
899 | 950 | |
900 | 951 | // Previewing much? no msg ID has been set yet. |
901 | 952 | if (!empty($context['preview_message'])) |
902 | 953 | { |
903 | 954 | $allAttachments = getAttachsByMsg(0); |
904 | 955 | |
905 | - if (empty($allAttachments[0][$attachID])) |
|
906 | - return 'attachments_no_data_loaded'; |
|
956 | + if (empty($allAttachments[0][$attachID])) { |
|
957 | + return 'attachments_no_data_loaded'; |
|
958 | + } |
|
907 | 959 | |
908 | 960 | $attachLoaded = loadAttachmentContext(0, $allAttachments); |
909 | 961 | |
@@ -915,57 +967,66 @@ discard block |
||
915 | 967 | $attachContext['link'] = '<a href="' . $scripturl . '?action=dlattach;attach=' . $attachID . ';type=preview' . (empty($attachContext['is_image']) ? ';file' : '') . '">' . $smcFunc['htmlspecialchars']($attachContext['name']) . '</a>'; |
916 | 968 | |
917 | 969 | // Fix the thumbnail too, if the image has one. |
918 | - if (!empty($attachContext['thumbnail']) && !empty($attachContext['thumbnail']['has_thumb'])) |
|
919 | - $attachContext['thumbnail']['href'] = $scripturl . '?action=dlattach;attach=' . $attachContext['thumbnail']['id'] . ';image;type=preview'; |
|
970 | + if (!empty($attachContext['thumbnail']) && !empty($attachContext['thumbnail']['has_thumb'])) { |
|
971 | + $attachContext['thumbnail']['href'] = $scripturl . '?action=dlattach;attach=' . $attachContext['thumbnail']['id'] . ';image;type=preview'; |
|
972 | + } |
|
920 | 973 | |
921 | 974 | return $attachContext; |
922 | 975 | } |
923 | 976 | |
924 | 977 | // There is always the chance someone else has already done our dirty work... |
925 | 978 | // If so, all pertinent checks were already done. Hopefully... |
926 | - if (!empty($context['current_attachments']) && !empty($context['current_attachments'][$attachID])) |
|
927 | - return $context['current_attachments'][$attachID]; |
|
979 | + if (!empty($context['current_attachments']) && !empty($context['current_attachments'][$attachID])) { |
|
980 | + return $context['current_attachments'][$attachID]; |
|
981 | + } |
|
928 | 982 | |
929 | 983 | // If we are lucky enough to be in $board's scope then check it! |
930 | - if (!empty($board) && !allowedTo('view_attachments', $board)) |
|
931 | - return 'attachments_not_allowed_to_see'; |
|
984 | + if (!empty($board) && !allowedTo('view_attachments', $board)) { |
|
985 | + return 'attachments_not_allowed_to_see'; |
|
986 | + } |
|
932 | 987 | |
933 | 988 | // Get the message info associated with this particular attach ID. |
934 | 989 | $attachInfo = getAttachMsgInfo($attachID); |
935 | 990 | |
936 | 991 | // There is always the chance this attachment no longer exists or isn't associated to a message anymore... |
937 | - if (empty($attachInfo) || empty($attachInfo['msg'])) |
|
938 | - return 'attachments_no_msg_associated'; |
|
992 | + if (empty($attachInfo) || empty($attachInfo['msg'])) { |
|
993 | + return 'attachments_no_msg_associated'; |
|
994 | + } |
|
939 | 995 | |
940 | 996 | // Hold it! got the info now check if you can see this attachment. |
941 | - if (!allowedTo('view_attachments', $attachInfo['board'])) |
|
942 | - return 'attachments_not_allowed_to_see'; |
|
997 | + if (!allowedTo('view_attachments', $attachInfo['board'])) { |
|
998 | + return 'attachments_not_allowed_to_see'; |
|
999 | + } |
|
943 | 1000 | |
944 | 1001 | $allAttachments = getAttachsByMsg($attachInfo['msg']); |
945 | 1002 | $attachContext = $allAttachments[$attachInfo['msg']][$attachID]; |
946 | 1003 | |
947 | 1004 | // No point in keep going further. |
948 | - if (!allowedTo('view_attachments', $attachContext['board'])) |
|
949 | - return 'attachments_not_allowed_to_see'; |
|
1005 | + if (!allowedTo('view_attachments', $attachContext['board'])) { |
|
1006 | + return 'attachments_not_allowed_to_see'; |
|
1007 | + } |
|
950 | 1008 | |
951 | 1009 | // Load this particular attach's context. |
952 | - if (!empty($attachContext)) |
|
953 | - $attachLoaded = loadAttachmentContext($attachContext['id_msg'], $allAttachments); |
|
1010 | + if (!empty($attachContext)) { |
|
1011 | + $attachLoaded = loadAttachmentContext($attachContext['id_msg'], $allAttachments); |
|
1012 | + } |
|
954 | 1013 | |
955 | 1014 | // One last check, you know, gotta be paranoid... |
956 | - else |
|
957 | - return 'attachments_no_data_loaded'; |
|
1015 | + else { |
|
1016 | + return 'attachments_no_data_loaded'; |
|
1017 | + } |
|
958 | 1018 | |
959 | 1019 | // This is the last "if" I promise! |
960 | - if (empty($attachLoaded)) |
|
961 | - return 'attachments_no_data_loaded'; |
|
962 | - |
|
963 | - else |
|
964 | - $attachContext = $attachLoaded[$attachID]; |
|
1020 | + if (empty($attachLoaded)) { |
|
1021 | + return 'attachments_no_data_loaded'; |
|
1022 | + } else { |
|
1023 | + $attachContext = $attachLoaded[$attachID]; |
|
1024 | + } |
|
965 | 1025 | |
966 | 1026 | // You may or may not want to show this under the post. |
967 | - if (!empty($modSettings['dont_show_attach_under_post']) && !isset($context['show_attach_under_post'][$attachID])) |
|
968 | - $context['show_attach_under_post'][$attachID] = $attachID; |
|
1027 | + if (!empty($modSettings['dont_show_attach_under_post']) && !isset($context['show_attach_under_post'][$attachID])) { |
|
1028 | + $context['show_attach_under_post'][$attachID] = $attachID; |
|
1029 | + } |
|
969 | 1030 | |
970 | 1031 | // Last minute changes? |
971 | 1032 | call_integration_hook('integrate_post_parseAttachBBC', array(&$attachContext)); |
@@ -985,8 +1046,9 @@ discard block |
||
985 | 1046 | { |
986 | 1047 | global $smcFunc, $modSettings; |
987 | 1048 | |
988 | - if (empty($attachIDs)) |
|
989 | - return array(); |
|
1049 | + if (empty($attachIDs)) { |
|
1050 | + return array(); |
|
1051 | + } |
|
990 | 1052 | |
991 | 1053 | $return = array(); |
992 | 1054 | |
@@ -1002,11 +1064,12 @@ discard block |
||
1002 | 1064 | ) |
1003 | 1065 | ); |
1004 | 1066 | |
1005 | - if ($smcFunc['db_num_rows']($request) != 1) |
|
1006 | - return array(); |
|
1067 | + if ($smcFunc['db_num_rows']($request) != 1) { |
|
1068 | + return array(); |
|
1069 | + } |
|
1007 | 1070 | |
1008 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1009 | - $return[$row['id_attach']] = array( |
|
1071 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1072 | + $return[$row['id_attach']] = array( |
|
1010 | 1073 | 'name' => $smcFunc['htmlspecialchars']($row['filename']), |
1011 | 1074 | 'size' => $row['size'], |
1012 | 1075 | 'attachID' => $row['id_attach'], |
@@ -1015,6 +1078,7 @@ discard block |
||
1015 | 1078 | 'mime_type' => $row['mime_type'], |
1016 | 1079 | 'thumb' => $row['id_thumb'], |
1017 | 1080 | ); |
1081 | + } |
|
1018 | 1082 | $smcFunc['db_free_result']($request); |
1019 | 1083 | |
1020 | 1084 | return $return; |
@@ -1031,8 +1095,9 @@ discard block |
||
1031 | 1095 | { |
1032 | 1096 | global $smcFunc; |
1033 | 1097 | |
1034 | - if (empty($attachID)) |
|
1035 | - return array(); |
|
1098 | + if (empty($attachID)) { |
|
1099 | + return array(); |
|
1100 | + } |
|
1036 | 1101 | |
1037 | 1102 | $request = $smcFunc['db_query']('', ' |
1038 | 1103 | SELECT a.id_msg AS msg, m.id_topic AS topic, m.id_board AS board |
@@ -1045,8 +1110,9 @@ discard block |
||
1045 | 1110 | ) |
1046 | 1111 | ); |
1047 | 1112 | |
1048 | - if ($smcFunc['db_num_rows']($request) != 1) |
|
1049 | - return array(); |
|
1113 | + if ($smcFunc['db_num_rows']($request) != 1) { |
|
1114 | + return array(); |
|
1115 | + } |
|
1050 | 1116 | |
1051 | 1117 | $row = $smcFunc['db_fetch_assoc']($request); |
1052 | 1118 | $smcFunc['db_free_result']($request); |
@@ -1087,8 +1153,9 @@ discard block |
||
1087 | 1153 | $temp = array(); |
1088 | 1154 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
1089 | 1155 | { |
1090 | - if (!$row['approved'] && $modSettings['postmod_active'] && !allowedTo('approve_posts') && (!isset($all_posters[$row['id_msg']]) || $all_posters[$row['id_msg']] != $user_info['id'])) |
|
1091 | - continue; |
|
1156 | + if (!$row['approved'] && $modSettings['postmod_active'] && !allowedTo('approve_posts') && (!isset($all_posters[$row['id_msg']]) || $all_posters[$row['id_msg']] != $user_info['id'])) { |
|
1157 | + continue; |
|
1158 | + } |
|
1092 | 1159 | |
1093 | 1160 | $temp[$row['id_attach']] = $row; |
1094 | 1161 | } |
@@ -1117,8 +1184,9 @@ discard block |
||
1117 | 1184 | { |
1118 | 1185 | global $modSettings, $txt, $scripturl, $sourcedir, $smcFunc; |
1119 | 1186 | |
1120 | - if (empty($attachments) || empty($attachments[$id_msg])) |
|
1121 | - return array(); |
|
1187 | + if (empty($attachments) || empty($attachments[$id_msg])) { |
|
1188 | + return array(); |
|
1189 | + } |
|
1122 | 1190 | |
1123 | 1191 | // Set up the attachment info - based on code by Meriadoc. |
1124 | 1192 | $attachmentData = array(); |
@@ -1142,11 +1210,13 @@ discard block |
||
1142 | 1210 | ); |
1143 | 1211 | |
1144 | 1212 | // If something is unapproved we'll note it so we can sort them. |
1145 | - if (!$attachment['approved']) |
|
1146 | - $have_unapproved = true; |
|
1213 | + if (!$attachment['approved']) { |
|
1214 | + $have_unapproved = true; |
|
1215 | + } |
|
1147 | 1216 | |
1148 | - if (!$attachmentData[$i]['is_image']) |
|
1149 | - continue; |
|
1217 | + if (!$attachmentData[$i]['is_image']) { |
|
1218 | + continue; |
|
1219 | + } |
|
1150 | 1220 | |
1151 | 1221 | $attachmentData[$i]['real_width'] = $attachment['width']; |
1152 | 1222 | $attachmentData[$i]['width'] = $attachment['width']; |
@@ -1167,11 +1237,11 @@ discard block |
||
1167 | 1237 | // So what folder are we putting this image in? |
1168 | 1238 | if (!empty($modSettings['currentAttachmentUploadDir'])) |
1169 | 1239 | { |
1170 | - if (!is_array($modSettings['attachmentUploadDir'])) |
|
1171 | - $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
1240 | + if (!is_array($modSettings['attachmentUploadDir'])) { |
|
1241 | + $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
1242 | + } |
|
1172 | 1243 | $id_folder_thumb = $modSettings['currentAttachmentUploadDir']; |
1173 | - } |
|
1174 | - else |
|
1244 | + } else |
|
1175 | 1245 | { |
1176 | 1246 | $id_folder_thumb = 1; |
1177 | 1247 | } |
@@ -1185,10 +1255,11 @@ discard block |
||
1185 | 1255 | $thumb_ext = isset($context['validImageTypes'][$size[2]]) ? $context['validImageTypes'][$size[2]] : ''; |
1186 | 1256 | |
1187 | 1257 | // Figure out the mime type. |
1188 | - if (!empty($size['mime'])) |
|
1189 | - $thumb_mime = $size['mime']; |
|
1190 | - else |
|
1191 | - $thumb_mime = 'image/' . $thumb_ext; |
|
1258 | + if (!empty($size['mime'])) { |
|
1259 | + $thumb_mime = $size['mime']; |
|
1260 | + } else { |
|
1261 | + $thumb_mime = 'image/' . $thumb_ext; |
|
1262 | + } |
|
1192 | 1263 | |
1193 | 1264 | $thumb_filename = $attachment['filename'] . '_thumb'; |
1194 | 1265 | $thumb_hash = getAttachmentFilename($thumb_filename, false, null, true); |
@@ -1235,11 +1306,12 @@ discard block |
||
1235 | 1306 | } |
1236 | 1307 | } |
1237 | 1308 | |
1238 | - if (!empty($attachment['id_thumb'])) |
|
1239 | - $attachmentData[$i]['thumbnail'] = array( |
|
1309 | + if (!empty($attachment['id_thumb'])) { |
|
1310 | + $attachmentData[$i]['thumbnail'] = array( |
|
1240 | 1311 | 'id' => $attachment['id_thumb'], |
1241 | 1312 | 'href' => $scripturl . '?action=dlattach;topic=' . $attachment['topic'] . '.0;attach=' . $attachment['id_thumb'] . ';image', |
1242 | 1313 | ); |
1314 | + } |
|
1243 | 1315 | $attachmentData[$i]['thumbnail']['has_thumb'] = !empty($attachment['id_thumb']); |
1244 | 1316 | |
1245 | 1317 | // If thumbnails are disabled, check the maximum size of the image. |
@@ -1249,30 +1321,31 @@ discard block |
||
1249 | 1321 | { |
1250 | 1322 | $attachmentData[$i]['width'] = $modSettings['max_image_width']; |
1251 | 1323 | $attachmentData[$i]['height'] = floor($attachment['height'] * $modSettings['max_image_width'] / $attachment['width']); |
1252 | - } |
|
1253 | - elseif (!empty($modSettings['max_image_width'])) |
|
1324 | + } elseif (!empty($modSettings['max_image_width'])) |
|
1254 | 1325 | { |
1255 | 1326 | $attachmentData[$i]['width'] = floor($attachment['width'] * $modSettings['max_image_height'] / $attachment['height']); |
1256 | 1327 | $attachmentData[$i]['height'] = $modSettings['max_image_height']; |
1257 | 1328 | } |
1258 | - } |
|
1259 | - elseif ($attachmentData[$i]['thumbnail']['has_thumb']) |
|
1329 | + } elseif ($attachmentData[$i]['thumbnail']['has_thumb']) |
|
1260 | 1330 | { |
1261 | 1331 | // If the image is too large to show inline, make it a popup. |
1262 | - if (((!empty($modSettings['max_image_width']) && $attachmentData[$i]['real_width'] > $modSettings['max_image_width']) || (!empty($modSettings['max_image_height']) && $attachmentData[$i]['real_height'] > $modSettings['max_image_height']))) |
|
1263 | - $attachmentData[$i]['thumbnail']['javascript'] = 'return reqWin(\'' . $attachmentData[$i]['href'] . ';image\', ' . ($attachment['width'] + 20) . ', ' . ($attachment['height'] + 20) . ', true);'; |
|
1264 | - else |
|
1265 | - $attachmentData[$i]['thumbnail']['javascript'] = 'return expandThumb(' . $attachment['id_attach'] . ');'; |
|
1332 | + if (((!empty($modSettings['max_image_width']) && $attachmentData[$i]['real_width'] > $modSettings['max_image_width']) || (!empty($modSettings['max_image_height']) && $attachmentData[$i]['real_height'] > $modSettings['max_image_height']))) { |
|
1333 | + $attachmentData[$i]['thumbnail']['javascript'] = 'return reqWin(\'' . $attachmentData[$i]['href'] . ';image\', ' . ($attachment['width'] + 20) . ', ' . ($attachment['height'] + 20) . ', true);'; |
|
1334 | + } else { |
|
1335 | + $attachmentData[$i]['thumbnail']['javascript'] = 'return expandThumb(' . $attachment['id_attach'] . ');'; |
|
1336 | + } |
|
1266 | 1337 | } |
1267 | 1338 | |
1268 | - if (!$attachmentData[$i]['thumbnail']['has_thumb']) |
|
1269 | - $attachmentData[$i]['downloads']++; |
|
1339 | + if (!$attachmentData[$i]['thumbnail']['has_thumb']) { |
|
1340 | + $attachmentData[$i]['downloads']++; |
|
1341 | + } |
|
1270 | 1342 | } |
1271 | 1343 | } |
1272 | 1344 | |
1273 | 1345 | // Do we need to instigate a sort? |
1274 | - if ($have_unapproved) |
|
1275 | - usort($attachmentData, 'approved_attach_sort'); |
|
1346 | + if ($have_unapproved) { |
|
1347 | + usort($attachmentData, 'approved_attach_sort'); |
|
1348 | + } |
|
1276 | 1349 | |
1277 | 1350 | return $attachmentData; |
1278 | 1351 | } |
@@ -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 | } |