@@ -19,26 +19,28 @@ discard block |
||
19 | 19 | global $context, $settings, $scripturl, $txt, $modSettings; |
20 | 20 | |
21 | 21 | // Not allowed to edit? |
22 | - if (!$context['can_modify']) |
|
23 | - echo ' |
|
22 | + if (!$context['can_modify']) { |
|
23 | + echo ' |
|
24 | 24 | <div class="errorbox"> |
25 | 25 | ', sprintf($txt['permission_cannot_edit'], $scripturl . '?action=admin;area=permissions;sa=profiles'), ' |
26 | 26 | </div>'; |
27 | + } |
|
27 | 28 | |
28 | 29 | echo ' |
29 | 30 | <div id="admin_form_wrapper"> |
30 | 31 | <form action="', $scripturl, '?action=admin;area=permissions;sa=quick" method="post" accept-charset="', $context['character_set'], '" name="permissionForm" id="permissionForm">'; |
31 | 32 | |
32 | - if (!empty($context['profile'])) |
|
33 | - echo ' |
|
33 | + if (!empty($context['profile'])) { |
|
34 | + echo ' |
|
34 | 35 | <div class="cat_bar"> |
35 | 36 | <h3 class="catbg">', $txt['permissions_for_profile'], ': "', $context['profile']['name'], '"</h3> |
36 | 37 | </div>'; |
37 | - else |
|
38 | - echo ' |
|
38 | + } else { |
|
39 | + echo ' |
|
39 | 40 | <div class="cat_bar"> |
40 | 41 | <h3 class="catbg">', $txt['permissions_title'], '</h3> |
41 | 42 | </div>'; |
43 | + } |
|
42 | 44 | |
43 | 45 | echo ' |
44 | 46 | <table class="table_grid"> |
@@ -47,13 +49,14 @@ discard block |
||
47 | 49 | <th>', $txt['membergroups_name'], '</th> |
48 | 50 | <th class="small_table">', $txt['membergroups_members_top'], '</th>'; |
49 | 51 | |
50 | - if (empty($modSettings['permission_enable_deny'])) |
|
51 | - echo ' |
|
52 | + if (empty($modSettings['permission_enable_deny'])) { |
|
53 | + echo ' |
|
52 | 54 | <th class="small_table">', $txt['membergroups_permissions'], '</th>'; |
53 | - else |
|
54 | - echo ' |
|
55 | + } else { |
|
56 | + echo ' |
|
55 | 57 | <th class="small_table">', $txt['permissions_allowed'], '</th> |
56 | 58 | <th class="small_table">', $txt['permissions_denied'], '</th>'; |
59 | + } |
|
57 | 60 | |
58 | 61 | echo ' |
59 | 62 | <th class="small_table">', $context['can_modify'] ? $txt['permissions_modify'] : $txt['permissions_view'], '</th> |
@@ -71,22 +74,24 @@ discard block |
||
71 | 74 | <td> |
72 | 75 | ', !empty($group['help']) ? ' <a class="help" href="' . $scripturl . '?action=helpadmin;help=' . $group['help'] . '" onclick="return reqOverlayDiv(this.href);"><span class="generic_icons help" title="' . $txt['help'] . '"></span></a>' : '<img class="icon" src="' . $settings['images_url'] . '/blank.png" alt="' . $txt['help'] . '">', ' <span>', $group['name'], '</span>'; |
73 | 76 | |
74 | - if (!empty($group['children'])) |
|
75 | - echo ' |
|
77 | + if (!empty($group['children'])) { |
|
78 | + echo ' |
|
76 | 79 | <br> |
77 | 80 | <span class="smalltext">', $txt['permissions_includes_inherited'], ': "', implode('", "', $group['children']), '"</span>'; |
81 | + } |
|
78 | 82 | |
79 | 83 | echo ' |
80 | 84 | </td> |
81 | 85 | <td>', $group['can_search'] ? $group['link'] : $group['num_members'], '</td>'; |
82 | 86 | |
83 | - if (empty($modSettings['permission_enable_deny'])) |
|
84 | - echo ' |
|
87 | + if (empty($modSettings['permission_enable_deny'])) { |
|
88 | + echo ' |
|
85 | 89 | <td>', $group['num_permissions']['allowed'], '</td>'; |
86 | - else |
|
87 | - echo ' |
|
90 | + } else { |
|
91 | + echo ' |
|
88 | 92 | <td ', $group['id'] == 1 ? ' style="font-style: italic;"' : '', '>', $group['num_permissions']['allowed'], '</td> |
89 | 93 | <td ', $group['id'] == 1 || $group['id'] == -1 ? ' style="font-style: italic;"' : (!empty($group['num_permissions']['denied']) ? ' class="red"' : ''), '>', $group['num_permissions']['denied'], '</td>'; |
94 | + } |
|
90 | 95 | |
91 | 96 | echo ' |
92 | 97 | <td>', $group['allow_modify'] ? '<a href="' . $scripturl . '?action=admin;area=permissions;sa=modify;group=' . $group['id'] . (empty($context['profile']) ? '' : ';pid=' . $context['profile']['id']) . '">' . ($context['can_modify'] ? $txt['permissions_modify'] : $txt['permissions_view']) . '</a>' : '', '</td> |
@@ -133,9 +138,10 @@ discard block |
||
133 | 138 | <option value="empty">(', $txt['permissions_select_membergroup'], ')</option>'; |
134 | 139 | foreach ($context['groups'] as $group) |
135 | 140 | { |
136 | - if ($group['id'] != 1) |
|
137 | - echo ' |
|
141 | + if ($group['id'] != 1) { |
|
142 | + echo ' |
|
138 | 143 | <option value="', $group['id'], '">', $group['name'], '</option>'; |
144 | + } |
|
139 | 145 | } |
140 | 146 | |
141 | 147 | echo ' |
@@ -145,9 +151,10 @@ discard block |
||
145 | 151 | <select name="add_remove"> |
146 | 152 | <option value="add">', $txt['permissions_add'], '...</option> |
147 | 153 | <option value="clear">', $txt['permissions_remove'], '...</option>'; |
148 | - if (!empty($modSettings['permission_enable_deny'])) |
|
149 | - echo ' |
|
154 | + if (!empty($modSettings['permission_enable_deny'])) { |
|
155 | + echo ' |
|
150 | 156 | <option value="deny">', $txt['permissions_deny'], '...</option>'; |
157 | + } |
|
151 | 158 | echo ' |
152 | 159 | </select> |
153 | 160 | </dt> |
@@ -156,30 +163,34 @@ discard block |
||
156 | 163 | <option value="">(', $txt['permissions_select_permission'], ')</option>'; |
157 | 164 | foreach ($context['permissions'] as $permissionType) |
158 | 165 | { |
159 | - if ($permissionType['id'] == 'membergroup' && !empty($context['profile'])) |
|
160 | - continue; |
|
166 | + if ($permissionType['id'] == 'membergroup' && !empty($context['profile'])) { |
|
167 | + continue; |
|
168 | + } |
|
161 | 169 | |
162 | 170 | foreach ($permissionType['columns'] as $column) |
163 | 171 | { |
164 | 172 | foreach ($column as $permissionGroup) |
165 | 173 | { |
166 | - if ($permissionGroup['hidden']) |
|
167 | - continue; |
|
174 | + if ($permissionGroup['hidden']) { |
|
175 | + continue; |
|
176 | + } |
|
168 | 177 | |
169 | 178 | echo ' |
170 | 179 | <option value="" disabled>[', $permissionGroup['name'], ']</option>'; |
171 | 180 | foreach ($permissionGroup['permissions'] as $perm) |
172 | 181 | { |
173 | - if ($perm['hidden']) |
|
174 | - continue; |
|
182 | + if ($perm['hidden']) { |
|
183 | + continue; |
|
184 | + } |
|
175 | 185 | |
176 | - if ($perm['has_own_any']) |
|
177 | - echo ' |
|
186 | + if ($perm['has_own_any']) { |
|
187 | + echo ' |
|
178 | 188 | <option value="', $permissionType['id'], '/', $perm['own']['id'], '"> ', $perm['name'], ' (', $perm['own']['name'], ')</option> |
179 | 189 | <option value="', $permissionType['id'], '/', $perm['any']['id'], '"> ', $perm['name'], ' (', $perm['any']['name'], ')</option>'; |
180 | - else |
|
181 | - echo ' |
|
190 | + } else { |
|
191 | + echo ' |
|
182 | 192 | <option value="', $permissionType['id'], '/', $perm['id'], '"> ', $perm['name'], '</option>'; |
193 | + } |
|
183 | 194 | } |
184 | 195 | } |
185 | 196 | } |
@@ -246,17 +257,18 @@ discard block |
||
246 | 257 | } |
247 | 258 | </script>'; |
248 | 259 | |
249 | - if (!empty($context['profile'])) |
|
250 | - echo ' |
|
260 | + if (!empty($context['profile'])) { |
|
261 | + echo ' |
|
251 | 262 | <input type="hidden" name="pid" value="', $context['profile']['id'], '">'; |
263 | + } |
|
252 | 264 | |
253 | 265 | echo ' |
254 | 266 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
255 | 267 | <input type="hidden" name="', $context['admin-mpq_token_var'], '" value="', $context['admin-mpq_token'], '">'; |
256 | - } |
|
257 | - else |
|
258 | - echo ' |
|
268 | + } else { |
|
269 | + echo ' |
|
259 | 270 | </table>'; |
271 | + } |
|
260 | 272 | |
261 | 273 | echo ' |
262 | 274 | </form> |
@@ -296,9 +308,10 @@ discard block |
||
296 | 308 | <h3 class="subbg">', $category['name'], '</h3> |
297 | 309 | </div>'; |
298 | 310 | |
299 | - if (!empty($category['boards'])) |
|
300 | - echo ' |
|
311 | + if (!empty($category['boards'])) { |
|
312 | + echo ' |
|
301 | 313 | <ul class="perm_boards flow_hidden">'; |
314 | + } |
|
302 | 315 | |
303 | 316 | foreach ($category['boards'] as $board) |
304 | 317 | { |
@@ -315,33 +328,36 @@ discard block |
||
315 | 328 | echo ' |
316 | 329 | <select name="boardprofile[', $board['id'], ']">'; |
317 | 330 | |
318 | - foreach ($context['profiles'] as $id => $profile) |
|
319 | - echo ' |
|
331 | + foreach ($context['profiles'] as $id => $profile) { |
|
332 | + echo ' |
|
320 | 333 | <option value="', $id, '"', $id == $board['profile'] ? ' selected' : '', '>', $profile['name'], '</option>'; |
334 | + } |
|
321 | 335 | |
322 | 336 | echo ' |
323 | 337 | </select>'; |
324 | - } |
|
325 | - else |
|
326 | - echo ' |
|
338 | + } else { |
|
339 | + echo ' |
|
327 | 340 | <a href="', $scripturl, '?action=admin;area=permissions;sa=index;pid=', $board['profile'], ';', $context['session_var'], '=', $context['session_id'], '">', $board['profile_name'], '</a>'; |
341 | + } |
|
328 | 342 | |
329 | 343 | echo ' |
330 | 344 | </span> |
331 | 345 | </li>'; |
332 | 346 | } |
333 | 347 | |
334 | - if (!empty($category['boards'])) |
|
335 | - echo ' |
|
348 | + if (!empty($category['boards'])) { |
|
349 | + echo ' |
|
336 | 350 | </ul>'; |
351 | + } |
|
337 | 352 | } |
338 | 353 | |
339 | - if ($context['edit_all']) |
|
340 | - echo ' |
|
354 | + if ($context['edit_all']) { |
|
355 | + echo ' |
|
341 | 356 | <input type="submit" name="save_changes" value="', $txt['save'], '" class="button">'; |
342 | - else |
|
343 | - echo ' |
|
357 | + } else { |
|
358 | + echo ' |
|
344 | 359 | <a class="button" href="', $scripturl, '?action=admin;area=permissions;sa=board;edit;', $context['session_var'], '=', $context['session_id'], '">', $txt['permissions_board_all'], '</a>'; |
360 | + } |
|
345 | 361 | |
346 | 362 | echo ' |
347 | 363 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -381,12 +397,13 @@ discard block |
||
381 | 397 | <tr class="windowbg"> |
382 | 398 | <td>'; |
383 | 399 | |
384 | - if (!empty($context['show_rename_boxes']) && $profile['can_edit']) |
|
385 | - echo ' |
|
400 | + if (!empty($context['show_rename_boxes']) && $profile['can_edit']) { |
|
401 | + echo ' |
|
386 | 402 | <input type="text" name="rename_profile[', $profile['id'], ']" value="', $profile['name'], '">'; |
387 | - else |
|
388 | - echo ' |
|
403 | + } else { |
|
404 | + echo ' |
|
389 | 405 | <a href="', $scripturl, '?action=admin;area=permissions;sa=index;pid=', $profile['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $profile['name'], '</a>'; |
406 | + } |
|
390 | 407 | |
391 | 408 | echo ' |
392 | 409 | </td> |
@@ -406,9 +423,10 @@ discard block |
||
406 | 423 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
407 | 424 | <input type="hidden" name="', $context['admin-mpp_token_var'], '" value="', $context['admin-mpp_token'], '">'; |
408 | 425 | |
409 | - if ($context['can_edit_something']) |
|
410 | - echo ' |
|
426 | + if ($context['can_edit_something']) { |
|
427 | + echo ' |
|
411 | 428 | <input type="submit" name="rename" value="', empty($context['show_rename_boxes']) ? $txt['permissions_profile_rename'] : $txt['permissions_commit'], '" class="button">'; |
429 | + } |
|
412 | 430 | |
413 | 431 | echo ' |
414 | 432 | <input type="submit" name="delete" value="', $txt['quickmod_delete_selected'], '" class="button" ', !empty($context['show_rename_boxes']) ? ' style="display:none"' : '', '/> |
@@ -433,9 +451,10 @@ discard block |
||
433 | 451 | <dd> |
434 | 452 | <select name="copy_from">'; |
435 | 453 | |
436 | - foreach ($context['profiles'] as $id => $profile) |
|
437 | - echo ' |
|
454 | + foreach ($context['profiles'] as $id => $profile) { |
|
455 | + echo ' |
|
438 | 456 | <option value="', $id, '">', $profile['name'], '</option>'; |
457 | + } |
|
439 | 458 | |
440 | 459 | echo ' |
441 | 460 | </select> |
@@ -463,8 +482,7 @@ discard block |
||
463 | 482 | <div class="errorbox"> |
464 | 483 | ', sprintf($txt['permission_cannot_edit'], $scripturl . '?action=admin;area=permissions;sa=profiles'), ' |
465 | 484 | </div>'; |
466 | - } |
|
467 | - else |
|
485 | + } else |
|
468 | 486 | { |
469 | 487 | echo ' |
470 | 488 | <script> |
@@ -484,21 +502,23 @@ discard block |
||
484 | 502 | <div id="admincenter"> |
485 | 503 | <form id="permissions" action="', $scripturl, '?action=admin;area=permissions;sa=modify2;group=', $context['group']['id'], ';pid=', $context['profile']['id'], '" method="post" accept-charset="', $context['character_set'], '" name="permissionForm" onsubmit="return warnAboutDeny();">'; |
486 | 504 | |
487 | - if (!empty($modSettings['permission_enable_deny']) && $context['group']['id'] != -1) |
|
488 | - echo ' |
|
505 | + if (!empty($modSettings['permission_enable_deny']) && $context['group']['id'] != -1) { |
|
506 | + echo ' |
|
489 | 507 | <div class="information"> |
490 | 508 | ', $txt['permissions_option_desc'], ' |
491 | 509 | </div>'; |
510 | + } |
|
492 | 511 | |
493 | 512 | echo ' |
494 | 513 | <div class="cat_bar"> |
495 | 514 | <h3 class="catbg">'; |
496 | - if ($context['permission_type'] == 'board') |
|
497 | - echo ' |
|
515 | + if ($context['permission_type'] == 'board') { |
|
516 | + echo ' |
|
498 | 517 | ', $txt['permissions_local_for'], ' "', $context['group']['name'], '" ', $txt['permissions_on'], ' "', $context['profile']['name'], '"'; |
499 | - else |
|
500 | - echo ' |
|
518 | + } else { |
|
519 | + echo ' |
|
501 | 520 | ', $context['permission_type'] == 'membergroup' ? $txt['permissions_general'] : $txt['permissions_board'], ' - "', $context['group']['name'], '"'; |
521 | + } |
|
502 | 522 | echo ' |
503 | 523 | </h3> |
504 | 524 | </div>'; |
@@ -521,15 +541,17 @@ discard block |
||
521 | 541 | template_modify_group_display('board'); |
522 | 542 | } |
523 | 543 | |
524 | - if ($context['profile']['can_modify']) |
|
525 | - echo ' |
|
544 | + if ($context['profile']['can_modify']) { |
|
545 | + echo ' |
|
526 | 546 | <div class="padding"> |
527 | 547 | <input type="submit" value="', $txt['permissions_commit'], '" class="button"> |
528 | 548 | </div>'; |
549 | + } |
|
529 | 550 | |
530 | - foreach ($context['hidden_perms'] as $hidden_perm) |
|
531 | - echo ' |
|
551 | + foreach ($context['hidden_perms'] as $hidden_perm) { |
|
552 | + echo ' |
|
532 | 553 | <input type="hidden" name="perm[', $hidden_perm[0], '][', $hidden_perm[1], ']" value="', $hidden_perm[2], '">'; |
554 | + } |
|
533 | 555 | |
534 | 556 | echo ' |
535 | 557 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -557,17 +579,19 @@ discard block |
||
557 | 579 | |
558 | 580 | foreach ($column as $permissionGroup) |
559 | 581 | { |
560 | - if (empty($permissionGroup['permissions'])) |
|
561 | - continue; |
|
582 | + if (empty($permissionGroup['permissions'])) { |
|
583 | + continue; |
|
584 | + } |
|
562 | 585 | |
563 | 586 | // Are we likely to have something in this group to display or is it all hidden? |
564 | 587 | $has_display_content = false; |
565 | 588 | if (!$permissionGroup['hidden']) |
566 | 589 | { |
567 | 590 | // Before we go any further check we are going to have some data to print otherwise we just have a silly heading. |
568 | - foreach ($permissionGroup['permissions'] as $permission) |
|
569 | - if (!$permission['hidden']) |
|
591 | + foreach ($permissionGroup['permissions'] as $permission) { |
|
592 | + if (!$permission['hidden']) |
|
570 | 593 | $has_display_content = true; |
594 | + } |
|
571 | 595 | |
572 | 596 | if ($has_display_content) |
573 | 597 | { |
@@ -576,10 +600,11 @@ discard block |
||
576 | 600 | <th></th> |
577 | 601 | <th', $context['group']['id'] == -1 ? ' colspan="2"' : '', ' class="smalltext">', $permissionGroup['name'], '</th>'; |
578 | 602 | |
579 | - if ($context['group']['id'] != -1) |
|
580 | - echo ' |
|
603 | + if ($context['group']['id'] != -1) { |
|
604 | + echo ' |
|
581 | 605 | <th>', $txt['permissions_option_own'], '</th> |
582 | 606 | <th>', $txt['permissions_option_any'], '</th>'; |
607 | + } |
|
583 | 608 | |
584 | 609 | echo ' |
585 | 610 | </tr>'; |
@@ -602,17 +627,18 @@ discard block |
||
602 | 627 | // Guests can't do their own thing. |
603 | 628 | if ($context['group']['id'] != -1) |
604 | 629 | { |
605 | - if (empty($modSettings['permission_enable_deny'])) |
|
606 | - echo ' |
|
630 | + if (empty($modSettings['permission_enable_deny'])) { |
|
631 | + echo ' |
|
607 | 632 | <input type="checkbox" name="perm[', $permission_type['id'], '][', $permission['own']['id'], ']"', $permission['own']['select'] == 'on' ? ' checked="checked"' : '', ' value="on" id="', $permission['own']['id'], '_on" ', $disable_field, '/>'; |
608 | - else |
|
633 | + } else |
|
609 | 634 | { |
610 | 635 | echo ' |
611 | 636 | <select name="perm[', $permission_type['id'], '][', $permission['own']['id'], ']" ', $disable_field, '>'; |
612 | 637 | |
613 | - foreach (array('on', 'off', 'deny') as $c) |
|
614 | - echo ' |
|
638 | + foreach (array('on', 'off', 'deny') as $c) { |
|
639 | + echo ' |
|
615 | 640 | <option ', $permission['own']['select'] == $c ? ' selected' : '', ' value="', $c, '">', $txt['permissions_option_' . $c], '</option>'; |
641 | + } |
|
616 | 642 | echo ' |
617 | 643 | </select>'; |
618 | 644 | } |
@@ -622,39 +648,41 @@ discard block |
||
622 | 648 | <td>'; |
623 | 649 | } |
624 | 650 | |
625 | - if (empty($modSettings['permission_enable_deny']) || $context['group']['id'] == -1) |
|
626 | - echo ' |
|
651 | + if (empty($modSettings['permission_enable_deny']) || $context['group']['id'] == -1) { |
|
652 | + echo ' |
|
627 | 653 | <input type="checkbox" name="perm[', $permission_type['id'], '][', $permission['any']['id'], ']"', $permission['any']['select'] == 'on' ? ' checked="checked"' : '', ' value="on" ', $disable_field, '/>'; |
628 | - else |
|
654 | + } else |
|
629 | 655 | { |
630 | 656 | echo ' |
631 | 657 | <select name="perm[', $permission_type['id'], '][', $permission['any']['id'], ']" ', $disable_field, '>'; |
632 | 658 | |
633 | - foreach (array('on', 'off', 'deny') as $c) |
|
634 | - echo ' |
|
659 | + foreach (array('on', 'off', 'deny') as $c) { |
|
660 | + echo ' |
|
635 | 661 | <option ', $permission['any']['select'] == $c ? ' selected' : '', ' value="', $c, '">', $txt['permissions_option_' . $c], '</option>'; |
662 | + } |
|
636 | 663 | echo ' |
637 | 664 | </select>'; |
638 | 665 | } |
639 | - } |
|
640 | - else |
|
666 | + } else |
|
641 | 667 | { |
642 | - if ($context['group']['id'] != -1) |
|
643 | - echo ' |
|
668 | + if ($context['group']['id'] != -1) { |
|
669 | + echo ' |
|
644 | 670 | </td> |
645 | 671 | <td>'; |
672 | + } |
|
646 | 673 | |
647 | - if (empty($modSettings['permission_enable_deny']) || $context['group']['id'] == -1) |
|
648 | - echo ' |
|
674 | + if (empty($modSettings['permission_enable_deny']) || $context['group']['id'] == -1) { |
|
675 | + echo ' |
|
649 | 676 | <input type="checkbox" name="perm[', $permission_type['id'], '][', $permission['id'], ']"', $permission['select'] == 'on' ? ' checked="checked"' : '', ' value="on" ', $disable_field, '/>'; |
650 | - else |
|
677 | + } else |
|
651 | 678 | { |
652 | 679 | echo ' |
653 | 680 | <select name="perm[', $permission_type['id'], '][', $permission['id'], ']" ', $disable_field, '>'; |
654 | 681 | |
655 | - foreach (array('on', 'off', 'deny') as $c) |
|
656 | - echo ' |
|
682 | + foreach (array('on', 'off', 'deny') as $c) { |
|
683 | + echo ' |
|
657 | 684 | <option ', $permission['select'] == $c ? ' selected' : '', ' value="', $c, '">', $txt['permissions_option_' . $c], '</option>'; |
685 | + } |
|
658 | 686 | echo ' |
659 | 687 | </select>'; |
660 | 688 | } |
@@ -684,11 +712,11 @@ discard block |
||
684 | 712 | echo ' |
685 | 713 | <fieldset id="', $context['current_permission'], '"> |
686 | 714 | <legend><a href="javascript:void(0);" onclick="document.getElementById(\'', $context['current_permission'], '\').style.display = \'none\';document.getElementById(\'', $context['current_permission'], '_groups_link\').style.display = \'block\'; return false;" class="toggle_up"> ', $txt['avatar_select_permission'], '</a></legend>'; |
687 | - if (empty($modSettings['permission_enable_deny'])) |
|
688 | - echo ' |
|
715 | + if (empty($modSettings['permission_enable_deny'])) { |
|
716 | + echo ' |
|
689 | 717 | <ul>'; |
690 | - else |
|
691 | - echo ' |
|
718 | + } else { |
|
719 | + echo ' |
|
692 | 720 | <div class="information">', $txt['permissions_option_desc'], '</div> |
693 | 721 | <dl class="settings"> |
694 | 722 | <dt> |
@@ -698,46 +726,51 @@ discard block |
||
698 | 726 | </dt> |
699 | 727 | <dd> |
700 | 728 | </dd>'; |
729 | + } |
|
701 | 730 | foreach ($context['member_groups'] as $group) |
702 | 731 | { |
703 | - if (!empty($modSettings['permission_enable_deny'])) |
|
704 | - echo ' |
|
732 | + if (!empty($modSettings['permission_enable_deny'])) { |
|
733 | + echo ' |
|
705 | 734 | <dt>'; |
706 | - else |
|
707 | - echo ' |
|
735 | + } else { |
|
736 | + echo ' |
|
708 | 737 | <li>'; |
738 | + } |
|
709 | 739 | |
710 | - if (empty($modSettings['permission_enable_deny'])) |
|
711 | - echo ' |
|
740 | + if (empty($modSettings['permission_enable_deny'])) { |
|
741 | + echo ' |
|
712 | 742 | <input type="checkbox" name="', $context['current_permission'], '[', $group['id'], ']" value="on"', $group['status'] == 'on' ? ' checked' : '', '>'; |
713 | - else |
|
714 | - echo ' |
|
743 | + } else { |
|
744 | + echo ' |
|
715 | 745 | <span class="perms"><input type="radio" name="', $context['current_permission'], '[', $group['id'], ']" value="on"', $group['status'] == 'on' ? ' checked' : '', '></span> |
716 | 746 | <span class="perms"><input type="radio" name="', $context['current_permission'], '[', $group['id'], ']" value="off"', $group['status'] == 'off' ? ' checked' : '', '></span> |
717 | 747 | <span class="perms"><input type="radio" name="', $context['current_permission'], '[', $group['id'], ']" value="deny"', $group['status'] == 'deny' ? ' checked' : '', '></span>'; |
748 | + } |
|
718 | 749 | |
719 | - if (!empty($modSettings['permission_enable_deny'])) |
|
720 | - echo ' |
|
750 | + if (!empty($modSettings['permission_enable_deny'])) { |
|
751 | + echo ' |
|
721 | 752 | </dt> |
722 | 753 | <dd> |
723 | 754 | <span', $group['is_postgroup'] ? ' style="font-style: italic;"' : '', '>', $group['name'], '</span> |
724 | 755 | </dd>'; |
725 | - else |
|
726 | - echo ' |
|
756 | + } else { |
|
757 | + echo ' |
|
727 | 758 | <span', $group['is_postgroup'] ? ' style="font-style: italic;"' : '', '>', $group['name'], '</span> |
728 | 759 | </li>'; |
760 | + } |
|
729 | 761 | } |
730 | 762 | |
731 | - if (empty($modSettings['permission_enable_deny'])) |
|
732 | - echo ' |
|
763 | + if (empty($modSettings['permission_enable_deny'])) { |
|
764 | + echo ' |
|
733 | 765 | <li> |
734 | 766 | <input type="checkbox" onclick="invertAll(this, this.form, \''. $context['current_permission'] . '[\');"> |
735 | 767 | <span>', $txt['check_all'], '</span> |
736 | 768 | </li> |
737 | 769 | </ul>'; |
738 | - else |
|
739 | - echo ' |
|
770 | + } else { |
|
771 | + echo ' |
|
740 | 772 | </dl>'; |
773 | + } |
|
741 | 774 | |
742 | 775 | echo ' |
743 | 776 | </fieldset> |
@@ -777,9 +810,10 @@ discard block |
||
777 | 810 | if (!empty($modSettings['postmod_active'])) |
778 | 811 | { |
779 | 812 | // Got advanced permissions - if so warn! |
780 | - if (!empty($modSettings['permission_enable_deny'])) |
|
781 | - echo ' |
|
813 | + if (!empty($modSettings['permission_enable_deny'])) { |
|
814 | + echo ' |
|
782 | 815 | <div class="information">', $txt['permissions_post_moderation_deny_note'], '</div>'; |
816 | + } |
|
783 | 817 | |
784 | 818 | echo ' |
785 | 819 | <div class="padding"> |
@@ -794,10 +828,11 @@ discard block |
||
794 | 828 | ', $txt['permissions_post_moderation_select'], ': |
795 | 829 | <select name="pid" onchange="document.forms.postmodForm.submit();">'; |
796 | 830 | |
797 | - foreach ($context['profiles'] as $profile) |
|
798 | - if ($profile['can_modify']) |
|
831 | + foreach ($context['profiles'] as $profile) { |
|
832 | + if ($profile['can_modify']) |
|
799 | 833 | echo ' |
800 | 834 | <option value="', $profile['id'], '"', $profile['id'] == $context['current_profile'] ? ' selected' : '', '>', $profile['name'], '</option>'; |
835 | + } |
|
801 | 836 | |
802 | 837 | echo ' |
803 | 838 | </select> |
@@ -818,11 +853,12 @@ discard block |
||
818 | 853 | ', $txt['permissions_post_moderation_replies_any'], ' |
819 | 854 | </th>'; |
820 | 855 | |
821 | - if ($modSettings['attachmentEnable'] == 1) |
|
822 | - echo ' |
|
856 | + if ($modSettings['attachmentEnable'] == 1) { |
|
857 | + echo ' |
|
823 | 858 | <th class="centercol" colspan="3"> |
824 | 859 | ', $txt['permissions_post_moderation_attachments'], ' |
825 | 860 | </th>'; |
861 | + } |
|
826 | 862 | |
827 | 863 | echo ' |
828 | 864 | </tr> |
@@ -840,11 +876,12 @@ discard block |
||
840 | 876 | <th><span class="generic_icons post_moderation_moderate"></span></th> |
841 | 877 | <th><span class="generic_icons post_moderation_deny"></span></th>'; |
842 | 878 | |
843 | - if ($modSettings['attachmentEnable'] == 1) |
|
844 | - echo ' |
|
879 | + if ($modSettings['attachmentEnable'] == 1) { |
|
880 | + echo ' |
|
845 | 881 | <th><span class="generic_icons post_moderation_allow"></span></th> |
846 | 882 | <th><span class="generic_icons post_moderation_moderate"></span></th> |
847 | 883 | <th><span class="generic_icons post_moderation_deny"></span></th>'; |
884 | + } |
|
848 | 885 | |
849 | 886 | echo ' |
850 | 887 | </tr> |
@@ -857,9 +894,10 @@ discard block |
||
857 | 894 | <tr class="windowbg"> |
858 | 895 | <td class="half_table"> |
859 | 896 | <span ', ($group['color'] ? 'style="color: ' . $group['color'] . '"' : ''), '>', $group['name'], '</span>'; |
860 | - if (!empty($group['children'])) |
|
861 | - echo ' |
|
897 | + if (!empty($group['children'])) { |
|
898 | + echo ' |
|
862 | 899 | <br><span class="smalltext">', $txt['permissions_includes_inherited'], ': "', implode('", "', $group['children']), '"</span>'; |
900 | + } |
|
863 | 901 | |
864 | 902 | echo ' |
865 | 903 | </td> |
@@ -872,8 +910,7 @@ discard block |
||
872 | 910 | { |
873 | 911 | echo ' |
874 | 912 | <td colspan="3"></td>'; |
875 | - } |
|
876 | - else |
|
913 | + } else |
|
877 | 914 | { |
878 | 915 | echo ' |
879 | 916 | <td class="centercol"><input type="radio" name="replies_own[', $group['id'], ']" value="allow"', $group['replies_own'] == 'allow' ? ' checked' : '', '></td> |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | // Stick our "create a redirection topic" template in here... |
64 | 64 | template_redirect_options('move'); |
65 | 65 | |
66 | - echo ' |
|
66 | + echo ' |
|
67 | 67 | <input type="submit" value="', $txt['move_topic'], '" onclick="return submitThisOnce(this);" accesskey="s" class="button"> |
68 | 68 | </div> |
69 | 69 | </div>'; |
@@ -86,9 +86,9 @@ discard block |
||
86 | 86 | */ |
87 | 87 | function template_redirect_options($type) |
88 | 88 | { |
89 | - global $txt, $context, $modSettings; |
|
89 | + global $txt, $context, $modSettings; |
|
90 | 90 | |
91 | - echo ' |
|
91 | + echo ' |
|
92 | 92 | <label for="postRedirect"><input type="checkbox" name="postRedirect" id="postRedirect"', $context['is_approved'] ? ' checked' : '', ' onclick="', $context['is_approved'] ? '' : 'if (this.checked && !confirm(\'' . $txt[$type . '_topic_unapproved_js'] . '\')) return false; ', 'document.getElementById(\'reasonArea\').style.display = this.checked ? \'block\' : \'none\';"> ', $txt['post_redirection'], '.</label> |
93 | 93 | <fieldset id="reasonArea" style="margin-top: 1ex;', $context['is_approved'] ? '' : 'display: none;', '"> |
94 | 94 | <dl class="settings"> |
@@ -37,9 +37,10 @@ discard block |
||
37 | 37 | echo ' |
38 | 38 | <optgroup label="', $category['name'], '">'; |
39 | 39 | |
40 | - foreach ($category['boards'] as $board) |
|
41 | - echo ' |
|
40 | + foreach ($category['boards'] as $board) { |
|
41 | + echo ' |
|
42 | 42 | <option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', $board['id'] == $context['current_board'] ? ' disabled' : '', '>', $board['child_level'] > 0 ? str_repeat('==', $board['child_level']-1) . '=> ' : '', $board['name'], '</option>'; |
43 | + } |
|
43 | 44 | echo ' |
44 | 45 | </optgroup>'; |
45 | 46 | } |
@@ -68,9 +69,10 @@ discard block |
||
68 | 69 | </div> |
69 | 70 | </div>'; |
70 | 71 | |
71 | - if ($context['back_to_topic']) |
|
72 | - echo ' |
|
72 | + if ($context['back_to_topic']) { |
|
73 | + echo ' |
|
73 | 74 | <input type="hidden" name="goback" value="1">'; |
75 | + } |
|
74 | 76 | |
75 | 77 | echo ' |
76 | 78 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -120,8 +122,7 @@ discard block |
||
120 | 122 | <option value="86400">', $txt['two_months'], '</option> |
121 | 123 | </select> |
122 | 124 | </dd>'; |
123 | - } |
|
124 | - else |
|
125 | + } else |
|
125 | 126 | { |
126 | 127 | echo ' |
127 | 128 | <input type="hidden" name="redirect_expires" value="0">'; |
@@ -217,9 +218,9 @@ discard block |
||
217 | 218 | <input type="submit" value="', $txt['go'], '" class="button"> |
218 | 219 | </form>'; |
219 | 220 | |
221 | + } else { |
|
222 | + echo $txt['target_below']; |
|
220 | 223 | } |
221 | - else |
|
222 | - echo $txt['target_below']; |
|
223 | 224 | |
224 | 225 | echo ' </h4> |
225 | 226 | </div>'; |
@@ -237,12 +238,13 @@ discard block |
||
237 | 238 | |
238 | 239 | $merge_button = create_button('merge', 'merge', ''); |
239 | 240 | |
240 | - foreach ($context['topics'] as $topic) |
|
241 | - echo ' |
|
241 | + foreach ($context['topics'] as $topic) { |
|
242 | + echo ' |
|
242 | 243 | <li> |
243 | 244 | <a href="', $scripturl, '?action=mergetopics;sa=options;board=', $context['current_board'], '.0;from=', $context['origin_topic'], ';to=', $topic['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $merge_button, '</a> |
244 | 245 | <a href="', $scripturl, '?topic=', $topic['id'], '.0" target="_blank">', $topic['subject'], '</a> ', $txt['started_by'], ' ', $topic['poster']['link'], ' |
245 | 246 | </li>'; |
247 | + } |
|
246 | 248 | |
247 | 249 | echo ' |
248 | 250 | </ul> |
@@ -251,8 +253,7 @@ discard block |
||
251 | 253 | <div class="pagesection"> |
252 | 254 | ', $context['page_index'], ' |
253 | 255 | </div>'; |
254 | - } |
|
255 | - else |
|
256 | + } else |
|
256 | 257 | { |
257 | 258 | // Just a nice "There aren't any topics" message |
258 | 259 | echo ' |
@@ -306,8 +307,8 @@ discard block |
||
306 | 307 | </tr> |
307 | 308 | </thead> |
308 | 309 | <tbody>'; |
309 | - foreach ($context['topics'] as $topic) |
|
310 | - echo ' |
|
310 | + foreach ($context['topics'] as $topic) { |
|
311 | + echo ' |
|
311 | 312 | <tr class="windowbg"> |
312 | 313 | <td> |
313 | 314 | <input type="checkbox" name="topics[]" value="' . $topic['id'] . '" checked> |
@@ -327,6 +328,7 @@ discard block |
||
327 | 328 | <input type="checkbox" name="notifications[]" value="' . $topic['id'] . '" checked> |
328 | 329 | </td> |
329 | 330 | </tr>'; |
331 | + } |
|
330 | 332 | echo ' |
331 | 333 | </tbody> |
332 | 334 | </table> |
@@ -337,9 +339,10 @@ discard block |
||
337 | 339 | <fieldset id="merge_subject" class="merge_options"> |
338 | 340 | <legend>', $txt['merge_select_subject'], '</legend> |
339 | 341 | <select name="subject" onchange="this.form.custom_subject.style.display = (this.options[this.selectedIndex].value != 0) ? \'none\': \'\' ;">'; |
340 | - foreach ($context['topics'] as $topic) |
|
341 | - echo ' |
|
342 | + foreach ($context['topics'] as $topic) { |
|
343 | + echo ' |
|
342 | 344 | <option value="', $topic['id'], '"' . ($topic['selected'] ? ' selected' : '') . '>', $topic['subject'], '</option>'; |
345 | + } |
|
343 | 346 | echo ' |
344 | 347 | <option value="0">', $txt['merge_custom_subject'], ':</option> |
345 | 348 | </select> |
@@ -357,11 +360,12 @@ discard block |
||
357 | 360 | <fieldset id="merge_board" class="merge_options"> |
358 | 361 | <legend>', $txt['merge_select_target_board'], '</legend> |
359 | 362 | <ul>'; |
360 | - foreach ($context['boards'] as $board) |
|
361 | - echo ' |
|
363 | + foreach ($context['boards'] as $board) { |
|
364 | + echo ' |
|
362 | 365 | <li> |
363 | 366 | <input type="radio" name="board" value="' . $board['id'] . '"' . ($board['selected'] ? ' checked' : '') . '> ' . $board['name'] . ' |
364 | 367 | </li>'; |
368 | + } |
|
365 | 369 | echo ' |
366 | 370 | </ul> |
367 | 371 | </fieldset>'; |
@@ -372,11 +376,12 @@ discard block |
||
372 | 376 | <fieldset id="merge_poll" class="merge_options"> |
373 | 377 | <legend>' . $txt['merge_select_poll'] . '</legend> |
374 | 378 | <ul>'; |
375 | - foreach ($context['polls'] as $poll) |
|
376 | - echo ' |
|
379 | + foreach ($context['polls'] as $poll) { |
|
380 | + echo ' |
|
377 | 381 | <li> |
378 | 382 | <input type="radio" name="poll" value="' . $poll['id'] . '"' . ($poll['selected'] ? ' checked' : '') . '> ' . $poll['question'] . ' (' . $txt['topic'] . ': <a href="' . $scripturl . '?topic=' . $poll['topic']['id'] . '.0" target="_blank">' . $poll['topic']['subject'] . '</a>) |
379 | 383 | </li>'; |
384 | + } |
|
380 | 385 | echo ' |
381 | 386 | <li> |
382 | 387 | <input type="radio" name="poll" value="-1"> (' . $txt['merge_no_poll'] . ') |
@@ -13,8 +13,9 @@ discard block |
||
13 | 13 | * @version 2.1 Beta 4 |
14 | 14 | */ |
15 | 15 | |
16 | -if (!defined('SMF')) |
|
16 | +if (!defined('SMF')) { |
|
17 | 17 | die('No direct access...'); |
18 | +} |
|
18 | 19 | |
19 | 20 | /** |
20 | 21 | * The main entrance point for the Manage Members screen. |
@@ -62,16 +63,18 @@ discard block |
||
62 | 63 | $context['activation_numbers'] = array(); |
63 | 64 | $context['awaiting_activation'] = 0; |
64 | 65 | $context['awaiting_approval'] = 0; |
65 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
66 | - $context['activation_numbers'][$row['is_activated']] = $row['total_members']; |
|
66 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
67 | + $context['activation_numbers'][$row['is_activated']] = $row['total_members']; |
|
68 | + } |
|
67 | 69 | $smcFunc['db_free_result']($request); |
68 | 70 | |
69 | 71 | foreach ($context['activation_numbers'] as $activation_type => $total_members) |
70 | 72 | { |
71 | - if (in_array($activation_type, array(0, 2))) |
|
72 | - $context['awaiting_activation'] += $total_members; |
|
73 | - elseif (in_array($activation_type, array(3, 4, 5))) |
|
74 | - $context['awaiting_approval'] += $total_members; |
|
73 | + if (in_array($activation_type, array(0, 2))) { |
|
74 | + $context['awaiting_activation'] += $total_members; |
|
75 | + } elseif (in_array($activation_type, array(3, 4, 5))) { |
|
76 | + $context['awaiting_approval'] += $total_members; |
|
77 | + } |
|
75 | 78 | } |
76 | 79 | |
77 | 80 | // For the page header... do we show activation? |
@@ -124,8 +127,9 @@ discard block |
||
124 | 127 | } |
125 | 128 | if (!$context['show_approve'] && ($_REQUEST['sa'] != 'browse' || $_REQUEST['type'] != 'approve')) |
126 | 129 | { |
127 | - if (!$context['show_activate'] && ($_REQUEST['sa'] != 'browse' || $_REQUEST['type'] != 'activate')) |
|
128 | - $context['tabs']['search']['is_last'] = true; |
|
130 | + if (!$context['show_activate'] && ($_REQUEST['sa'] != 'browse' || $_REQUEST['type'] != 'activate')) { |
|
131 | + $context['tabs']['search']['is_last'] = true; |
|
132 | + } |
|
129 | 133 | unset($context['tabs']['approve']); |
130 | 134 | } |
131 | 135 | |
@@ -157,8 +161,9 @@ discard block |
||
157 | 161 | foreach ($_POST['delete'] as $key => $value) |
158 | 162 | { |
159 | 163 | // Don't delete yourself, idiot. |
160 | - if ($value != $user_info['id']) |
|
161 | - $delete[$key] = (int) $value; |
|
164 | + if ($value != $user_info['id']) { |
|
165 | + $delete[$key] = (int) $value; |
|
166 | + } |
|
162 | 167 | } |
163 | 168 | |
164 | 169 | if (!empty($delete)) |
@@ -194,17 +199,18 @@ discard block |
||
194 | 199 | ); |
195 | 200 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
196 | 201 | { |
197 | - if ($row['min_posts'] == -1) |
|
198 | - $context['membergroups'][] = array( |
|
202 | + if ($row['min_posts'] == -1) { |
|
203 | + $context['membergroups'][] = array( |
|
199 | 204 | 'id' => $row['id_group'], |
200 | 205 | 'name' => $row['group_name'], |
201 | 206 | 'can_be_additional' => true |
202 | 207 | ); |
203 | - else |
|
204 | - $context['postgroups'][] = array( |
|
208 | + } else { |
|
209 | + $context['postgroups'][] = array( |
|
205 | 210 | 'id' => $row['id_group'], |
206 | 211 | 'name' => $row['group_name'] |
207 | 212 | ); |
213 | + } |
|
208 | 214 | } |
209 | 215 | $smcFunc['db_free_result']($request); |
210 | 216 | |
@@ -268,14 +274,15 @@ discard block |
||
268 | 274 | call_integration_hook('integrate_view_members_params', array(&$params)); |
269 | 275 | |
270 | 276 | $search_params = array(); |
271 | - if ($context['sub_action'] == 'query' && !empty($_REQUEST['params']) && empty($_POST['types'])) |
|
272 | - $search_params = $smcFunc['json_decode'](base64_decode($_REQUEST['params']), true); |
|
273 | - elseif (!empty($_POST)) |
|
277 | + if ($context['sub_action'] == 'query' && !empty($_REQUEST['params']) && empty($_POST['types'])) { |
|
278 | + $search_params = $smcFunc['json_decode'](base64_decode($_REQUEST['params']), true); |
|
279 | + } elseif (!empty($_POST)) |
|
274 | 280 | { |
275 | 281 | $search_params['types'] = $_POST['types']; |
276 | - foreach ($params as $param_name => $param_info) |
|
277 | - if (isset($_POST[$param_name])) |
|
282 | + foreach ($params as $param_name => $param_info) { |
|
283 | + if (isset($_POST[$param_name])) |
|
278 | 284 | $search_params[$param_name] = $_POST[$param_name]; |
285 | + } |
|
279 | 286 | } |
280 | 287 | |
281 | 288 | $search_url_params = isset($search_params) ? base64_encode($smcFunc['json_encode']($search_params)) : null; |
@@ -288,18 +295,21 @@ discard block |
||
288 | 295 | foreach ($params as $param_name => $param_info) |
289 | 296 | { |
290 | 297 | // Not filled in? |
291 | - if (!isset($search_params[$param_name]) || $search_params[$param_name] === '') |
|
292 | - continue; |
|
298 | + if (!isset($search_params[$param_name]) || $search_params[$param_name] === '') { |
|
299 | + continue; |
|
300 | + } |
|
293 | 301 | |
294 | 302 | // Make sure numeric values are really numeric. |
295 | - if (in_array($param_info['type'], array('int', 'age'))) |
|
296 | - $search_params[$param_name] = (int) $search_params[$param_name]; |
|
303 | + if (in_array($param_info['type'], array('int', 'age'))) { |
|
304 | + $search_params[$param_name] = (int) $search_params[$param_name]; |
|
305 | + } |
|
297 | 306 | // Date values have to match the specified format. |
298 | 307 | elseif ($param_info['type'] == 'date') |
299 | 308 | { |
300 | 309 | // Check if this date format is valid. |
301 | - if (preg_match('/^\d{4}-\d{1,2}-\d{1,2}$/', $search_params[$param_name]) == 0) |
|
302 | - continue; |
|
310 | + if (preg_match('/^\d{4}-\d{1,2}-\d{1,2}$/', $search_params[$param_name]) == 0) { |
|
311 | + continue; |
|
312 | + } |
|
303 | 313 | |
304 | 314 | $search_params[$param_name] = strtotime($search_params[$param_name]); |
305 | 315 | } |
@@ -308,8 +318,9 @@ discard block |
||
308 | 318 | if (!empty($param_info['range'])) |
309 | 319 | { |
310 | 320 | // Default to '=', just in case... |
311 | - if (empty($range_trans[$search_params['types'][$param_name]])) |
|
312 | - $search_params['types'][$param_name] = '='; |
|
321 | + if (empty($range_trans[$search_params['types'][$param_name]])) { |
|
322 | + $search_params['types'][$param_name] = '='; |
|
323 | + } |
|
313 | 324 | |
314 | 325 | // Handle special case 'age'. |
315 | 326 | if ($param_info['type'] == 'age') |
@@ -337,29 +348,30 @@ discard block |
||
337 | 348 | elseif ($param_info['type'] == 'date' && $search_params['types'][$param_name] == '=') |
338 | 349 | { |
339 | 350 | $query_parts[] = $param_info['db_fields'][0] . ' > ' . $search_params[$param_name] . ' AND ' . $param_info['db_fields'][0] . ' < ' . ($search_params[$param_name] + 86400); |
351 | + } else { |
|
352 | + $query_parts[] = $param_info['db_fields'][0] . ' ' . $range_trans[$search_params['types'][$param_name]] . ' ' . $search_params[$param_name]; |
|
340 | 353 | } |
341 | - else |
|
342 | - $query_parts[] = $param_info['db_fields'][0] . ' ' . $range_trans[$search_params['types'][$param_name]] . ' ' . $search_params[$param_name]; |
|
343 | 354 | } |
344 | 355 | // Checkboxes. |
345 | 356 | elseif ($param_info['type'] == 'checkbox') |
346 | 357 | { |
347 | 358 | // Each checkbox or no checkbox at all is checked -> ignore. |
348 | - if (!is_array($search_params[$param_name]) || count($search_params[$param_name]) == 0 || count($search_params[$param_name]) == count($param_info['values'])) |
|
349 | - continue; |
|
359 | + if (!is_array($search_params[$param_name]) || count($search_params[$param_name]) == 0 || count($search_params[$param_name]) == count($param_info['values'])) { |
|
360 | + continue; |
|
361 | + } |
|
350 | 362 | |
351 | 363 | $query_parts[] = ($param_info['db_fields'][0]) . ' IN ({array_string:' . $param_name . '_check})'; |
352 | 364 | $where_params[$param_name . '_check'] = $search_params[$param_name]; |
353 | - } |
|
354 | - else |
|
365 | + } else |
|
355 | 366 | { |
356 | 367 | // Replace the wildcard characters ('*' and '?') into MySQL ones. |
357 | 368 | $parameter = strtolower(strtr($smcFunc['htmlspecialchars']($search_params[$param_name], ENT_QUOTES), array('%' => '\%', '_' => '\_', '*' => '%', '?' => '_'))); |
358 | 369 | |
359 | - if ($smcFunc['db_case_sensitive']) |
|
360 | - $query_parts[] = '(LOWER(' . implode(') LIKE {string:' . $param_name . '_normal} OR LOWER(', $param_info['db_fields']) . ') LIKE {string:' . $param_name . '_normal})'; |
|
361 | - else |
|
362 | - $query_parts[] = '(' . implode(' LIKE {string:' . $param_name . '_normal} OR ', $param_info['db_fields']) . ' LIKE {string:' . $param_name . '_normal})'; |
|
370 | + if ($smcFunc['db_case_sensitive']) { |
|
371 | + $query_parts[] = '(LOWER(' . implode(') LIKE {string:' . $param_name . '_normal} OR LOWER(', $param_info['db_fields']) . ') LIKE {string:' . $param_name . '_normal})'; |
|
372 | + } else { |
|
373 | + $query_parts[] = '(' . implode(' LIKE {string:' . $param_name . '_normal} OR ', $param_info['db_fields']) . ' LIKE {string:' . $param_name . '_normal})'; |
|
374 | + } |
|
363 | 375 | $where_params[$param_name . '_normal'] = '%' . $parameter . '%'; |
364 | 376 | } |
365 | 377 | } |
@@ -375,16 +387,18 @@ discard block |
||
375 | 387 | } |
376 | 388 | |
377 | 389 | // Additional membergroups (these are only relevant if not all primary groups where selected!). |
378 | - if (!empty($search_params['membergroups'][2]) && (empty($search_params['membergroups'][1]) || count($context['membergroups']) != count($search_params['membergroups'][1]))) |
|
379 | - foreach ($search_params['membergroups'][2] as $mg) |
|
390 | + if (!empty($search_params['membergroups'][2]) && (empty($search_params['membergroups'][1]) || count($context['membergroups']) != count($search_params['membergroups'][1]))) { |
|
391 | + foreach ($search_params['membergroups'][2] as $mg) |
|
380 | 392 | { |
381 | 393 | $mg_query_parts[] = 'FIND_IN_SET({int:add_group_' . $mg . '}, mem.additional_groups) != 0'; |
394 | + } |
|
382 | 395 | $where_params['add_group_' . $mg] = $mg; |
383 | 396 | } |
384 | 397 | |
385 | 398 | // Combine the one or two membergroup parts into one query part linked with an OR. |
386 | - if (!empty($mg_query_parts)) |
|
387 | - $query_parts[] = '(' . implode(' OR ', $mg_query_parts) . ')'; |
|
399 | + if (!empty($mg_query_parts)) { |
|
400 | + $query_parts[] = '(' . implode(' OR ', $mg_query_parts) . ')'; |
|
401 | + } |
|
388 | 402 | |
389 | 403 | // Get all selected post count related membergroups. |
390 | 404 | if (!empty($search_params['postgroups']) && count($search_params['postgroups']) != count($context['postgroups'])) |
@@ -396,9 +410,9 @@ discard block |
||
396 | 410 | // Construct the where part of the query. |
397 | 411 | $where = empty($query_parts) ? '1=1' : implode(' |
398 | 412 | AND ', $query_parts); |
413 | + } else { |
|
414 | + $search_url_params = null; |
|
399 | 415 | } |
400 | - else |
|
401 | - $search_url_params = null; |
|
402 | 416 | |
403 | 417 | // Construct the additional URL part with the query info in it. |
404 | 418 | $context['params_url'] = $context['sub_action'] == 'query' ? ';sa=query;params=' . $search_url_params : ''; |
@@ -521,28 +535,32 @@ discard block |
||
521 | 535 | 'function' => function($rowData) use ($txt) |
522 | 536 | { |
523 | 537 | // Calculate number of days since last online. |
524 | - if (empty($rowData['last_login'])) |
|
525 | - $difference = $txt['never']; |
|
526 | - else |
|
538 | + if (empty($rowData['last_login'])) { |
|
539 | + $difference = $txt['never']; |
|
540 | + } else |
|
527 | 541 | { |
528 | 542 | $num_days_difference = jeffsdatediff($rowData['last_login']); |
529 | 543 | |
530 | 544 | // Today. |
531 | - if (empty($num_days_difference)) |
|
532 | - $difference = $txt['viewmembers_today']; |
|
545 | + if (empty($num_days_difference)) { |
|
546 | + $difference = $txt['viewmembers_today']; |
|
547 | + } |
|
533 | 548 | |
534 | 549 | // Yesterday. |
535 | - elseif ($num_days_difference == 1) |
|
536 | - $difference = sprintf('1 %1$s', $txt['viewmembers_day_ago']); |
|
550 | + elseif ($num_days_difference == 1) { |
|
551 | + $difference = sprintf('1 %1$s', $txt['viewmembers_day_ago']); |
|
552 | + } |
|
537 | 553 | |
538 | 554 | // X days ago. |
539 | - else |
|
540 | - $difference = sprintf('%1$d %2$s', $num_days_difference, $txt['viewmembers_days_ago']); |
|
555 | + else { |
|
556 | + $difference = sprintf('%1$d %2$s', $num_days_difference, $txt['viewmembers_days_ago']); |
|
557 | + } |
|
541 | 558 | } |
542 | 559 | |
543 | 560 | // Show it in italics if they're not activated... |
544 | - if ($rowData['is_activated'] % 10 != 1) |
|
545 | - $difference = sprintf('<em title="%1$s">%2$s</em>', $txt['not_activated'], $difference); |
|
561 | + if ($rowData['is_activated'] % 10 != 1) { |
|
562 | + $difference = sprintf('<em title="%1$s">%2$s</em>', $txt['not_activated'], $difference); |
|
563 | + } |
|
546 | 564 | |
547 | 565 | return $difference; |
548 | 566 | }, |
@@ -594,8 +612,9 @@ discard block |
||
594 | 612 | ); |
595 | 613 | |
596 | 614 | // Without enough permissions, don't show 'delete members' checkboxes. |
597 | - if (!allowedTo('profile_remove_any')) |
|
598 | - unset($listOptions['cols']['check'], $listOptions['form'], $listOptions['additional_rows']); |
|
615 | + if (!allowedTo('profile_remove_any')) { |
|
616 | + unset($listOptions['cols']['check'], $listOptions['form'], $listOptions['additional_rows']); |
|
617 | + } |
|
599 | 618 | |
600 | 619 | require_once($sourcedir . '/Subs-List.php'); |
601 | 620 | createList($listOptions); |
@@ -638,17 +657,18 @@ discard block |
||
638 | 657 | ); |
639 | 658 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
640 | 659 | { |
641 | - if ($row['min_posts'] == -1) |
|
642 | - $context['membergroups'][] = array( |
|
660 | + if ($row['min_posts'] == -1) { |
|
661 | + $context['membergroups'][] = array( |
|
643 | 662 | 'id' => $row['id_group'], |
644 | 663 | 'name' => $row['group_name'], |
645 | 664 | 'can_be_additional' => true |
646 | 665 | ); |
647 | - else |
|
648 | - $context['postgroups'][] = array( |
|
666 | + } else { |
|
667 | + $context['postgroups'][] = array( |
|
649 | 668 | 'id' => $row['id_group'], |
650 | 669 | 'name' => $row['group_name'] |
651 | 670 | ); |
671 | + } |
|
652 | 672 | } |
653 | 673 | $smcFunc['db_free_result']($request); |
654 | 674 | |
@@ -675,8 +695,9 @@ discard block |
||
675 | 695 | $context['page_title'] = $txt['admin_members']; |
676 | 696 | $context['sub_template'] = 'admin_browse'; |
677 | 697 | $context['browse_type'] = isset($_REQUEST['type']) ? $_REQUEST['type'] : (!empty($modSettings['registration_method']) && $modSettings['registration_method'] == 1 ? 'activate' : 'approve'); |
678 | - if (isset($context['tabs'][$context['browse_type']])) |
|
679 | - $context['tabs'][$context['browse_type']]['is_selected'] = true; |
|
698 | + if (isset($context['tabs'][$context['browse_type']])) { |
|
699 | + $context['tabs'][$context['browse_type']]['is_selected'] = true; |
|
700 | + } |
|
680 | 701 | |
681 | 702 | // Allowed filters are those we can have, in theory. |
682 | 703 | $context['allowed_filters'] = $context['browse_type'] == 'approve' ? array(3, 4, 5) : array(0, 2); |
@@ -687,18 +708,20 @@ discard block |
||
687 | 708 | foreach ($context['activation_numbers'] as $type => $amount) |
688 | 709 | { |
689 | 710 | // We have some of these... |
690 | - if (in_array($type, $context['allowed_filters']) && $amount > 0) |
|
691 | - $context['available_filters'][] = array( |
|
711 | + if (in_array($type, $context['allowed_filters']) && $amount > 0) { |
|
712 | + $context['available_filters'][] = array( |
|
692 | 713 | 'type' => $type, |
693 | 714 | 'amount' => $amount, |
694 | 715 | 'desc' => isset($txt['admin_browse_filter_type_' . $type]) ? $txt['admin_browse_filter_type_' . $type] : '?', |
695 | 716 | 'selected' => $type == $context['current_filter'] |
696 | 717 | ); |
718 | + } |
|
697 | 719 | } |
698 | 720 | |
699 | 721 | // If the filter was not sent, set it to whatever has people in it! |
700 | - if ($context['current_filter'] == -1 && !empty($context['available_filters'][0]['amount'])) |
|
701 | - $context['current_filter'] = $context['available_filters'][0]['type']; |
|
722 | + if ($context['current_filter'] == -1 && !empty($context['available_filters'][0]['amount'])) { |
|
723 | + $context['current_filter'] = $context['available_filters'][0]['type']; |
|
724 | + } |
|
702 | 725 | |
703 | 726 | // This little variable is used to determine if we should flag where we are looking. |
704 | 727 | $context['show_filter'] = ($context['current_filter'] != 0 && $context['current_filter'] != 3) || count($context['available_filters']) > 1; |
@@ -713,44 +736,47 @@ discard block |
||
713 | 736 | ); |
714 | 737 | |
715 | 738 | // Are we showing duplicate information? |
716 | - if (isset($_GET['showdupes'])) |
|
717 | - $_SESSION['showdupes'] = (int) $_GET['showdupes']; |
|
739 | + if (isset($_GET['showdupes'])) { |
|
740 | + $_SESSION['showdupes'] = (int) $_GET['showdupes']; |
|
741 | + } |
|
718 | 742 | $context['show_duplicates'] = !empty($_SESSION['showdupes']); |
719 | 743 | |
720 | 744 | // Determine which actions we should allow on this page. |
721 | 745 | if ($context['browse_type'] == 'approve') |
722 | 746 | { |
723 | 747 | // If we are approving deleted accounts we have a slightly different list... actually a mirror ;) |
724 | - if ($context['current_filter'] == 4) |
|
725 | - $context['allowed_actions'] = array( |
|
748 | + if ($context['current_filter'] == 4) { |
|
749 | + $context['allowed_actions'] = array( |
|
726 | 750 | 'reject' => $txt['admin_browse_w_approve_deletion'], |
727 | 751 | 'ok' => $txt['admin_browse_w_reject'], |
728 | 752 | ); |
729 | - else |
|
730 | - $context['allowed_actions'] = array( |
|
753 | + } else { |
|
754 | + $context['allowed_actions'] = array( |
|
731 | 755 | 'ok' => $txt['admin_browse_w_approve'], |
732 | 756 | 'okemail' => $txt['admin_browse_w_approve'] . ' ' . $txt['admin_browse_w_email'], |
733 | 757 | 'require_activation' => $txt['admin_browse_w_approve_require_activate'], |
734 | 758 | 'reject' => $txt['admin_browse_w_reject'], |
735 | 759 | 'rejectemail' => $txt['admin_browse_w_reject'] . ' ' . $txt['admin_browse_w_email'], |
736 | 760 | ); |
737 | - } |
|
738 | - elseif ($context['browse_type'] == 'activate') |
|
739 | - $context['allowed_actions'] = array( |
|
761 | + } |
|
762 | + } elseif ($context['browse_type'] == 'activate') { |
|
763 | + $context['allowed_actions'] = array( |
|
740 | 764 | 'ok' => $txt['admin_browse_w_activate'], |
741 | 765 | 'okemail' => $txt['admin_browse_w_activate'] . ' ' . $txt['admin_browse_w_email'], |
742 | 766 | 'delete' => $txt['admin_browse_w_delete'], |
743 | 767 | 'deleteemail' => $txt['admin_browse_w_delete'] . ' ' . $txt['admin_browse_w_email'], |
744 | 768 | 'remind' => $txt['admin_browse_w_remind'] . ' ' . $txt['admin_browse_w_email'], |
745 | 769 | ); |
770 | + } |
|
746 | 771 | |
747 | 772 | // Create an option list for actions allowed to be done with selected members. |
748 | 773 | $allowed_actions = ' |
749 | 774 | <option selected value="">' . $txt['admin_browse_with_selected'] . ':</option> |
750 | 775 | <option value="" disabled>-----------------------------</option>'; |
751 | - foreach ($context['allowed_actions'] as $key => $desc) |
|
752 | - $allowed_actions .= ' |
|
776 | + foreach ($context['allowed_actions'] as $key => $desc) { |
|
777 | + $allowed_actions .= ' |
|
753 | 778 | <option value="' . $key . '">' . $desc . '</option>'; |
779 | + } |
|
754 | 780 | |
755 | 781 | // Setup the Javascript function for selecting an action for the list. |
756 | 782 | $javascript = ' |
@@ -762,15 +788,16 @@ discard block |
||
762 | 788 | var message = "";'; |
763 | 789 | |
764 | 790 | // We have special messages for approving deletion of accounts - it's surprisingly logical - honest. |
765 | - if ($context['current_filter'] == 4) |
|
766 | - $javascript .= ' |
|
791 | + if ($context['current_filter'] == 4) { |
|
792 | + $javascript .= ' |
|
767 | 793 | if (document.forms.postForm.todo.value.indexOf("reject") != -1) |
768 | 794 | message = "' . $txt['admin_browse_w_delete'] . '"; |
769 | 795 | else |
770 | 796 | message = "' . $txt['admin_browse_w_reject'] . '";'; |
797 | + } |
|
771 | 798 | // Otherwise a nice standard message. |
772 | - else |
|
773 | - $javascript .= ' |
|
799 | + else { |
|
800 | + $javascript .= ' |
|
774 | 801 | if (document.forms.postForm.todo.value.indexOf("delete") != -1) |
775 | 802 | message = "' . $txt['admin_browse_w_delete'] . '"; |
776 | 803 | else if (document.forms.postForm.todo.value.indexOf("reject") != -1) |
@@ -779,6 +806,7 @@ discard block |
||
779 | 806 | message = "' . $txt['admin_browse_w_remind'] . '"; |
780 | 807 | else |
781 | 808 | message = "' . ($context['browse_type'] == 'approve' ? $txt['admin_browse_w_approve'] : $txt['admin_browse_w_activate']) . '";'; |
809 | + } |
|
782 | 810 | $javascript .= ' |
783 | 811 | if (confirm(message + " ' . $txt['admin_browse_warn'] . '")) |
784 | 812 | document.forms.postForm.submit(); |
@@ -911,10 +939,11 @@ discard block |
||
911 | 939 | $member_links = array(); |
912 | 940 | foreach ($rowData['duplicate_members'] as $member) |
913 | 941 | { |
914 | - if ($member['id']) |
|
915 | - $member_links[] = '<a href="' . $scripturl . '?action=profile;u=' . $member['id'] . '" ' . (!empty($member['is_banned']) ? 'class="red"' : '') . '>' . $member['name'] . '</a>'; |
|
916 | - else |
|
917 | - $member_links[] = $member['name'] . ' (' . $txt['guest'] . ')'; |
|
942 | + if ($member['id']) { |
|
943 | + $member_links[] = '<a href="' . $scripturl . '?action=profile;u=' . $member['id'] . '" ' . (!empty($member['is_banned']) ? 'class="red"' : '') . '>' . $member['name'] . '</a>'; |
|
944 | + } else { |
|
945 | + $member_links[] = $member['name'] . ' (' . $txt['guest'] . ')'; |
|
946 | + } |
|
918 | 947 | } |
919 | 948 | return implode(', ', $member_links); |
920 | 949 | }, |
@@ -963,14 +992,16 @@ discard block |
||
963 | 992 | ); |
964 | 993 | |
965 | 994 | // Pick what column to actually include if we're showing duplicates. |
966 | - if ($context['show_duplicates']) |
|
967 | - unset($listOptions['columns']['email']); |
|
968 | - else |
|
969 | - unset($listOptions['columns']['duplicates']); |
|
995 | + if ($context['show_duplicates']) { |
|
996 | + unset($listOptions['columns']['email']); |
|
997 | + } else { |
|
998 | + unset($listOptions['columns']['duplicates']); |
|
999 | + } |
|
970 | 1000 | |
971 | 1001 | // Only show hostname on duplicates as it takes a lot of time. |
972 | - if (!$context['show_duplicates'] || !empty($modSettings['disableHostnameLookup'])) |
|
973 | - unset($listOptions['columns']['hostname']); |
|
1002 | + if (!$context['show_duplicates'] || !empty($modSettings['disableHostnameLookup'])) { |
|
1003 | + unset($listOptions['columns']['hostname']); |
|
1004 | + } |
|
974 | 1005 | |
975 | 1006 | // Is there any need to show filters? |
976 | 1007 | if (isset($context['available_filters']) && count($context['available_filters']) > 1) |
@@ -978,9 +1009,10 @@ discard block |
||
978 | 1009 | $filterOptions = ' |
979 | 1010 | <strong>' . $txt['admin_browse_filter_by'] . ':</strong> |
980 | 1011 | <select name="filter" onchange="this.form.submit();">'; |
981 | - foreach ($context['available_filters'] as $filter) |
|
982 | - $filterOptions .= ' |
|
1012 | + foreach ($context['available_filters'] as $filter) { |
|
1013 | + $filterOptions .= ' |
|
983 | 1014 | <option value="' . $filter['type'] . '"' . ($filter['selected'] ? ' selected' : '') . '>' . $filter['desc'] . ' - ' . $filter['amount'] . ' ' . ($filter['amount'] == 1 ? $txt['user'] : $txt['users']) . '</option>'; |
1015 | + } |
|
984 | 1016 | $filterOptions .= ' |
985 | 1017 | </select> |
986 | 1018 | <noscript><input type="submit" value="' . $txt['go'] . '" name="filter" class="button"></noscript>'; |
@@ -992,12 +1024,13 @@ discard block |
||
992 | 1024 | } |
993 | 1025 | |
994 | 1026 | // What about if we only have one filter, but it's not the "standard" filter - show them what they are looking at. |
995 | - if (!empty($context['show_filter']) && !empty($context['available_filters'])) |
|
996 | - $listOptions['additional_rows'][] = array( |
|
1027 | + if (!empty($context['show_filter']) && !empty($context['available_filters'])) { |
|
1028 | + $listOptions['additional_rows'][] = array( |
|
997 | 1029 | 'position' => 'above_column_headers', |
998 | 1030 | 'value' => '<strong>' . $txt['admin_browse_filter_show'] . ':</strong> ' . $context['available_filters'][0]['desc'], |
999 | 1031 | 'class' => 'smalltext floatright', |
1000 | 1032 | ); |
1033 | + } |
|
1001 | 1034 | |
1002 | 1035 | // Now that we have all the options, create the list. |
1003 | 1036 | require_once($sourcedir . '/Subs-List.php'); |
@@ -1027,12 +1060,14 @@ discard block |
||
1027 | 1060 | $current_filter = (int) $_REQUEST['orig_filter']; |
1028 | 1061 | |
1029 | 1062 | // If we are applying a filter do just that - then redirect. |
1030 | - if (isset($_REQUEST['filter']) && $_REQUEST['filter'] != $_REQUEST['orig_filter']) |
|
1031 | - redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $_REQUEST['filter'] . ';start=' . $_REQUEST['start']); |
|
1063 | + if (isset($_REQUEST['filter']) && $_REQUEST['filter'] != $_REQUEST['orig_filter']) { |
|
1064 | + redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $_REQUEST['filter'] . ';start=' . $_REQUEST['start']); |
|
1065 | + } |
|
1032 | 1066 | |
1033 | 1067 | // Nothing to do? |
1034 | - if (!isset($_POST['todoAction']) && !isset($_POST['time_passed'])) |
|
1035 | - redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $current_filter . ';start=' . $_REQUEST['start']); |
|
1068 | + if (!isset($_POST['todoAction']) && !isset($_POST['time_passed'])) { |
|
1069 | + redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $current_filter . ';start=' . $_REQUEST['start']); |
|
1070 | + } |
|
1036 | 1071 | |
1037 | 1072 | // Are we dealing with members who have been waiting for > set amount of time? |
1038 | 1073 | if (isset($_POST['time_passed'])) |
@@ -1045,8 +1080,9 @@ discard block |
||
1045 | 1080 | else |
1046 | 1081 | { |
1047 | 1082 | $members = array(); |
1048 | - foreach ($_POST['todoAction'] as $id) |
|
1049 | - $members[] = (int) $id; |
|
1083 | + foreach ($_POST['todoAction'] as $id) { |
|
1084 | + $members[] = (int) $id; |
|
1085 | + } |
|
1050 | 1086 | $condition = ' |
1051 | 1087 | AND id_member IN ({array_int:members})'; |
1052 | 1088 | } |
@@ -1067,8 +1103,9 @@ discard block |
||
1067 | 1103 | $member_count = $smcFunc['db_num_rows']($request); |
1068 | 1104 | |
1069 | 1105 | // If no results then just return! |
1070 | - if ($member_count == 0) |
|
1071 | - redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $current_filter . ';start=' . $_REQUEST['start']); |
|
1106 | + if ($member_count == 0) { |
|
1107 | + redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $current_filter . ';start=' . $_REQUEST['start']); |
|
1108 | + } |
|
1072 | 1109 | |
1073 | 1110 | $member_info = array(); |
1074 | 1111 | $members = array(); |
@@ -1107,8 +1144,9 @@ discard block |
||
1107 | 1144 | // Do we have to let the integration code know about the activations? |
1108 | 1145 | if (!empty($modSettings['integrate_activate'])) |
1109 | 1146 | { |
1110 | - foreach ($member_info as $member) |
|
1111 | - call_integration_hook('integrate_activate', array($member['username'])); |
|
1147 | + foreach ($member_info as $member) { |
|
1148 | + call_integration_hook('integrate_activate', array($member['username'])); |
|
1149 | + } |
|
1112 | 1150 | } |
1113 | 1151 | |
1114 | 1152 | // Check for email. |
@@ -1238,20 +1276,23 @@ discard block |
||
1238 | 1276 | $log_action = $_POST['todo'] == 'remind' ? 'remind_member' : 'approve_member'; |
1239 | 1277 | |
1240 | 1278 | require_once($sourcedir . '/Logging.php'); |
1241 | - foreach ($member_info as $member) |
|
1242 | - logAction($log_action, array('member' => $member['id']), 'admin'); |
|
1279 | + foreach ($member_info as $member) { |
|
1280 | + logAction($log_action, array('member' => $member['id']), 'admin'); |
|
1281 | + } |
|
1243 | 1282 | } |
1244 | 1283 | |
1245 | 1284 | // Although updateStats *may* catch this, best to do it manually just in case (Doesn't always sort out unapprovedMembers). |
1246 | - if (in_array($current_filter, array(3, 4, 5))) |
|
1247 | - updateSettings(array('unapprovedMembers' => ($modSettings['unapprovedMembers'] > $member_count ? $modSettings['unapprovedMembers'] - $member_count : 0))); |
|
1285 | + if (in_array($current_filter, array(3, 4, 5))) { |
|
1286 | + updateSettings(array('unapprovedMembers' => ($modSettings['unapprovedMembers'] > $member_count ? $modSettings['unapprovedMembers'] - $member_count : 0))); |
|
1287 | + } |
|
1248 | 1288 | |
1249 | 1289 | // Update the member's stats. (but, we know the member didn't change their name.) |
1250 | 1290 | updateStats('member', false); |
1251 | 1291 | |
1252 | 1292 | // If they haven't been deleted, update the post group statistics on them... |
1253 | - if (!in_array($_POST['todo'], array('delete', 'deleteemail', 'reject', 'rejectemail', 'remind'))) |
|
1254 | - updateStats('postgroups', $members); |
|
1293 | + if (!in_array($_POST['todo'], array('delete', 'deleteemail', 'reject', 'rejectemail', 'remind'))) { |
|
1294 | + updateStats('postgroups', $members); |
|
1295 | + } |
|
1255 | 1296 | |
1256 | 1297 | redirectexit('action=admin;area=viewmembers;sa=browse;type=' . $_REQUEST['type'] . ';sort=' . $_REQUEST['sort'] . ';filter=' . $current_filter . ';start=' . $_REQUEST['start']); |
1257 | 1298 | } |
@@ -1276,10 +1317,11 @@ discard block |
||
1276 | 1317 | $dis = time() - $old; |
1277 | 1318 | |
1278 | 1319 | // Before midnight? |
1279 | - if ($dis < $sinceMidnight) |
|
1280 | - return 0; |
|
1281 | - else |
|
1282 | - $dis -= $sinceMidnight; |
|
1320 | + if ($dis < $sinceMidnight) { |
|
1321 | + return 0; |
|
1322 | + } else { |
|
1323 | + $dis -= $sinceMidnight; |
|
1324 | + } |
|
1283 | 1325 | |
1284 | 1326 | // Divide out the seconds in a day to get the number of days. |
1285 | 1327 | return ceil($dis / (24 * 60 * 60)); |
@@ -12,8 +12,9 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Don't do anything if SMF is already loaded. |
15 | -if (defined('SMF')) |
|
15 | +if (defined('SMF')) { |
|
16 | 16 | return true; |
17 | +} |
|
17 | 18 | |
18 | 19 | define('SMF', 'SSI'); |
19 | 20 | |
@@ -28,16 +29,18 @@ discard block |
||
28 | 29 | $time_start = microtime(); |
29 | 30 | |
30 | 31 | // Just being safe... |
31 | -foreach (array('db_character_set', 'cachedir') as $variable) |
|
32 | +foreach (array('db_character_set', 'cachedir') as $variable) { |
|
32 | 33 | if (isset($GLOBALS[$variable])) |
33 | 34 | unset($GLOBALS[$variable]); |
35 | +} |
|
34 | 36 | |
35 | 37 | // Get the forum's settings for database and file paths. |
36 | 38 | require_once(dirname(__FILE__) . '/Settings.php'); |
37 | 39 | |
38 | 40 | // Make absolutely sure the cache directory is defined. |
39 | -if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir . '/cache')) |
|
41 | +if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir . '/cache')) { |
|
40 | 42 | $cachedir = $boarddir . '/cache'; |
43 | +} |
|
41 | 44 | |
42 | 45 | $ssi_error_reporting = error_reporting(defined('E_STRICT') ? E_ALL | E_STRICT : E_ALL); |
43 | 46 | /* Set this to one of three values depending on what you want to happen in the case of a fatal error. |
@@ -48,12 +51,14 @@ discard block |
||
48 | 51 | $ssi_on_error_method = false; |
49 | 52 | |
50 | 53 | // Don't do john didley if the forum's been shut down completely. |
51 | -if ($maintenance == 2 && (!isset($ssi_maintenance_off) || $ssi_maintenance_off !== true)) |
|
54 | +if ($maintenance == 2 && (!isset($ssi_maintenance_off) || $ssi_maintenance_off !== true)) { |
|
52 | 55 | die($mmessage); |
56 | +} |
|
53 | 57 | |
54 | 58 | // Fix for using the current directory as a path. |
55 | -if (substr($sourcedir, 0, 1) == '.' && substr($sourcedir, 1, 1) != '.') |
|
59 | +if (substr($sourcedir, 0, 1) == '.' && substr($sourcedir, 1, 1) != '.') { |
|
56 | 60 | $sourcedir = dirname(__FILE__) . substr($sourcedir, 1); |
61 | +} |
|
57 | 62 | |
58 | 63 | // Load the important includes. |
59 | 64 | require_once($sourcedir . '/QueryString.php'); |
@@ -78,34 +83,38 @@ discard block |
||
78 | 83 | cleanRequest(); |
79 | 84 | |
80 | 85 | // Seed the random generator? |
81 | -if (empty($modSettings['rand_seed']) || mt_rand(1, 250) == 69) |
|
86 | +if (empty($modSettings['rand_seed']) || mt_rand(1, 250) == 69) { |
|
82 | 87 | smf_seed_generator(); |
88 | +} |
|
83 | 89 | |
84 | 90 | // Check on any hacking attempts. |
85 | -if (isset($_REQUEST['GLOBALS']) || isset($_COOKIE['GLOBALS'])) |
|
91 | +if (isset($_REQUEST['GLOBALS']) || isset($_COOKIE['GLOBALS'])) { |
|
86 | 92 | die('No direct access...'); |
87 | -elseif (isset($_REQUEST['ssi_theme']) && (int) $_REQUEST['ssi_theme'] == (int) $ssi_theme) |
|
93 | +} elseif (isset($_REQUEST['ssi_theme']) && (int) $_REQUEST['ssi_theme'] == (int) $ssi_theme) { |
|
88 | 94 | die('No direct access...'); |
89 | -elseif (isset($_COOKIE['ssi_theme']) && (int) $_COOKIE['ssi_theme'] == (int) $ssi_theme) |
|
95 | +} elseif (isset($_COOKIE['ssi_theme']) && (int) $_COOKIE['ssi_theme'] == (int) $ssi_theme) { |
|
90 | 96 | die('No direct access...'); |
91 | -elseif (isset($_REQUEST['ssi_layers'], $ssi_layers) && (@get_magic_quotes_gpc() ? stripslashes($_REQUEST['ssi_layers']) : $_REQUEST['ssi_layers']) == $ssi_layers) |
|
97 | +} elseif (isset($_REQUEST['ssi_layers'], $ssi_layers) && (@get_magic_quotes_gpc() ? stripslashes($_REQUEST['ssi_layers']) : $_REQUEST['ssi_layers']) == $ssi_layers) { |
|
92 | 98 | die('No direct access...'); |
93 | -if (isset($_REQUEST['context'])) |
|
99 | +} |
|
100 | +if (isset($_REQUEST['context'])) { |
|
94 | 101 | die('No direct access...'); |
102 | +} |
|
95 | 103 | |
96 | 104 | // Gzip output? (because it must be boolean and true, this can't be hacked.) |
97 | -if (isset($ssi_gzip) && $ssi_gzip === true && ini_get('zlib.output_compression') != '1' && ini_get('output_handler') != 'ob_gzhandler' && version_compare(PHP_VERSION, '4.2.0', '>=')) |
|
105 | +if (isset($ssi_gzip) && $ssi_gzip === true && ini_get('zlib.output_compression') != '1' && ini_get('output_handler') != 'ob_gzhandler' && version_compare(PHP_VERSION, '4.2.0', '>=')) { |
|
98 | 106 | ob_start('ob_gzhandler'); |
99 | -else |
|
107 | +} else { |
|
100 | 108 | $modSettings['enableCompressedOutput'] = '0'; |
109 | +} |
|
101 | 110 | |
102 | 111 | // Primarily, this is to fix the URLs... |
103 | 112 | ob_start('ob_sessrewrite'); |
104 | 113 | |
105 | 114 | // Start the session... known to scramble SSI includes in cases... |
106 | -if (!headers_sent()) |
|
115 | +if (!headers_sent()) { |
|
107 | 116 | loadSession(); |
108 | -else |
|
117 | +} else |
|
109 | 118 | { |
110 | 119 | if (isset($_COOKIE[session_name()]) || isset($_REQUEST[session_name()])) |
111 | 120 | { |
@@ -139,12 +148,14 @@ discard block |
||
139 | 148 | loadTheme(isset($ssi_theme) ? (int) $ssi_theme : 0); |
140 | 149 | |
141 | 150 | // @todo: probably not the best place, but somewhere it should be set... |
142 | -if (!headers_sent()) |
|
151 | +if (!headers_sent()) { |
|
143 | 152 | header('Content-Type: text/html; charset=' . (empty($modSettings['global_character_set']) ? (empty($txt['lang_character_set']) ? 'ISO-8859-1' : $txt['lang_character_set']) : $modSettings['global_character_set'])); |
153 | +} |
|
144 | 154 | |
145 | 155 | // Take care of any banning that needs to be done. |
146 | -if (isset($_REQUEST['ssi_ban']) || (isset($ssi_ban) && $ssi_ban === true)) |
|
156 | +if (isset($_REQUEST['ssi_ban']) || (isset($ssi_ban) && $ssi_ban === true)) { |
|
147 | 157 | is_not_banned(); |
158 | +} |
|
148 | 159 | |
149 | 160 | // Do we allow guests in here? |
150 | 161 | if (empty($ssi_guest_access) && empty($modSettings['allow_guestAccess']) && $user_info['is_guest'] && basename($_SERVER['PHP_SELF']) != 'SSI.php') |
@@ -159,17 +170,19 @@ discard block |
||
159 | 170 | { |
160 | 171 | $context['template_layers'] = $ssi_layers; |
161 | 172 | template_header(); |
162 | -} |
|
163 | -else |
|
173 | +} else { |
|
164 | 174 | setupThemeContext(); |
175 | +} |
|
165 | 176 | |
166 | 177 | // Make sure they didn't muss around with the settings... but only if it's not cli. |
167 | -if (isset($_SERVER['REMOTE_ADDR']) && !isset($_SERVER['is_cli']) && session_id() == '') |
|
178 | +if (isset($_SERVER['REMOTE_ADDR']) && !isset($_SERVER['is_cli']) && session_id() == '') { |
|
168 | 179 | trigger_error($txt['ssi_session_broken'], E_USER_NOTICE); |
180 | +} |
|
169 | 181 | |
170 | 182 | // Without visiting the forum this session variable might not be set on submit. |
171 | -if (!isset($_SESSION['USER_AGENT']) && (!isset($_GET['ssi_function']) || $_GET['ssi_function'] !== 'pollVote')) |
|
183 | +if (!isset($_SESSION['USER_AGENT']) && (!isset($_GET['ssi_function']) || $_GET['ssi_function'] !== 'pollVote')) { |
|
172 | 184 | $_SESSION['USER_AGENT'] = $_SERVER['HTTP_USER_AGENT']; |
185 | +} |
|
173 | 186 | |
174 | 187 | // Have the ability to easily add functions to SSI. |
175 | 188 | call_integration_hook('integrate_SSI'); |
@@ -178,11 +191,13 @@ discard block |
||
178 | 191 | if (basename($_SERVER['PHP_SELF']) == 'SSI.php') |
179 | 192 | { |
180 | 193 | // You shouldn't just access SSI.php directly by URL!! |
181 | - if (!isset($_GET['ssi_function'])) |
|
182 | - die(sprintf($txt['ssi_not_direct'], $user_info['is_admin'] ? '\'' . addslashes(__FILE__) . '\'' : '\'SSI.php\'')); |
|
194 | + if (!isset($_GET['ssi_function'])) { |
|
195 | + die(sprintf($txt['ssi_not_direct'], $user_info['is_admin'] ? '\'' . addslashes(__FILE__) . '\'' : '\'SSI.php\'')); |
|
196 | + } |
|
183 | 197 | // Call a function passed by GET. |
184 | - if (function_exists('ssi_' . $_GET['ssi_function']) && (!empty($modSettings['allow_guestAccess']) || !$user_info['is_guest'])) |
|
185 | - call_user_func('ssi_' . $_GET['ssi_function']); |
|
198 | + if (function_exists('ssi_' . $_GET['ssi_function']) && (!empty($modSettings['allow_guestAccess']) || !$user_info['is_guest'])) { |
|
199 | + call_user_func('ssi_' . $_GET['ssi_function']); |
|
200 | + } |
|
186 | 201 | exit; |
187 | 202 | } |
188 | 203 | |
@@ -199,9 +214,10 @@ discard block |
||
199 | 214 | */ |
200 | 215 | function ssi_shutdown() |
201 | 216 | { |
202 | - if (!isset($_GET['ssi_function']) || $_GET['ssi_function'] != 'shutdown') |
|
203 | - template_footer(); |
|
204 | -} |
|
217 | + if (!isset($_GET['ssi_function']) || $_GET['ssi_function'] != 'shutdown') { |
|
218 | + template_footer(); |
|
219 | + } |
|
220 | + } |
|
205 | 221 | |
206 | 222 | /** |
207 | 223 | * Display a welcome message, like: Hey, User, you have 0 messages, 0 are new. |
@@ -214,15 +230,17 @@ discard block |
||
214 | 230 | |
215 | 231 | if ($output_method == 'echo') |
216 | 232 | { |
217 | - if ($context['user']['is_guest']) |
|
218 | - echo sprintf($txt[$context['can_register'] ? 'welcome_guest_register' : 'welcome_guest'], $txt['guest_title'], $context['forum_name_html_safe'], $scripturl . '?action=login', 'return reqOverlayDiv(this.href, ' . JavaScriptEscape($txt['login']) . ');', $scripturl . '?action=signup'); |
|
219 | - else |
|
220 | - echo $txt['hello_member'], ' <strong>', $context['user']['name'], '</strong>', allowedTo('pm_read') ? ', ' . (empty($context['user']['messages']) ? $txt['msg_alert_no_messages'] : (($context['user']['messages'] == 1 ? sprintf($txt['msg_alert_one_message'], $scripturl . '?action=pm') : sprintf($txt['msg_alert_many_message'], $scripturl . '?action=pm', $context['user']['messages'])) . ', ' . ($context['user']['unread_messages'] == 1 ? $txt['msg_alert_one_new'] : sprintf($txt['msg_alert_many_new'], $context['user']['unread_messages'])))) : ''; |
|
233 | + if ($context['user']['is_guest']) { |
|
234 | + echo sprintf($txt[$context['can_register'] ? 'welcome_guest_register' : 'welcome_guest'], $txt['guest_title'], $context['forum_name_html_safe'], $scripturl . '?action=login', 'return reqOverlayDiv(this.href, ' . JavaScriptEscape($txt['login']) . ');', $scripturl . '?action=signup'); |
|
235 | + } else { |
|
236 | + echo $txt['hello_member'], ' <strong>', $context['user']['name'], '</strong>', allowedTo('pm_read') ? ', ' . (empty($context['user']['messages']) ? $txt['msg_alert_no_messages'] : (($context['user']['messages'] == 1 ? sprintf($txt['msg_alert_one_message'], $scripturl . '?action=pm') : sprintf($txt['msg_alert_many_message'], $scripturl . '?action=pm', $context['user']['messages'])) . ', ' . ($context['user']['unread_messages'] == 1 ? $txt['msg_alert_one_new'] : sprintf($txt['msg_alert_many_new'], $context['user']['unread_messages'])))) : ''; |
|
237 | + } |
|
221 | 238 | } |
222 | 239 | // Don't echo... then do what?! |
223 | - else |
|
224 | - return $context['user']; |
|
225 | -} |
|
240 | + else { |
|
241 | + return $context['user']; |
|
242 | + } |
|
243 | + } |
|
226 | 244 | |
227 | 245 | /** |
228 | 246 | * Display a menu bar, like is displayed at the top of the forum. |
@@ -233,12 +251,14 @@ discard block |
||
233 | 251 | { |
234 | 252 | global $context; |
235 | 253 | |
236 | - if ($output_method == 'echo') |
|
237 | - template_menu(); |
|
254 | + if ($output_method == 'echo') { |
|
255 | + template_menu(); |
|
256 | + } |
|
238 | 257 | // What else could this do? |
239 | - else |
|
240 | - return $context['menu_buttons']; |
|
241 | -} |
|
258 | + else { |
|
259 | + return $context['menu_buttons']; |
|
260 | + } |
|
261 | + } |
|
242 | 262 | |
243 | 263 | /** |
244 | 264 | * Show a logout link. |
@@ -250,20 +270,23 @@ discard block |
||
250 | 270 | { |
251 | 271 | global $context, $txt, $scripturl; |
252 | 272 | |
253 | - if ($redirect_to != '') |
|
254 | - $_SESSION['logout_url'] = $redirect_to; |
|
273 | + if ($redirect_to != '') { |
|
274 | + $_SESSION['logout_url'] = $redirect_to; |
|
275 | + } |
|
255 | 276 | |
256 | 277 | // Guests can't log out. |
257 | - if ($context['user']['is_guest']) |
|
258 | - return false; |
|
278 | + if ($context['user']['is_guest']) { |
|
279 | + return false; |
|
280 | + } |
|
259 | 281 | |
260 | 282 | $link = '<a href="' . $scripturl . '?action=logout;' . $context['session_var'] . '=' . $context['session_id'] . '">' . $txt['logout'] . '</a>'; |
261 | 283 | |
262 | - if ($output_method == 'echo') |
|
263 | - echo $link; |
|
264 | - else |
|
265 | - return $link; |
|
266 | -} |
|
284 | + if ($output_method == 'echo') { |
|
285 | + echo $link; |
|
286 | + } else { |
|
287 | + return $link; |
|
288 | + } |
|
289 | + } |
|
267 | 290 | |
268 | 291 | /** |
269 | 292 | * Recent post list: [board] Subject by Poster Date |
@@ -279,17 +302,17 @@ discard block |
||
279 | 302 | global $modSettings, $context; |
280 | 303 | |
281 | 304 | // Excluding certain boards... |
282 | - if ($exclude_boards === null && !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0) |
|
283 | - $exclude_boards = array($modSettings['recycle_board']); |
|
284 | - else |
|
285 | - $exclude_boards = empty($exclude_boards) ? array() : (is_array($exclude_boards) ? $exclude_boards : array($exclude_boards)); |
|
305 | + if ($exclude_boards === null && !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0) { |
|
306 | + $exclude_boards = array($modSettings['recycle_board']); |
|
307 | + } else { |
|
308 | + $exclude_boards = empty($exclude_boards) ? array() : (is_array($exclude_boards) ? $exclude_boards : array($exclude_boards)); |
|
309 | + } |
|
286 | 310 | |
287 | 311 | // What about including certain boards - note we do some protection here as pre-2.0 didn't have this parameter. |
288 | 312 | if (is_array($include_boards) || (int) $include_boards === $include_boards) |
289 | 313 | { |
290 | 314 | $include_boards = is_array($include_boards) ? $include_boards : array($include_boards); |
291 | - } |
|
292 | - elseif ($include_boards != null) |
|
315 | + } elseif ($include_boards != null) |
|
293 | 316 | { |
294 | 317 | $include_boards = array(); |
295 | 318 | } |
@@ -326,8 +349,9 @@ discard block |
||
326 | 349 | { |
327 | 350 | global $modSettings; |
328 | 351 | |
329 | - if (empty($post_ids)) |
|
330 | - return; |
|
352 | + if (empty($post_ids)) { |
|
353 | + return; |
|
354 | + } |
|
331 | 355 | |
332 | 356 | // Allow the user to request more than one - why not? |
333 | 357 | $post_ids = is_array($post_ids) ? $post_ids : array($post_ids); |
@@ -362,8 +386,9 @@ discard block |
||
362 | 386 | global $scripturl, $txt, $user_info; |
363 | 387 | global $modSettings, $smcFunc, $context; |
364 | 388 | |
365 | - if (!empty($modSettings['enable_likes'])) |
|
366 | - $context['can_like'] = allowedTo('likes_like'); |
|
389 | + if (!empty($modSettings['enable_likes'])) { |
|
390 | + $context['can_like'] = allowedTo('likes_like'); |
|
391 | + } |
|
367 | 392 | |
368 | 393 | // Find all the posts. Newer ones will have higher IDs. |
369 | 394 | $request = $smcFunc['db_query']('substring', ' |
@@ -429,12 +454,13 @@ discard block |
||
429 | 454 | ); |
430 | 455 | |
431 | 456 | // Get the likes for each message. |
432 | - if (!empty($modSettings['enable_likes'])) |
|
433 | - $posts[$row['id_msg']]['likes'] = array( |
|
457 | + if (!empty($modSettings['enable_likes'])) { |
|
458 | + $posts[$row['id_msg']]['likes'] = array( |
|
434 | 459 | 'count' => $row['likes'], |
435 | 460 | 'you' => in_array($row['id_msg'], prepareLikesContext($row['id_topic'])), |
436 | 461 | 'can_like' => !$context['user']['is_guest'] && $row['id_member'] != $context['user']['id'] && !empty($context['can_like']), |
437 | 462 | ); |
463 | + } |
|
438 | 464 | } |
439 | 465 | $smcFunc['db_free_result']($request); |
440 | 466 | |
@@ -442,13 +468,14 @@ discard block |
||
442 | 468 | call_integration_hook('integrate_ssi_queryPosts', array(&$posts)); |
443 | 469 | |
444 | 470 | // Just return it. |
445 | - if ($output_method != 'echo' || empty($posts)) |
|
446 | - return $posts; |
|
471 | + if ($output_method != 'echo' || empty($posts)) { |
|
472 | + return $posts; |
|
473 | + } |
|
447 | 474 | |
448 | 475 | echo ' |
449 | 476 | <table style="border: none" class="ssi_table">'; |
450 | - foreach ($posts as $post) |
|
451 | - echo ' |
|
477 | + foreach ($posts as $post) { |
|
478 | + echo ' |
|
452 | 479 | <tr> |
453 | 480 | <td style="text-align: right; vertical-align: top; white-space: nowrap"> |
454 | 481 | [', $post['board']['link'], '] |
@@ -462,6 +489,7 @@ discard block |
||
462 | 489 | ', $post['time'], ' |
463 | 490 | </td> |
464 | 491 | </tr>'; |
492 | + } |
|
465 | 493 | echo ' |
466 | 494 | </table>'; |
467 | 495 | } |
@@ -479,25 +507,26 @@ discard block |
||
479 | 507 | global $settings, $scripturl, $txt, $user_info; |
480 | 508 | global $modSettings, $smcFunc, $context; |
481 | 509 | |
482 | - if ($exclude_boards === null && !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0) |
|
483 | - $exclude_boards = array($modSettings['recycle_board']); |
|
484 | - else |
|
485 | - $exclude_boards = empty($exclude_boards) ? array() : (is_array($exclude_boards) ? $exclude_boards : array($exclude_boards)); |
|
510 | + if ($exclude_boards === null && !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0) { |
|
511 | + $exclude_boards = array($modSettings['recycle_board']); |
|
512 | + } else { |
|
513 | + $exclude_boards = empty($exclude_boards) ? array() : (is_array($exclude_boards) ? $exclude_boards : array($exclude_boards)); |
|
514 | + } |
|
486 | 515 | |
487 | 516 | // Only some boards?. |
488 | 517 | if (is_array($include_boards) || (int) $include_boards === $include_boards) |
489 | 518 | { |
490 | 519 | $include_boards = is_array($include_boards) ? $include_boards : array($include_boards); |
491 | - } |
|
492 | - elseif ($include_boards != null) |
|
520 | + } elseif ($include_boards != null) |
|
493 | 521 | { |
494 | 522 | $output_method = $include_boards; |
495 | 523 | $include_boards = array(); |
496 | 524 | } |
497 | 525 | |
498 | 526 | $icon_sources = array(); |
499 | - foreach ($context['stable_icons'] as $icon) |
|
500 | - $icon_sources[$icon] = 'images_url'; |
|
527 | + foreach ($context['stable_icons'] as $icon) { |
|
528 | + $icon_sources[$icon] = 'images_url'; |
|
529 | + } |
|
501 | 530 | |
502 | 531 | // Find all the posts in distinct topics. Newer ones will have higher IDs. |
503 | 532 | $request = $smcFunc['db_query']('substring', ' |
@@ -522,13 +551,15 @@ discard block |
||
522 | 551 | ) |
523 | 552 | ); |
524 | 553 | $topics = array(); |
525 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
526 | - $topics[$row['id_topic']] = $row; |
|
554 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
555 | + $topics[$row['id_topic']] = $row; |
|
556 | + } |
|
527 | 557 | $smcFunc['db_free_result']($request); |
528 | 558 | |
529 | 559 | // Did we find anything? If not, bail. |
530 | - if (empty($topics)) |
|
531 | - return array(); |
|
560 | + if (empty($topics)) { |
|
561 | + return array(); |
|
562 | + } |
|
532 | 563 | |
533 | 564 | $recycle_board = !empty($modSettings['recycle_enable']) && !empty($modSettings['recycle_board']) ? (int) $modSettings['recycle_board'] : 0; |
534 | 565 | |
@@ -556,19 +587,22 @@ discard block |
||
556 | 587 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
557 | 588 | { |
558 | 589 | $row['body'] = strip_tags(strtr(parse_bbc($row['body'], $row['smileys_enabled'], $row['id_msg']), array('<br>' => ' '))); |
559 | - if ($smcFunc['strlen']($row['body']) > 128) |
|
560 | - $row['body'] = $smcFunc['substr']($row['body'], 0, 128) . '...'; |
|
590 | + if ($smcFunc['strlen']($row['body']) > 128) { |
|
591 | + $row['body'] = $smcFunc['substr']($row['body'], 0, 128) . '...'; |
|
592 | + } |
|
561 | 593 | |
562 | 594 | // Censor the subject. |
563 | 595 | censorText($row['subject']); |
564 | 596 | censorText($row['body']); |
565 | 597 | |
566 | 598 | // Recycled icon |
567 | - if (!empty($recycle_board) && $topics[$row['id_topic']]['id_board']) |
|
568 | - $row['icon'] = 'recycled'; |
|
599 | + if (!empty($recycle_board) && $topics[$row['id_topic']]['id_board']) { |
|
600 | + $row['icon'] = 'recycled'; |
|
601 | + } |
|
569 | 602 | |
570 | - if (!empty($modSettings['messageIconChecks_enable']) && !isset($icon_sources[$row['icon']])) |
|
571 | - $icon_sources[$row['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
603 | + if (!empty($modSettings['messageIconChecks_enable']) && !isset($icon_sources[$row['icon']])) { |
|
604 | + $icon_sources[$row['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
605 | + } |
|
572 | 606 | |
573 | 607 | // Build the array. |
574 | 608 | $posts[] = array( |
@@ -607,13 +641,14 @@ discard block |
||
607 | 641 | call_integration_hook('integrate_ssi_recentTopics', array(&$posts)); |
608 | 642 | |
609 | 643 | // Just return it. |
610 | - if ($output_method != 'echo' || empty($posts)) |
|
611 | - return $posts; |
|
644 | + if ($output_method != 'echo' || empty($posts)) { |
|
645 | + return $posts; |
|
646 | + } |
|
612 | 647 | |
613 | 648 | echo ' |
614 | 649 | <table style="border: none" class="ssi_table">'; |
615 | - foreach ($posts as $post) |
|
616 | - echo ' |
|
650 | + foreach ($posts as $post) { |
|
651 | + echo ' |
|
617 | 652 | <tr> |
618 | 653 | <td style="text-align: right; vertical-align: top; white-space: nowrap"> |
619 | 654 | [', $post['board']['link'], '] |
@@ -627,6 +662,7 @@ discard block |
||
627 | 662 | ', $post['time'], ' |
628 | 663 | </td> |
629 | 664 | </tr>'; |
665 | + } |
|
630 | 666 | echo ' |
631 | 667 | </table>'; |
632 | 668 | } |
@@ -651,27 +687,30 @@ discard block |
||
651 | 687 | ) |
652 | 688 | ); |
653 | 689 | $return = array(); |
654 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
655 | - $return[] = array( |
|
690 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
691 | + $return[] = array( |
|
656 | 692 | 'id' => $row['id_member'], |
657 | 693 | 'name' => $row['real_name'], |
658 | 694 | 'href' => $scripturl . '?action=profile;u=' . $row['id_member'], |
659 | 695 | 'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>', |
660 | 696 | 'posts' => $row['posts'] |
661 | 697 | ); |
698 | + } |
|
662 | 699 | $smcFunc['db_free_result']($request); |
663 | 700 | |
664 | 701 | // If mods want to do somthing with this list of members, let them do that now. |
665 | 702 | call_integration_hook('integrate_ssi_topPoster', array(&$return)); |
666 | 703 | |
667 | 704 | // Just return all the top posters. |
668 | - if ($output_method != 'echo') |
|
669 | - return $return; |
|
705 | + if ($output_method != 'echo') { |
|
706 | + return $return; |
|
707 | + } |
|
670 | 708 | |
671 | 709 | // Make a quick array to list the links in. |
672 | 710 | $temp_array = array(); |
673 | - foreach ($return as $member) |
|
674 | - $temp_array[] = $member['link']; |
|
711 | + foreach ($return as $member) { |
|
712 | + $temp_array[] = $member['link']; |
|
713 | + } |
|
675 | 714 | |
676 | 715 | echo implode(', ', $temp_array); |
677 | 716 | } |
@@ -703,8 +742,8 @@ discard block |
||
703 | 742 | ) |
704 | 743 | ); |
705 | 744 | $boards = array(); |
706 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
707 | - $boards[] = array( |
|
745 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
746 | + $boards[] = array( |
|
708 | 747 | 'id' => $row['id_board'], |
709 | 748 | 'num_posts' => $row['num_posts'], |
710 | 749 | 'num_topics' => $row['num_topics'], |
@@ -713,14 +752,16 @@ discard block |
||
713 | 752 | 'href' => $scripturl . '?board=' . $row['id_board'] . '.0', |
714 | 753 | 'link' => '<a href="' . $scripturl . '?board=' . $row['id_board'] . '.0">' . $row['name'] . '</a>' |
715 | 754 | ); |
755 | + } |
|
716 | 756 | $smcFunc['db_free_result']($request); |
717 | 757 | |
718 | 758 | // If mods want to do somthing with this list of boards, let them do that now. |
719 | 759 | call_integration_hook('integrate_ssi_topBoards', array(&$boards)); |
720 | 760 | |
721 | 761 | // If we shouldn't output or have nothing to output, just jump out. |
722 | - if ($output_method != 'echo' || empty($boards)) |
|
723 | - return $boards; |
|
762 | + if ($output_method != 'echo' || empty($boards)) { |
|
763 | + return $boards; |
|
764 | + } |
|
724 | 765 | |
725 | 766 | echo ' |
726 | 767 | <table class="ssi_table"> |
@@ -729,13 +770,14 @@ discard block |
||
729 | 770 | <th style="text-align: left">', $txt['board_topics'], '</th> |
730 | 771 | <th style="text-align: left">', $txt['posts'], '</th> |
731 | 772 | </tr>'; |
732 | - foreach ($boards as $sBoard) |
|
733 | - echo ' |
|
773 | + foreach ($boards as $sBoard) { |
|
774 | + echo ' |
|
734 | 775 | <tr> |
735 | 776 | <td>', $sBoard['link'], $sBoard['new'] ? ' <a href="' . $sBoard['href'] . '"><span class="new_posts">' . $txt['new'] . '</span></a>' : '', '</td> |
736 | 777 | <td style="text-align: right">', comma_format($sBoard['num_topics']), '</td> |
737 | 778 | <td style="text-align: right">', comma_format($sBoard['num_posts']), '</td> |
738 | 779 | </tr>'; |
780 | + } |
|
739 | 781 | echo ' |
740 | 782 | </table>'; |
741 | 783 | } |
@@ -768,12 +810,13 @@ discard block |
||
768 | 810 | ) |
769 | 811 | ); |
770 | 812 | $topic_ids = array(); |
771 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
772 | - $topic_ids[] = $row['id_topic']; |
|
813 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
814 | + $topic_ids[] = $row['id_topic']; |
|
815 | + } |
|
773 | 816 | $smcFunc['db_free_result']($request); |
817 | + } else { |
|
818 | + $topic_ids = array(); |
|
774 | 819 | } |
775 | - else |
|
776 | - $topic_ids = array(); |
|
777 | 820 | |
778 | 821 | $request = $smcFunc['db_query']('', ' |
779 | 822 | SELECT m.subject, m.id_topic, t.num_views, t.num_replies |
@@ -812,8 +855,9 @@ discard block |
||
812 | 855 | // If mods want to do somthing with this list of topics, let them do that now. |
813 | 856 | call_integration_hook('integrate_ssi_topTopics', array(&$topics, $type)); |
814 | 857 | |
815 | - if ($output_method != 'echo' || empty($topics)) |
|
816 | - return $topics; |
|
858 | + if ($output_method != 'echo' || empty($topics)) { |
|
859 | + return $topics; |
|
860 | + } |
|
817 | 861 | |
818 | 862 | echo ' |
819 | 863 | <table class="ssi_table"> |
@@ -822,8 +866,8 @@ discard block |
||
822 | 866 | <th style="text-align: left">', $txt['views'], '</th> |
823 | 867 | <th style="text-align: left">', $txt['replies'], '</th> |
824 | 868 | </tr>'; |
825 | - foreach ($topics as $sTopic) |
|
826 | - echo ' |
|
869 | + foreach ($topics as $sTopic) { |
|
870 | + echo ' |
|
827 | 871 | <tr> |
828 | 872 | <td style="text-align: left"> |
829 | 873 | ', $sTopic['link'], ' |
@@ -831,6 +875,7 @@ discard block |
||
831 | 875 | <td style="text-align: right">', comma_format($sTopic['num_views']), '</td> |
832 | 876 | <td style="text-align: right">', comma_format($sTopic['num_replies']), '</td> |
833 | 877 | </tr>'; |
878 | + } |
|
834 | 879 | echo ' |
835 | 880 | </table>'; |
836 | 881 | } |
@@ -866,12 +911,13 @@ discard block |
||
866 | 911 | { |
867 | 912 | global $txt, $context; |
868 | 913 | |
869 | - if ($output_method == 'echo') |
|
870 | - echo ' |
|
914 | + if ($output_method == 'echo') { |
|
915 | + echo ' |
|
871 | 916 | ', sprintf($txt['welcome_newest_member'], $context['common_stats']['latest_member']['link']), '<br>'; |
872 | - else |
|
873 | - return $context['common_stats']['latest_member']; |
|
874 | -} |
|
917 | + } else { |
|
918 | + return $context['common_stats']['latest_member']; |
|
919 | + } |
|
920 | + } |
|
875 | 921 | |
876 | 922 | /** |
877 | 923 | * Fetches a random member. |
@@ -920,8 +966,9 @@ discard block |
||
920 | 966 | } |
921 | 967 | |
922 | 968 | // Just to be sure put the random generator back to something... random. |
923 | - if ($random_type != '') |
|
924 | - mt_srand(time()); |
|
969 | + if ($random_type != '') { |
|
970 | + mt_srand(time()); |
|
971 | + } |
|
925 | 972 | |
926 | 973 | return $result; |
927 | 974 | } |
@@ -934,8 +981,9 @@ discard block |
||
934 | 981 | */ |
935 | 982 | function ssi_fetchMember($member_ids = array(), $output_method = 'echo') |
936 | 983 | { |
937 | - if (empty($member_ids)) |
|
938 | - return; |
|
984 | + if (empty($member_ids)) { |
|
985 | + return; |
|
986 | + } |
|
939 | 987 | |
940 | 988 | // Can have more than one member if you really want... |
941 | 989 | $member_ids = is_array($member_ids) ? $member_ids : array($member_ids); |
@@ -960,8 +1008,9 @@ discard block |
||
960 | 1008 | */ |
961 | 1009 | function ssi_fetchGroupMembers($group_id = null, $output_method = 'echo') |
962 | 1010 | { |
963 | - if ($group_id === null) |
|
964 | - return; |
|
1011 | + if ($group_id === null) { |
|
1012 | + return; |
|
1013 | + } |
|
965 | 1014 | |
966 | 1015 | $query_where = ' |
967 | 1016 | id_group = {int:id_group} |
@@ -988,8 +1037,9 @@ discard block |
||
988 | 1037 | { |
989 | 1038 | global $smcFunc, $memberContext; |
990 | 1039 | |
991 | - if ($query_where === null) |
|
992 | - return; |
|
1040 | + if ($query_where === null) { |
|
1041 | + return; |
|
1042 | + } |
|
993 | 1043 | |
994 | 1044 | // Fetch the members in question. |
995 | 1045 | $request = $smcFunc['db_query']('', ' |
@@ -1002,12 +1052,14 @@ discard block |
||
1002 | 1052 | )) |
1003 | 1053 | ); |
1004 | 1054 | $members = array(); |
1005 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1006 | - $members[] = $row['id_member']; |
|
1055 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
1056 | + $members[] = $row['id_member']; |
|
1057 | + } |
|
1007 | 1058 | $smcFunc['db_free_result']($request); |
1008 | 1059 | |
1009 | - if (empty($members)) |
|
1010 | - return array(); |
|
1060 | + if (empty($members)) { |
|
1061 | + return array(); |
|
1062 | + } |
|
1011 | 1063 | |
1012 | 1064 | // If mods want to do somthing with this list of members, let them do that now. |
1013 | 1065 | call_integration_hook('integrate_ssi_queryMembers', array(&$members)); |
@@ -1016,23 +1068,25 @@ discard block |
||
1016 | 1068 | loadMemberData($members); |
1017 | 1069 | |
1018 | 1070 | // Draw the table! |
1019 | - if ($output_method == 'echo') |
|
1020 | - echo ' |
|
1071 | + if ($output_method == 'echo') { |
|
1072 | + echo ' |
|
1021 | 1073 | <table style="border: none" class="ssi_table">'; |
1074 | + } |
|
1022 | 1075 | |
1023 | 1076 | $query_members = array(); |
1024 | 1077 | foreach ($members as $member) |
1025 | 1078 | { |
1026 | 1079 | // Load their context data. |
1027 | - if (!loadMemberContext($member)) |
|
1028 | - continue; |
|
1080 | + if (!loadMemberContext($member)) { |
|
1081 | + continue; |
|
1082 | + } |
|
1029 | 1083 | |
1030 | 1084 | // Store this member's information. |
1031 | 1085 | $query_members[$member] = $memberContext[$member]; |
1032 | 1086 | |
1033 | 1087 | // Only do something if we're echo'ing. |
1034 | - if ($output_method == 'echo') |
|
1035 | - echo ' |
|
1088 | + if ($output_method == 'echo') { |
|
1089 | + echo ' |
|
1036 | 1090 | <tr> |
1037 | 1091 | <td style="text-align: right; vertical-align: top; white-space: nowrap"> |
1038 | 1092 | ', $query_members[$member]['link'], ' |
@@ -1040,12 +1094,14 @@ discard block |
||
1040 | 1094 | <br>', $query_members[$member]['avatar']['image'], ' |
1041 | 1095 | </td> |
1042 | 1096 | </tr>'; |
1097 | + } |
|
1043 | 1098 | } |
1044 | 1099 | |
1045 | 1100 | // End the table if appropriate. |
1046 | - if ($output_method == 'echo') |
|
1047 | - echo ' |
|
1101 | + if ($output_method == 'echo') { |
|
1102 | + echo ' |
|
1048 | 1103 | </table>'; |
1104 | + } |
|
1049 | 1105 | |
1050 | 1106 | // Send back the data. |
1051 | 1107 | return $query_members; |
@@ -1060,8 +1116,9 @@ discard block |
||
1060 | 1116 | { |
1061 | 1117 | global $txt, $scripturl, $modSettings, $smcFunc; |
1062 | 1118 | |
1063 | - if (!allowedTo('view_stats')) |
|
1064 | - return; |
|
1119 | + if (!allowedTo('view_stats')) { |
|
1120 | + return; |
|
1121 | + } |
|
1065 | 1122 | |
1066 | 1123 | $totals = array( |
1067 | 1124 | 'members' => $modSettings['totalMembers'], |
@@ -1090,8 +1147,9 @@ discard block |
||
1090 | 1147 | // If mods want to do somthing with the board stats, let them do that now. |
1091 | 1148 | call_integration_hook('integrate_ssi_boardStats', array(&$totals)); |
1092 | 1149 | |
1093 | - if ($output_method != 'echo') |
|
1094 | - return $totals; |
|
1150 | + if ($output_method != 'echo') { |
|
1151 | + return $totals; |
|
1152 | + } |
|
1095 | 1153 | |
1096 | 1154 | echo ' |
1097 | 1155 | ', $txt['total_members'], ': <a href="', $scripturl . '?action=mlist">', comma_format($totals['members']), '</a><br> |
@@ -1120,8 +1178,8 @@ discard block |
||
1120 | 1178 | call_integration_hook('integrate_ssi_whosOnline', array(&$return)); |
1121 | 1179 | |
1122 | 1180 | // Add some redundancy for backwards compatibility reasons. |
1123 | - if ($output_method != 'echo') |
|
1124 | - return $return + array( |
|
1181 | + if ($output_method != 'echo') { |
|
1182 | + return $return + array( |
|
1125 | 1183 | 'users' => $return['users_online'], |
1126 | 1184 | 'guests' => $return['num_guests'], |
1127 | 1185 | 'hidden' => $return['num_users_hidden'], |
@@ -1129,29 +1187,35 @@ discard block |
||
1129 | 1187 | 'num_users' => $return['num_users_online'], |
1130 | 1188 | 'total_users' => $return['num_users_online'] + $return['num_guests'], |
1131 | 1189 | ); |
1190 | + } |
|
1132 | 1191 | |
1133 | 1192 | echo ' |
1134 | 1193 | ', comma_format($return['num_guests']), ' ', $return['num_guests'] == 1 ? $txt['guest'] : $txt['guests'], ', ', comma_format($return['num_users_online']), ' ', $return['num_users_online'] == 1 ? $txt['user'] : $txt['users']; |
1135 | 1194 | |
1136 | 1195 | $bracketList = array(); |
1137 | - if (!empty($user_info['buddies'])) |
|
1138 | - $bracketList[] = comma_format($return['num_buddies']) . ' ' . ($return['num_buddies'] == 1 ? $txt['buddy'] : $txt['buddies']); |
|
1139 | - if (!empty($return['num_spiders'])) |
|
1140 | - $bracketList[] = comma_format($return['num_spiders']) . ' ' . ($return['num_spiders'] == 1 ? $txt['spider'] : $txt['spiders']); |
|
1141 | - if (!empty($return['num_users_hidden'])) |
|
1142 | - $bracketList[] = comma_format($return['num_users_hidden']) . ' ' . $txt['hidden']; |
|
1196 | + if (!empty($user_info['buddies'])) { |
|
1197 | + $bracketList[] = comma_format($return['num_buddies']) . ' ' . ($return['num_buddies'] == 1 ? $txt['buddy'] : $txt['buddies']); |
|
1198 | + } |
|
1199 | + if (!empty($return['num_spiders'])) { |
|
1200 | + $bracketList[] = comma_format($return['num_spiders']) . ' ' . ($return['num_spiders'] == 1 ? $txt['spider'] : $txt['spiders']); |
|
1201 | + } |
|
1202 | + if (!empty($return['num_users_hidden'])) { |
|
1203 | + $bracketList[] = comma_format($return['num_users_hidden']) . ' ' . $txt['hidden']; |
|
1204 | + } |
|
1143 | 1205 | |
1144 | - if (!empty($bracketList)) |
|
1145 | - echo ' (' . implode(', ', $bracketList) . ')'; |
|
1206 | + if (!empty($bracketList)) { |
|
1207 | + echo ' (' . implode(', ', $bracketList) . ')'; |
|
1208 | + } |
|
1146 | 1209 | |
1147 | 1210 | echo '<br> |
1148 | 1211 | ', implode(', ', $return['list_users_online']); |
1149 | 1212 | |
1150 | 1213 | // Showing membergroups? |
1151 | - if (!empty($settings['show_group_key']) && !empty($return['membergroups'])) |
|
1152 | - echo '<br> |
|
1214 | + if (!empty($settings['show_group_key']) && !empty($return['membergroups'])) { |
|
1215 | + echo '<br> |
|
1153 | 1216 | [' . implode('] [', $return['membergroups']) . ']'; |
1154 | -} |
|
1217 | + } |
|
1218 | + } |
|
1155 | 1219 | |
1156 | 1220 | /** |
1157 | 1221 | * Just like whosOnline except it also logs the online presence. |
@@ -1162,11 +1226,12 @@ discard block |
||
1162 | 1226 | { |
1163 | 1227 | writeLog(); |
1164 | 1228 | |
1165 | - if ($output_method != 'echo') |
|
1166 | - return ssi_whosOnline($output_method); |
|
1167 | - else |
|
1168 | - ssi_whosOnline($output_method); |
|
1169 | -} |
|
1229 | + if ($output_method != 'echo') { |
|
1230 | + return ssi_whosOnline($output_method); |
|
1231 | + } else { |
|
1232 | + ssi_whosOnline($output_method); |
|
1233 | + } |
|
1234 | + } |
|
1170 | 1235 | |
1171 | 1236 | // Shows a login box. |
1172 | 1237 | /** |
@@ -1179,11 +1244,13 @@ discard block |
||
1179 | 1244 | { |
1180 | 1245 | global $scripturl, $txt, $user_info, $context; |
1181 | 1246 | |
1182 | - if ($redirect_to != '') |
|
1183 | - $_SESSION['login_url'] = $redirect_to; |
|
1247 | + if ($redirect_to != '') { |
|
1248 | + $_SESSION['login_url'] = $redirect_to; |
|
1249 | + } |
|
1184 | 1250 | |
1185 | - if ($output_method != 'echo' || !$user_info['is_guest']) |
|
1186 | - return $user_info['is_guest']; |
|
1251 | + if ($output_method != 'echo' || !$user_info['is_guest']) { |
|
1252 | + return $user_info['is_guest']; |
|
1253 | + } |
|
1187 | 1254 | |
1188 | 1255 | // Create a login token |
1189 | 1256 | createToken('login'); |
@@ -1235,8 +1302,9 @@ discard block |
||
1235 | 1302 | |
1236 | 1303 | $boardsAllowed = array_intersect(boardsAllowedTo('poll_view'), boardsAllowedTo('poll_vote')); |
1237 | 1304 | |
1238 | - if (empty($boardsAllowed)) |
|
1239 | - return array(); |
|
1305 | + if (empty($boardsAllowed)) { |
|
1306 | + return array(); |
|
1307 | + } |
|
1240 | 1308 | |
1241 | 1309 | $request = $smcFunc['db_query']('', ' |
1242 | 1310 | SELECT p.id_poll, p.question, t.id_topic, p.max_votes, p.guest_vote, p.hide_results, p.expire_time |
@@ -1269,12 +1337,14 @@ discard block |
||
1269 | 1337 | $smcFunc['db_free_result']($request); |
1270 | 1338 | |
1271 | 1339 | // This user has voted on all the polls. |
1272 | - if (empty($row) || !is_array($row)) |
|
1273 | - return array(); |
|
1340 | + if (empty($row) || !is_array($row)) { |
|
1341 | + return array(); |
|
1342 | + } |
|
1274 | 1343 | |
1275 | 1344 | // If this is a guest who's voted we'll through ourselves to show poll to show the results. |
1276 | - if ($user_info['is_guest'] && (!$row['guest_vote'] || (isset($_COOKIE['guest_poll_vote']) && in_array($row['id_poll'], explode(',', $_COOKIE['guest_poll_vote']))))) |
|
1277 | - return ssi_showPoll($row['id_topic'], $output_method); |
|
1345 | + if ($user_info['is_guest'] && (!$row['guest_vote'] || (isset($_COOKIE['guest_poll_vote']) && in_array($row['id_poll'], explode(',', $_COOKIE['guest_poll_vote']))))) { |
|
1346 | + return ssi_showPoll($row['id_topic'], $output_method); |
|
1347 | + } |
|
1278 | 1348 | |
1279 | 1349 | $request = $smcFunc['db_query']('', ' |
1280 | 1350 | SELECT COUNT(DISTINCT id_member) |
@@ -1338,8 +1408,9 @@ discard block |
||
1338 | 1408 | // If mods want to do somthing with this list of polls, let them do that now. |
1339 | 1409 | call_integration_hook('integrate_ssi_recentPoll', array(&$return, $topPollInstead)); |
1340 | 1410 | |
1341 | - if ($output_method != 'echo') |
|
1342 | - return $return; |
|
1411 | + if ($output_method != 'echo') { |
|
1412 | + return $return; |
|
1413 | + } |
|
1343 | 1414 | |
1344 | 1415 | if ($allow_view_results) |
1345 | 1416 | { |
@@ -1348,19 +1419,20 @@ discard block |
||
1348 | 1419 | <strong>', $return['question'], '</strong><br> |
1349 | 1420 | ', !empty($return['allowed_warning']) ? $return['allowed_warning'] . '<br>' : ''; |
1350 | 1421 | |
1351 | - foreach ($return['options'] as $option) |
|
1352 | - echo ' |
|
1422 | + foreach ($return['options'] as $option) { |
|
1423 | + echo ' |
|
1353 | 1424 | <label for="', $option['id'], '">', $option['vote_button'], ' ', $option['option'], '</label><br>'; |
1425 | + } |
|
1354 | 1426 | |
1355 | 1427 | echo ' |
1356 | 1428 | <input type="submit" value="', $txt['poll_vote'], '" class="button"> |
1357 | 1429 | <input type="hidden" name="poll" value="', $return['id'], '"> |
1358 | 1430 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
1359 | 1431 | </form>'; |
1432 | + } else { |
|
1433 | + echo $txt['poll_cannot_see']; |
|
1434 | + } |
|
1360 | 1435 | } |
1361 | - else |
|
1362 | - echo $txt['poll_cannot_see']; |
|
1363 | -} |
|
1364 | 1436 | |
1365 | 1437 | /** |
1366 | 1438 | * Shows the poll from the specified topic |
@@ -1374,13 +1446,15 @@ discard block |
||
1374 | 1446 | |
1375 | 1447 | $boardsAllowed = boardsAllowedTo('poll_view'); |
1376 | 1448 | |
1377 | - if (empty($boardsAllowed)) |
|
1378 | - return array(); |
|
1449 | + if (empty($boardsAllowed)) { |
|
1450 | + return array(); |
|
1451 | + } |
|
1379 | 1452 | |
1380 | - if ($topic === null && isset($_REQUEST['ssi_topic'])) |
|
1381 | - $topic = (int) $_REQUEST['ssi_topic']; |
|
1382 | - else |
|
1383 | - $topic = (int) $topic; |
|
1453 | + if ($topic === null && isset($_REQUEST['ssi_topic'])) { |
|
1454 | + $topic = (int) $_REQUEST['ssi_topic']; |
|
1455 | + } else { |
|
1456 | + $topic = (int) $topic; |
|
1457 | + } |
|
1384 | 1458 | |
1385 | 1459 | $request = $smcFunc['db_query']('', ' |
1386 | 1460 | SELECT |
@@ -1401,17 +1475,18 @@ discard block |
||
1401 | 1475 | ); |
1402 | 1476 | |
1403 | 1477 | // Either this topic has no poll, or the user cannot view it. |
1404 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1405 | - return array(); |
|
1478 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1479 | + return array(); |
|
1480 | + } |
|
1406 | 1481 | |
1407 | 1482 | $row = $smcFunc['db_fetch_assoc']($request); |
1408 | 1483 | $smcFunc['db_free_result']($request); |
1409 | 1484 | |
1410 | 1485 | // Check if they can vote. |
1411 | 1486 | $already_voted = false; |
1412 | - if (!empty($row['expire_time']) && $row['expire_time'] < time()) |
|
1413 | - $allow_vote = false; |
|
1414 | - elseif ($user_info['is_guest']) |
|
1487 | + if (!empty($row['expire_time']) && $row['expire_time'] < time()) { |
|
1488 | + $allow_vote = false; |
|
1489 | + } elseif ($user_info['is_guest']) |
|
1415 | 1490 | { |
1416 | 1491 | // There's a difference between "allowed to vote" and "already voted"... |
1417 | 1492 | $allow_vote = $row['guest_vote']; |
@@ -1421,10 +1496,9 @@ discard block |
||
1421 | 1496 | { |
1422 | 1497 | $already_voted = true; |
1423 | 1498 | } |
1424 | - } |
|
1425 | - elseif (!empty($row['voting_locked']) || !allowedTo('poll_vote', $row['id_board'])) |
|
1426 | - $allow_vote = false; |
|
1427 | - else |
|
1499 | + } elseif (!empty($row['voting_locked']) || !allowedTo('poll_vote', $row['id_board'])) { |
|
1500 | + $allow_vote = false; |
|
1501 | + } else |
|
1428 | 1502 | { |
1429 | 1503 | $request = $smcFunc['db_query']('', ' |
1430 | 1504 | SELECT id_member |
@@ -1506,8 +1580,9 @@ discard block |
||
1506 | 1580 | // If mods want to do somthing with this poll, let them do that now. |
1507 | 1581 | call_integration_hook('integrate_ssi_showPoll', array(&$return)); |
1508 | 1582 | |
1509 | - if ($output_method != 'echo') |
|
1510 | - return $return; |
|
1583 | + if ($output_method != 'echo') { |
|
1584 | + return $return; |
|
1585 | + } |
|
1511 | 1586 | |
1512 | 1587 | if ($return['allow_vote']) |
1513 | 1588 | { |
@@ -1516,17 +1591,17 @@ discard block |
||
1516 | 1591 | <strong>', $return['question'], '</strong><br> |
1517 | 1592 | ', !empty($return['allowed_warning']) ? $return['allowed_warning'] . '<br>' : ''; |
1518 | 1593 | |
1519 | - foreach ($return['options'] as $option) |
|
1520 | - echo ' |
|
1594 | + foreach ($return['options'] as $option) { |
|
1595 | + echo ' |
|
1521 | 1596 | <label for="', $option['id'], '">', $option['vote_button'], ' ', $option['option'], '</label><br>'; |
1597 | + } |
|
1522 | 1598 | |
1523 | 1599 | echo ' |
1524 | 1600 | <input type="submit" value="', $txt['poll_vote'], '" class="button"> |
1525 | 1601 | <input type="hidden" name="poll" value="', $return['id'], '"> |
1526 | 1602 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
1527 | 1603 | </form>'; |
1528 | - } |
|
1529 | - else |
|
1604 | + } else |
|
1530 | 1605 | { |
1531 | 1606 | echo ' |
1532 | 1607 | <div class="ssi_poll"> |
@@ -1606,27 +1681,32 @@ discard block |
||
1606 | 1681 | 'is_approved' => 1, |
1607 | 1682 | ) |
1608 | 1683 | ); |
1609 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
1610 | - die; |
|
1684 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
1685 | + die; |
|
1686 | + } |
|
1611 | 1687 | $row = $smcFunc['db_fetch_assoc']($request); |
1612 | 1688 | $smcFunc['db_free_result']($request); |
1613 | 1689 | |
1614 | - if (!empty($row['voting_locked']) || ($row['selected'] != -1 && !$user_info['is_guest']) || (!empty($row['expire_time']) && time() > $row['expire_time'])) |
|
1615 | - redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1690 | + if (!empty($row['voting_locked']) || ($row['selected'] != -1 && !$user_info['is_guest']) || (!empty($row['expire_time']) && time() > $row['expire_time'])) { |
|
1691 | + redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1692 | + } |
|
1616 | 1693 | |
1617 | 1694 | // Too many options checked? |
1618 | - if (count($_REQUEST['options']) > $row['max_votes']) |
|
1619 | - redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1695 | + if (count($_REQUEST['options']) > $row['max_votes']) { |
|
1696 | + redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1697 | + } |
|
1620 | 1698 | |
1621 | 1699 | // It's a guest who has already voted? |
1622 | 1700 | if ($user_info['is_guest']) |
1623 | 1701 | { |
1624 | 1702 | // Guest voting disabled? |
1625 | - if (!$row['guest_vote']) |
|
1626 | - redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1703 | + if (!$row['guest_vote']) { |
|
1704 | + redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1705 | + } |
|
1627 | 1706 | // Already voted? |
1628 | - elseif (isset($_COOKIE['guest_poll_vote']) && in_array($row['id_poll'], explode(',', $_COOKIE['guest_poll_vote']))) |
|
1629 | - redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1707 | + elseif (isset($_COOKIE['guest_poll_vote']) && in_array($row['id_poll'], explode(',', $_COOKIE['guest_poll_vote']))) { |
|
1708 | + redirectexit('topic=' . $row['id_topic'] . '.0'); |
|
1709 | + } |
|
1630 | 1710 | } |
1631 | 1711 | |
1632 | 1712 | $sOptions = array(); |
@@ -1680,11 +1760,13 @@ discard block |
||
1680 | 1760 | { |
1681 | 1761 | global $scripturl, $txt, $context; |
1682 | 1762 | |
1683 | - if (!allowedTo('search_posts')) |
|
1684 | - return; |
|
1763 | + if (!allowedTo('search_posts')) { |
|
1764 | + return; |
|
1765 | + } |
|
1685 | 1766 | |
1686 | - if ($output_method != 'echo') |
|
1687 | - return $scripturl . '?action=search'; |
|
1767 | + if ($output_method != 'echo') { |
|
1768 | + return $scripturl . '?action=search'; |
|
1769 | + } |
|
1688 | 1770 | |
1689 | 1771 | echo ' |
1690 | 1772 | <form action="', $scripturl, '?action=search2" method="post" accept-charset="', $context['character_set'], '"> |
@@ -1706,8 +1788,9 @@ discard block |
||
1706 | 1788 | // If mods want to do somthing with the news, let them do that now. Don't need to pass the news line itself, since it is already in $context. |
1707 | 1789 | call_integration_hook('integrate_ssi_news'); |
1708 | 1790 | |
1709 | - if ($output_method != 'echo') |
|
1710 | - return $context['random_news_line']; |
|
1791 | + if ($output_method != 'echo') { |
|
1792 | + return $context['random_news_line']; |
|
1793 | + } |
|
1711 | 1794 | |
1712 | 1795 | echo $context['random_news_line']; |
1713 | 1796 | } |
@@ -1721,8 +1804,9 @@ discard block |
||
1721 | 1804 | { |
1722 | 1805 | global $scripturl, $modSettings, $user_info; |
1723 | 1806 | |
1724 | - if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view') || !allowedTo('profile_view')) |
|
1725 | - return; |
|
1807 | + if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view') || !allowedTo('profile_view')) { |
|
1808 | + return; |
|
1809 | + } |
|
1726 | 1810 | |
1727 | 1811 | $eventOptions = array( |
1728 | 1812 | 'include_birthdays' => true, |
@@ -1733,13 +1817,15 @@ discard block |
||
1733 | 1817 | // The ssi_todaysCalendar variants all use the same hook and just pass on $eventOptions so the hooked code can distinguish different cases if necessary |
1734 | 1818 | call_integration_hook('integrate_ssi_calendar', array(&$return, $eventOptions)); |
1735 | 1819 | |
1736 | - if ($output_method != 'echo') |
|
1737 | - return $return['calendar_birthdays']; |
|
1820 | + if ($output_method != 'echo') { |
|
1821 | + return $return['calendar_birthdays']; |
|
1822 | + } |
|
1738 | 1823 | |
1739 | - foreach ($return['calendar_birthdays'] as $member) |
|
1740 | - echo ' |
|
1824 | + foreach ($return['calendar_birthdays'] as $member) { |
|
1825 | + echo ' |
|
1741 | 1826 | <a href="', $scripturl, '?action=profile;u=', $member['id'], '"><span class="fix_rtl_names">' . $member['name'] . '</span>' . (isset($member['age']) ? ' (' . $member['age'] . ')' : '') . '</a>' . (!$member['is_last'] ? ', ' : ''); |
1742 | -} |
|
1827 | + } |
|
1828 | + } |
|
1743 | 1829 | |
1744 | 1830 | /** |
1745 | 1831 | * Shows today's holidays. |
@@ -1750,8 +1836,9 @@ discard block |
||
1750 | 1836 | { |
1751 | 1837 | global $modSettings, $user_info; |
1752 | 1838 | |
1753 | - if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) |
|
1754 | - return; |
|
1839 | + if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) { |
|
1840 | + return; |
|
1841 | + } |
|
1755 | 1842 | |
1756 | 1843 | $eventOptions = array( |
1757 | 1844 | 'include_holidays' => true, |
@@ -1762,8 +1849,9 @@ discard block |
||
1762 | 1849 | // The ssi_todaysCalendar variants all use the same hook and just pass on $eventOptions so the hooked code can distinguish different cases if necessary |
1763 | 1850 | call_integration_hook('integrate_ssi_calendar', array(&$return, $eventOptions)); |
1764 | 1851 | |
1765 | - if ($output_method != 'echo') |
|
1766 | - return $return['calendar_holidays']; |
|
1852 | + if ($output_method != 'echo') { |
|
1853 | + return $return['calendar_holidays']; |
|
1854 | + } |
|
1767 | 1855 | |
1768 | 1856 | echo ' |
1769 | 1857 | ', implode(', ', $return['calendar_holidays']); |
@@ -1777,8 +1865,9 @@ discard block |
||
1777 | 1865 | { |
1778 | 1866 | global $modSettings, $user_info; |
1779 | 1867 | |
1780 | - if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) |
|
1781 | - return; |
|
1868 | + if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) { |
|
1869 | + return; |
|
1870 | + } |
|
1782 | 1871 | |
1783 | 1872 | $eventOptions = array( |
1784 | 1873 | 'include_events' => true, |
@@ -1789,14 +1878,16 @@ discard block |
||
1789 | 1878 | // The ssi_todaysCalendar variants all use the same hook and just pass on $eventOptions so the hooked code can distinguish different cases if necessary |
1790 | 1879 | call_integration_hook('integrate_ssi_calendar', array(&$return, $eventOptions)); |
1791 | 1880 | |
1792 | - if ($output_method != 'echo') |
|
1793 | - return $return['calendar_events']; |
|
1881 | + if ($output_method != 'echo') { |
|
1882 | + return $return['calendar_events']; |
|
1883 | + } |
|
1794 | 1884 | |
1795 | 1885 | foreach ($return['calendar_events'] as $event) |
1796 | 1886 | { |
1797 | - if ($event['can_edit']) |
|
1798 | - echo ' |
|
1887 | + if ($event['can_edit']) { |
|
1888 | + echo ' |
|
1799 | 1889 | <a href="' . $event['modify_href'] . '" style="color: #ff0000;">*</a> '; |
1890 | + } |
|
1800 | 1891 | echo ' |
1801 | 1892 | ' . $event['link'] . (!$event['is_last'] ? ', ' : ''); |
1802 | 1893 | } |
@@ -1811,8 +1902,9 @@ discard block |
||
1811 | 1902 | { |
1812 | 1903 | global $modSettings, $txt, $scripturl, $user_info; |
1813 | 1904 | |
1814 | - if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) |
|
1815 | - return; |
|
1905 | + if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) { |
|
1906 | + return; |
|
1907 | + } |
|
1816 | 1908 | |
1817 | 1909 | $eventOptions = array( |
1818 | 1910 | 'include_birthdays' => allowedTo('profile_view'), |
@@ -1825,19 +1917,22 @@ discard block |
||
1825 | 1917 | // The ssi_todaysCalendar variants all use the same hook and just pass on $eventOptions so the hooked code can distinguish different cases if necessary |
1826 | 1918 | call_integration_hook('integrate_ssi_calendar', array(&$return, $eventOptions)); |
1827 | 1919 | |
1828 | - if ($output_method != 'echo') |
|
1829 | - return $return; |
|
1920 | + if ($output_method != 'echo') { |
|
1921 | + return $return; |
|
1922 | + } |
|
1830 | 1923 | |
1831 | - if (!empty($return['calendar_holidays'])) |
|
1832 | - echo ' |
|
1924 | + if (!empty($return['calendar_holidays'])) { |
|
1925 | + echo ' |
|
1833 | 1926 | <span class="holiday">' . $txt['calendar_prompt'] . ' ' . implode(', ', $return['calendar_holidays']) . '<br></span>'; |
1927 | + } |
|
1834 | 1928 | if (!empty($return['calendar_birthdays'])) |
1835 | 1929 | { |
1836 | 1930 | echo ' |
1837 | 1931 | <span class="birthday">' . $txt['birthdays_upcoming'] . '</span> '; |
1838 | - foreach ($return['calendar_birthdays'] as $member) |
|
1839 | - echo ' |
|
1932 | + foreach ($return['calendar_birthdays'] as $member) { |
|
1933 | + echo ' |
|
1840 | 1934 | <a href="', $scripturl, '?action=profile;u=', $member['id'], '"><span class="fix_rtl_names">', $member['name'], '</span>', isset($member['age']) ? ' (' . $member['age'] . ')' : '', '</a>', !$member['is_last'] ? ', ' : ''; |
1935 | + } |
|
1841 | 1936 | echo ' |
1842 | 1937 | <br>'; |
1843 | 1938 | } |
@@ -1847,9 +1942,10 @@ discard block |
||
1847 | 1942 | <span class="event">' . $txt['events_upcoming'] . '</span> '; |
1848 | 1943 | foreach ($return['calendar_events'] as $event) |
1849 | 1944 | { |
1850 | - if ($event['can_edit']) |
|
1851 | - echo ' |
|
1945 | + if ($event['can_edit']) { |
|
1946 | + echo ' |
|
1852 | 1947 | <a href="' . $event['modify_href'] . '" style="color: #ff0000;">*</a> '; |
1948 | + } |
|
1853 | 1949 | echo ' |
1854 | 1950 | ' . $event['link'] . (!$event['is_last'] ? ', ' : ''); |
1855 | 1951 | } |
@@ -1873,25 +1969,29 @@ discard block |
||
1873 | 1969 | loadLanguage('Stats'); |
1874 | 1970 | |
1875 | 1971 | // Must be integers.... |
1876 | - if ($limit === null) |
|
1877 | - $limit = isset($_GET['limit']) ? (int) $_GET['limit'] : 5; |
|
1878 | - else |
|
1879 | - $limit = (int) $limit; |
|
1880 | - |
|
1881 | - if ($start === null) |
|
1882 | - $start = isset($_GET['start']) ? (int) $_GET['start'] : 0; |
|
1883 | - else |
|
1884 | - $start = (int) $start; |
|
1885 | - |
|
1886 | - if ($board !== null) |
|
1887 | - $board = (int) $board; |
|
1888 | - elseif (isset($_GET['board'])) |
|
1889 | - $board = (int) $_GET['board']; |
|
1890 | - |
|
1891 | - if ($length === null) |
|
1892 | - $length = isset($_GET['length']) ? (int) $_GET['length'] : 0; |
|
1893 | - else |
|
1894 | - $length = (int) $length; |
|
1972 | + if ($limit === null) { |
|
1973 | + $limit = isset($_GET['limit']) ? (int) $_GET['limit'] : 5; |
|
1974 | + } else { |
|
1975 | + $limit = (int) $limit; |
|
1976 | + } |
|
1977 | + |
|
1978 | + if ($start === null) { |
|
1979 | + $start = isset($_GET['start']) ? (int) $_GET['start'] : 0; |
|
1980 | + } else { |
|
1981 | + $start = (int) $start; |
|
1982 | + } |
|
1983 | + |
|
1984 | + if ($board !== null) { |
|
1985 | + $board = (int) $board; |
|
1986 | + } elseif (isset($_GET['board'])) { |
|
1987 | + $board = (int) $_GET['board']; |
|
1988 | + } |
|
1989 | + |
|
1990 | + if ($length === null) { |
|
1991 | + $length = isset($_GET['length']) ? (int) $_GET['length'] : 0; |
|
1992 | + } else { |
|
1993 | + $length = (int) $length; |
|
1994 | + } |
|
1895 | 1995 | |
1896 | 1996 | $limit = max(0, $limit); |
1897 | 1997 | $start = max(0, $start); |
@@ -1909,17 +2009,19 @@ discard block |
||
1909 | 2009 | ); |
1910 | 2010 | if ($smcFunc['db_num_rows']($request) == 0) |
1911 | 2011 | { |
1912 | - if ($output_method == 'echo') |
|
1913 | - die($txt['ssi_no_guests']); |
|
1914 | - else |
|
1915 | - return array(); |
|
2012 | + if ($output_method == 'echo') { |
|
2013 | + die($txt['ssi_no_guests']); |
|
2014 | + } else { |
|
2015 | + return array(); |
|
2016 | + } |
|
1916 | 2017 | } |
1917 | 2018 | list ($board) = $smcFunc['db_fetch_row']($request); |
1918 | 2019 | $smcFunc['db_free_result']($request); |
1919 | 2020 | |
1920 | 2021 | $icon_sources = array(); |
1921 | - foreach ($context['stable_icons'] as $icon) |
|
1922 | - $icon_sources[$icon] = 'images_url'; |
|
2022 | + foreach ($context['stable_icons'] as $icon) { |
|
2023 | + $icon_sources[$icon] = 'images_url'; |
|
2024 | + } |
|
1923 | 2025 | |
1924 | 2026 | if (!empty($modSettings['enable_likes'])) |
1925 | 2027 | { |
@@ -1943,12 +2045,14 @@ discard block |
||
1943 | 2045 | ) |
1944 | 2046 | ); |
1945 | 2047 | $posts = array(); |
1946 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
1947 | - $posts[] = $row['id_first_msg']; |
|
2048 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2049 | + $posts[] = $row['id_first_msg']; |
|
2050 | + } |
|
1948 | 2051 | $smcFunc['db_free_result']($request); |
1949 | 2052 | |
1950 | - if (empty($posts)) |
|
1951 | - return array(); |
|
2053 | + if (empty($posts)) { |
|
2054 | + return array(); |
|
2055 | + } |
|
1952 | 2056 | |
1953 | 2057 | // Find the posts. |
1954 | 2058 | $request = $smcFunc['db_query']('', ' |
@@ -1978,24 +2082,28 @@ discard block |
||
1978 | 2082 | $last_space = strrpos($row['body'], ' '); |
1979 | 2083 | $last_open = strrpos($row['body'], '<'); |
1980 | 2084 | $last_close = strrpos($row['body'], '>'); |
1981 | - if (empty($last_space) || ($last_space == $last_open + 3 && (empty($last_close) || (!empty($last_close) && $last_close < $last_open))) || $last_space < $last_open || $last_open == $length - 6) |
|
1982 | - $cutoff = $last_open; |
|
1983 | - elseif (empty($last_close) || $last_close < $last_open) |
|
1984 | - $cutoff = $last_space; |
|
2085 | + if (empty($last_space) || ($last_space == $last_open + 3 && (empty($last_close) || (!empty($last_close) && $last_close < $last_open))) || $last_space < $last_open || $last_open == $length - 6) { |
|
2086 | + $cutoff = $last_open; |
|
2087 | + } elseif (empty($last_close) || $last_close < $last_open) { |
|
2088 | + $cutoff = $last_space; |
|
2089 | + } |
|
1985 | 2090 | |
1986 | - if ($cutoff !== false) |
|
1987 | - $row['body'] = $smcFunc['substr']($row['body'], 0, $cutoff); |
|
2091 | + if ($cutoff !== false) { |
|
2092 | + $row['body'] = $smcFunc['substr']($row['body'], 0, $cutoff); |
|
2093 | + } |
|
1988 | 2094 | $row['body'] .= '...'; |
1989 | 2095 | } |
1990 | 2096 | |
1991 | 2097 | $row['body'] = parse_bbc($row['body'], $row['smileys_enabled'], $row['id_msg']); |
1992 | 2098 | |
1993 | - if (!empty($recycle_board) && $row['id_board'] == $recycle_board) |
|
1994 | - $row['icon'] = 'recycled'; |
|
2099 | + if (!empty($recycle_board) && $row['id_board'] == $recycle_board) { |
|
2100 | + $row['icon'] = 'recycled'; |
|
2101 | + } |
|
1995 | 2102 | |
1996 | 2103 | // Check that this message icon is there... |
1997 | - if (!empty($modSettings['messageIconChecks_enable']) && !isset($icon_sources[$row['icon']])) |
|
1998 | - $icon_sources[$row['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
2104 | + if (!empty($modSettings['messageIconChecks_enable']) && !isset($icon_sources[$row['icon']])) { |
|
2105 | + $icon_sources[$row['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
2106 | + } |
|
1999 | 2107 | |
2000 | 2108 | censorText($row['subject']); |
2001 | 2109 | censorText($row['body']); |
@@ -2032,16 +2140,18 @@ discard block |
||
2032 | 2140 | } |
2033 | 2141 | $smcFunc['db_free_result']($request); |
2034 | 2142 | |
2035 | - if (empty($return)) |
|
2036 | - return $return; |
|
2143 | + if (empty($return)) { |
|
2144 | + return $return; |
|
2145 | + } |
|
2037 | 2146 | |
2038 | 2147 | $return[count($return) - 1]['is_last'] = true; |
2039 | 2148 | |
2040 | 2149 | // If mods want to do somthing with this list of posts, let them do that now. |
2041 | 2150 | call_integration_hook('integrate_ssi_boardNews', array(&$return)); |
2042 | 2151 | |
2043 | - if ($output_method != 'echo') |
|
2044 | - return $return; |
|
2152 | + if ($output_method != 'echo') { |
|
2153 | + return $return; |
|
2154 | + } |
|
2045 | 2155 | |
2046 | 2156 | foreach ($return as $news) |
2047 | 2157 | { |
@@ -2093,9 +2203,10 @@ discard block |
||
2093 | 2203 | echo ' |
2094 | 2204 | </div>'; |
2095 | 2205 | |
2096 | - if (!$news['is_last']) |
|
2097 | - echo ' |
|
2206 | + if (!$news['is_last']) { |
|
2207 | + echo ' |
|
2098 | 2208 | <hr>'; |
2209 | + } |
|
2099 | 2210 | } |
2100 | 2211 | } |
2101 | 2212 | |
@@ -2109,8 +2220,9 @@ discard block |
||
2109 | 2220 | { |
2110 | 2221 | global $user_info, $scripturl, $modSettings, $txt, $context, $smcFunc; |
2111 | 2222 | |
2112 | - if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) |
|
2113 | - return; |
|
2223 | + if (empty($modSettings['cal_enabled']) || !allowedTo('calendar_view')) { |
|
2224 | + return; |
|
2225 | + } |
|
2114 | 2226 | |
2115 | 2227 | // Find all events which are happening in the near future that the member can see. |
2116 | 2228 | $request = $smcFunc['db_query']('', ' |
@@ -2136,20 +2248,23 @@ discard block |
||
2136 | 2248 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
2137 | 2249 | { |
2138 | 2250 | // Check if we've already come by an event linked to this same topic with the same title... and don't display it if we have. |
2139 | - if (!empty($duplicates[$row['title'] . $row['id_topic']])) |
|
2140 | - continue; |
|
2251 | + if (!empty($duplicates[$row['title'] . $row['id_topic']])) { |
|
2252 | + continue; |
|
2253 | + } |
|
2141 | 2254 | |
2142 | 2255 | // Censor the title. |
2143 | 2256 | censorText($row['title']); |
2144 | 2257 | |
2145 | - if ($row['start_date'] < strftime('%Y-%m-%d', forum_time(false))) |
|
2146 | - $date = strftime('%Y-%m-%d', forum_time(false)); |
|
2147 | - else |
|
2148 | - $date = $row['start_date']; |
|
2258 | + if ($row['start_date'] < strftime('%Y-%m-%d', forum_time(false))) { |
|
2259 | + $date = strftime('%Y-%m-%d', forum_time(false)); |
|
2260 | + } else { |
|
2261 | + $date = $row['start_date']; |
|
2262 | + } |
|
2149 | 2263 | |
2150 | 2264 | // If the topic it is attached to is not approved then don't link it. |
2151 | - if (!empty($row['id_first_msg']) && !$row['approved']) |
|
2152 | - $row['id_board'] = $row['id_topic'] = $row['id_first_msg'] = 0; |
|
2265 | + if (!empty($row['id_first_msg']) && !$row['approved']) { |
|
2266 | + $row['id_board'] = $row['id_topic'] = $row['id_first_msg'] = 0; |
|
2267 | + } |
|
2153 | 2268 | |
2154 | 2269 | $allday = (empty($row['start_time']) || empty($row['end_time']) || empty($row['timezone']) || !in_array($row['timezone'], timezone_identifiers_list(DateTimeZone::ALL_WITH_BC))) ? true : false; |
2155 | 2270 | |
@@ -2175,24 +2290,27 @@ discard block |
||
2175 | 2290 | } |
2176 | 2291 | $smcFunc['db_free_result']($request); |
2177 | 2292 | |
2178 | - foreach ($return as $mday => $array) |
|
2179 | - $return[$mday][count($array) - 1]['is_last'] = true; |
|
2293 | + foreach ($return as $mday => $array) { |
|
2294 | + $return[$mday][count($array) - 1]['is_last'] = true; |
|
2295 | + } |
|
2180 | 2296 | |
2181 | 2297 | // If mods want to do somthing with this list of events, let them do that now. |
2182 | 2298 | call_integration_hook('integrate_ssi_recentEvents', array(&$return)); |
2183 | 2299 | |
2184 | - if ($output_method != 'echo' || empty($return)) |
|
2185 | - return $return; |
|
2300 | + if ($output_method != 'echo' || empty($return)) { |
|
2301 | + return $return; |
|
2302 | + } |
|
2186 | 2303 | |
2187 | 2304 | // Well the output method is echo. |
2188 | 2305 | echo ' |
2189 | 2306 | <span class="event">' . $txt['events'] . '</span> '; |
2190 | - foreach ($return as $mday => $array) |
|
2191 | - foreach ($array as $event) |
|
2307 | + foreach ($return as $mday => $array) { |
|
2308 | + foreach ($array as $event) |
|
2192 | 2309 | { |
2193 | 2310 | if ($event['can_edit']) |
2194 | 2311 | echo ' |
2195 | 2312 | <a href="' . $event['modify_href'] . '" style="color: #ff0000;">*</a> '; |
2313 | + } |
|
2196 | 2314 | |
2197 | 2315 | echo ' |
2198 | 2316 | ' . $event['link'] . (!$event['is_last'] ? ', ' : ''); |
@@ -2211,8 +2329,9 @@ discard block |
||
2211 | 2329 | global $smcFunc; |
2212 | 2330 | |
2213 | 2331 | // If $id is null, this was most likely called from a query string and should do nothing. |
2214 | - if ($id === null) |
|
2215 | - return; |
|
2332 | + if ($id === null) { |
|
2333 | + return; |
|
2334 | + } |
|
2216 | 2335 | |
2217 | 2336 | $request = $smcFunc['db_query']('', ' |
2218 | 2337 | SELECT passwd, member_name, is_activated |
@@ -2244,8 +2363,9 @@ discard block |
||
2244 | 2363 | $attachments_boards = boardsAllowedTo('view_attachments'); |
2245 | 2364 | |
2246 | 2365 | // No boards? Adios amigo. |
2247 | - if (empty($attachments_boards)) |
|
2248 | - return array(); |
|
2366 | + if (empty($attachments_boards)) { |
|
2367 | + return array(); |
|
2368 | + } |
|
2249 | 2369 | |
2250 | 2370 | // Is it an array? |
2251 | 2371 | $attachment_ext = (array) $attachment_ext; |
@@ -2329,8 +2449,9 @@ discard block |
||
2329 | 2449 | call_integration_hook('integrate_ssi_recentAttachments', array(&$attachments)); |
2330 | 2450 | |
2331 | 2451 | // So you just want an array? Here you can have it. |
2332 | - if ($output_method == 'array' || empty($attachments)) |
|
2333 | - return $attachments; |
|
2452 | + if ($output_method == 'array' || empty($attachments)) { |
|
2453 | + return $attachments; |
|
2454 | + } |
|
2334 | 2455 | |
2335 | 2456 | // Give them the default. |
2336 | 2457 | echo ' |
@@ -2341,14 +2462,15 @@ discard block |
||
2341 | 2462 | <th style="text-align: left; padding: 2">', $txt['downloads'], '</th> |
2342 | 2463 | <th style="text-align: left; padding: 2">', $txt['filesize'], '</th> |
2343 | 2464 | </tr>'; |
2344 | - foreach ($attachments as $attach) |
|
2345 | - echo ' |
|
2465 | + foreach ($attachments as $attach) { |
|
2466 | + echo ' |
|
2346 | 2467 | <tr> |
2347 | 2468 | <td>', $attach['file']['link'], '</td> |
2348 | 2469 | <td>', $attach['member']['link'], '</td> |
2349 | 2470 | <td style="text-align: center">', $attach['file']['downloads'], '</td> |
2350 | 2471 | <td>', $attach['file']['filesize'], '</td> |
2351 | 2472 | </tr>'; |
2473 | + } |
|
2352 | 2474 | echo ' |
2353 | 2475 | </table>'; |
2354 | 2476 | } |
@@ -20,8 +20,9 @@ discard block |
||
20 | 20 | // ><html dir="ltr"><head><title>Error!</title></head><body>Sorry, this installer requires PHP!<div style="display: none;"> |
21 | 21 | |
22 | 22 | // Let's pull in useful classes |
23 | -if (!defined('SMF')) |
|
23 | +if (!defined('SMF')) { |
|
24 | 24 | define('SMF', 1); |
25 | +} |
|
25 | 26 | |
26 | 27 | require_once('Sources/Class-Package.php'); |
27 | 28 | |
@@ -63,10 +64,11 @@ discard block |
||
63 | 64 | |
64 | 65 | list ($charcode) = pg_fetch_row($request); |
65 | 66 | |
66 | - if ($charcode == 'UTF8') |
|
67 | - return true; |
|
68 | - else |
|
69 | - return false; |
|
67 | + if ($charcode == 'UTF8') { |
|
68 | + return true; |
|
69 | + } else { |
|
70 | + return false; |
|
71 | + } |
|
70 | 72 | }, |
71 | 73 | 'utf8_version' => '8.0', |
72 | 74 | 'utf8_version_check' => '$request = pg_query(\'SELECT version()\'); list ($version) = pg_fetch_row($request); list($pgl, $version) = explode(" ", $version); return $version;', |
@@ -76,12 +78,14 @@ discard block |
||
76 | 78 | $value = preg_replace('~[^A-Za-z0-9_\$]~', '', $value); |
77 | 79 | |
78 | 80 | // Is it reserved? |
79 | - if ($value == 'pg_') |
|
80 | - return $txt['error_db_prefix_reserved']; |
|
81 | + if ($value == 'pg_') { |
|
82 | + return $txt['error_db_prefix_reserved']; |
|
83 | + } |
|
81 | 84 | |
82 | 85 | // Is the prefix numeric? |
83 | - if (preg_match('~^\d~', $value)) |
|
84 | - return $txt['error_db_prefix_numeric']; |
|
86 | + if (preg_match('~^\d~', $value)) { |
|
87 | + return $txt['error_db_prefix_numeric']; |
|
88 | + } |
|
85 | 89 | |
86 | 90 | return true; |
87 | 91 | }, |
@@ -128,10 +132,11 @@ discard block |
||
128 | 132 | $incontext['skip'] = false; |
129 | 133 | |
130 | 134 | // Call the step and if it returns false that means pause! |
131 | - if (function_exists($step[2]) && $step[2]() === false) |
|
132 | - break; |
|
133 | - elseif (function_exists($step[2])) |
|
134 | - $incontext['current_step']++; |
|
135 | + if (function_exists($step[2]) && $step[2]() === false) { |
|
136 | + break; |
|
137 | + } elseif (function_exists($step[2])) { |
|
138 | + $incontext['current_step']++; |
|
139 | + } |
|
135 | 140 | |
136 | 141 | // No warnings pass on. |
137 | 142 | $incontext['warning'] = ''; |
@@ -147,8 +152,9 @@ discard block |
||
147 | 152 | global $databases; |
148 | 153 | |
149 | 154 | // Just so people using older versions of PHP aren't left in the cold. |
150 | - if (!isset($_SERVER['PHP_SELF'])) |
|
151 | - $_SERVER['PHP_SELF'] = isset($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']) ? $GLOBALS['HTTP_SERVER_VARS']['PHP_SELF'] : 'install.php'; |
|
155 | + if (!isset($_SERVER['PHP_SELF'])) { |
|
156 | + $_SERVER['PHP_SELF'] = isset($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']) ? $GLOBALS['HTTP_SERVER_VARS']['PHP_SELF'] : 'install.php'; |
|
157 | + } |
|
152 | 158 | |
153 | 159 | // Enable error reporting. |
154 | 160 | error_reporting(E_ALL); |
@@ -164,21 +170,23 @@ discard block |
||
164 | 170 | { |
165 | 171 | ob_start(); |
166 | 172 | |
167 | - if (ini_get('session.save_handler') == 'user') |
|
168 | - @ini_set('session.save_handler', 'files'); |
|
169 | - if (function_exists('session_start')) |
|
170 | - @session_start(); |
|
171 | - } |
|
172 | - else |
|
173 | + if (ini_get('session.save_handler') == 'user') { |
|
174 | + @ini_set('session.save_handler', 'files'); |
|
175 | + } |
|
176 | + if (function_exists('session_start')) { |
|
177 | + @session_start(); |
|
178 | + } |
|
179 | + } else |
|
173 | 180 | { |
174 | 181 | ob_start('ob_gzhandler'); |
175 | 182 | |
176 | - if (ini_get('session.save_handler') == 'user') |
|
177 | - @ini_set('session.save_handler', 'files'); |
|
183 | + if (ini_get('session.save_handler') == 'user') { |
|
184 | + @ini_set('session.save_handler', 'files'); |
|
185 | + } |
|
178 | 186 | session_start(); |
179 | 187 | |
180 | - if (!headers_sent()) |
|
181 | - echo '<!DOCTYPE html> |
|
188 | + if (!headers_sent()) { |
|
189 | + echo '<!DOCTYPE html> |
|
182 | 190 | <html> |
183 | 191 | <head> |
184 | 192 | <title>', htmlspecialchars($_GET['pass_string']), '</title> |
@@ -187,14 +195,16 @@ discard block |
||
187 | 195 | <strong>', htmlspecialchars($_GET['pass_string']), '</strong> |
188 | 196 | </body> |
189 | 197 | </html>'; |
198 | + } |
|
190 | 199 | exit; |
191 | 200 | } |
192 | 201 | |
193 | 202 | // Add slashes, as long as they aren't already being added. |
194 | - if (!function_exists('get_magic_quotes_gpc') || @get_magic_quotes_gpc() == 0) |
|
195 | - foreach ($_POST as $k => $v) |
|
203 | + if (!function_exists('get_magic_quotes_gpc') || @get_magic_quotes_gpc() == 0) { |
|
204 | + foreach ($_POST as $k => $v) |
|
196 | 205 | if (strpos($k, 'password') === false && strpos($k, 'db_passwd') === false) |
197 | 206 | $_POST[$k] = addslashes($v); |
207 | + } |
|
198 | 208 | |
199 | 209 | // This is really quite simple; if ?delete is on the URL, delete the installer... |
200 | 210 | if (isset($_GET['delete'])) |
@@ -215,8 +225,7 @@ discard block |
||
215 | 225 | $ftp->close(); |
216 | 226 | |
217 | 227 | unset($_SESSION['installer_temp_ftp']); |
218 | - } |
|
219 | - else |
|
228 | + } else |
|
220 | 229 | { |
221 | 230 | @unlink(__FILE__); |
222 | 231 | |
@@ -237,10 +246,11 @@ discard block |
||
237 | 246 | { |
238 | 247 | // Get PHP's default timezone, if set |
239 | 248 | $ini_tz = ini_get('date.timezone'); |
240 | - if (!empty($ini_tz)) |
|
241 | - $timezone_id = $ini_tz; |
|
242 | - else |
|
243 | - $timezone_id = ''; |
|
249 | + if (!empty($ini_tz)) { |
|
250 | + $timezone_id = $ini_tz; |
|
251 | + } else { |
|
252 | + $timezone_id = ''; |
|
253 | + } |
|
244 | 254 | |
245 | 255 | // If date.timezone is unset, invalid, or just plain weird, make a best guess |
246 | 256 | if (!in_array($timezone_id, timezone_identifiers_list())) |
@@ -270,8 +280,9 @@ discard block |
||
270 | 280 | $dir = dir(dirname(__FILE__) . '/Themes/default/languages'); |
271 | 281 | while ($entry = $dir->read()) |
272 | 282 | { |
273 | - if (substr($entry, 0, 8) == 'Install.' && substr($entry, -4) == '.php') |
|
274 | - $incontext['detected_languages'][$entry] = ucfirst(substr($entry, 8, strlen($entry) - 12)); |
|
283 | + if (substr($entry, 0, 8) == 'Install.' && substr($entry, -4) == '.php') { |
|
284 | + $incontext['detected_languages'][$entry] = ucfirst(substr($entry, 8, strlen($entry) - 12)); |
|
285 | + } |
|
275 | 286 | } |
276 | 287 | $dir->close(); |
277 | 288 | } |
@@ -306,10 +317,11 @@ discard block |
||
306 | 317 | } |
307 | 318 | |
308 | 319 | // Override the language file? |
309 | - if (isset($_GET['lang_file'])) |
|
310 | - $_SESSION['installer_temp_lang'] = $_GET['lang_file']; |
|
311 | - elseif (isset($GLOBALS['HTTP_GET_VARS']['lang_file'])) |
|
312 | - $_SESSION['installer_temp_lang'] = $GLOBALS['HTTP_GET_VARS']['lang_file']; |
|
320 | + if (isset($_GET['lang_file'])) { |
|
321 | + $_SESSION['installer_temp_lang'] = $_GET['lang_file']; |
|
322 | + } elseif (isset($GLOBALS['HTTP_GET_VARS']['lang_file'])) { |
|
323 | + $_SESSION['installer_temp_lang'] = $GLOBALS['HTTP_GET_VARS']['lang_file']; |
|
324 | + } |
|
313 | 325 | |
314 | 326 | // Make sure it exists, if it doesn't reset it. |
315 | 327 | if (!isset($_SESSION['installer_temp_lang']) || preg_match('~[^\\w_\\-.]~', $_SESSION['installer_temp_lang']) === 1 || !file_exists(dirname(__FILE__) . '/Themes/default/languages/' . $_SESSION['installer_temp_lang'])) |
@@ -318,8 +330,9 @@ discard block |
||
318 | 330 | list ($_SESSION['installer_temp_lang']) = array_keys($incontext['detected_languages']); |
319 | 331 | |
320 | 332 | // If we have english and some other language, use the other language. We Americans hate english :P. |
321 | - if ($_SESSION['installer_temp_lang'] == 'Install.english.php' && count($incontext['detected_languages']) > 1) |
|
322 | - list (, $_SESSION['installer_temp_lang']) = array_keys($incontext['detected_languages']); |
|
333 | + if ($_SESSION['installer_temp_lang'] == 'Install.english.php' && count($incontext['detected_languages']) > 1) { |
|
334 | + list (, $_SESSION['installer_temp_lang']) = array_keys($incontext['detected_languages']); |
|
335 | + } |
|
323 | 336 | } |
324 | 337 | |
325 | 338 | // And now include the actual language file itself. |
@@ -332,15 +345,18 @@ discard block |
||
332 | 345 | global $db_prefix, $db_connection, $sourcedir, $smcFunc, $modSettings; |
333 | 346 | global $db_server, $db_passwd, $db_type, $db_name, $db_user, $db_persist; |
334 | 347 | |
335 | - if (empty($sourcedir)) |
|
336 | - $sourcedir = dirname(__FILE__) . '/Sources'; |
|
348 | + if (empty($sourcedir)) { |
|
349 | + $sourcedir = dirname(__FILE__) . '/Sources'; |
|
350 | + } |
|
337 | 351 | |
338 | 352 | // Need this to check whether we need the database password. |
339 | 353 | require(dirname(__FILE__) . '/Settings.php'); |
340 | - if (!defined('SMF')) |
|
341 | - define('SMF', 1); |
|
342 | - if (empty($smcFunc)) |
|
343 | - $smcFunc = array(); |
|
354 | + if (!defined('SMF')) { |
|
355 | + define('SMF', 1); |
|
356 | + } |
|
357 | + if (empty($smcFunc)) { |
|
358 | + $smcFunc = array(); |
|
359 | + } |
|
344 | 360 | |
345 | 361 | $modSettings['disableQueryCheck'] = true; |
346 | 362 | |
@@ -348,8 +364,9 @@ discard block |
||
348 | 364 | if (!$db_connection) |
349 | 365 | { |
350 | 366 | require_once($sourcedir . '/Subs-Db-' . $db_type . '.php'); |
351 | - if (version_compare(PHP_VERSION, '5', '<')) |
|
352 | - require_once($sourcedir . '/Subs-Compat.php'); |
|
367 | + if (version_compare(PHP_VERSION, '5', '<')) { |
|
368 | + require_once($sourcedir . '/Subs-Compat.php'); |
|
369 | + } |
|
353 | 370 | |
354 | 371 | $db_options = array('persist' => $db_persist); |
355 | 372 | $port = ''; |
@@ -360,19 +377,20 @@ discard block |
||
360 | 377 | if ($db_type == 'mysql') |
361 | 378 | { |
362 | 379 | $port = ((int) $_POST['db_port'] == ini_get($db_type . 'default_port')) ? '' : (int) $_POST['db_port']; |
363 | - } |
|
364 | - elseif ($db_type == 'postgresql') |
|
380 | + } elseif ($db_type == 'postgresql') |
|
365 | 381 | { |
366 | 382 | // PostgreSQL doesn't have a default port setting in php.ini, so just check against the default |
367 | 383 | $port = ((int) $_POST['db_port'] == 5432) ? '' : (int) $_POST['db_port']; |
368 | 384 | } |
369 | 385 | } |
370 | 386 | |
371 | - if (!empty($port)) |
|
372 | - $db_options['port'] = $port; |
|
387 | + if (!empty($port)) { |
|
388 | + $db_options['port'] = $port; |
|
389 | + } |
|
373 | 390 | |
374 | - if (!$db_connection) |
|
375 | - $db_connection = smf_db_initiate($db_server, $db_name, $db_user, $db_passwd, $db_prefix, $db_options); |
|
391 | + if (!$db_connection) { |
|
392 | + $db_connection = smf_db_initiate($db_server, $db_name, $db_user, $db_passwd, $db_prefix, $db_options); |
|
393 | + } |
|
376 | 394 | } |
377 | 395 | } |
378 | 396 | |
@@ -400,8 +418,9 @@ discard block |
||
400 | 418 | // @todo REMOVE THIS!! |
401 | 419 | else |
402 | 420 | { |
403 | - if (function_exists('doStep' . $_GET['step'])) |
|
404 | - call_user_func('doStep' . $_GET['step']); |
|
421 | + if (function_exists('doStep' . $_GET['step'])) { |
|
422 | + call_user_func('doStep' . $_GET['step']); |
|
423 | + } |
|
405 | 424 | } |
406 | 425 | // Show the footer. |
407 | 426 | template_install_below(); |
@@ -419,8 +438,9 @@ discard block |
||
419 | 438 | $incontext['sub_template'] = 'welcome_message'; |
420 | 439 | |
421 | 440 | // Done the submission? |
422 | - if (isset($_POST['contbutt'])) |
|
423 | - return true; |
|
441 | + if (isset($_POST['contbutt'])) { |
|
442 | + return true; |
|
443 | + } |
|
424 | 444 | |
425 | 445 | // See if we think they have already installed it? |
426 | 446 | if (is_readable(dirname(__FILE__) . '/Settings.php')) |
@@ -428,14 +448,17 @@ discard block |
||
428 | 448 | $probably_installed = 0; |
429 | 449 | foreach (file(dirname(__FILE__) . '/Settings.php') as $line) |
430 | 450 | { |
431 | - if (preg_match('~^\$db_passwd\s=\s\'([^\']+)\';$~', $line)) |
|
432 | - $probably_installed++; |
|
433 | - if (preg_match('~^\$boardurl\s=\s\'([^\']+)\';~', $line) && !preg_match('~^\$boardurl\s=\s\'http://127\.0\.0\.1/smf\';~', $line)) |
|
434 | - $probably_installed++; |
|
451 | + if (preg_match('~^\$db_passwd\s=\s\'([^\']+)\';$~', $line)) { |
|
452 | + $probably_installed++; |
|
453 | + } |
|
454 | + if (preg_match('~^\$boardurl\s=\s\'([^\']+)\';~', $line) && !preg_match('~^\$boardurl\s=\s\'http://127\.0\.0\.1/smf\';~', $line)) { |
|
455 | + $probably_installed++; |
|
456 | + } |
|
435 | 457 | } |
436 | 458 | |
437 | - if ($probably_installed == 2) |
|
438 | - $incontext['warning'] = $txt['error_already_installed']; |
|
459 | + if ($probably_installed == 2) { |
|
460 | + $incontext['warning'] = $txt['error_already_installed']; |
|
461 | + } |
|
439 | 462 | } |
440 | 463 | |
441 | 464 | // Is some database support even compiled in? |
@@ -450,45 +473,54 @@ discard block |
||
450 | 473 | $databases[$key]['supported'] = false; |
451 | 474 | $notFoundSQLFile = true; |
452 | 475 | $txt['error_db_script_missing'] = sprintf($txt['error_db_script_missing'], 'install_' . $GLOBALS['db_script_version'] . '_' . $type . '.sql'); |
476 | + } else { |
|
477 | + $incontext['supported_databases'][] = $db; |
|
453 | 478 | } |
454 | - else |
|
455 | - $incontext['supported_databases'][] = $db; |
|
456 | 479 | } |
457 | 480 | } |
458 | 481 | |
459 | 482 | // Check the PHP version. |
460 | - if ((!function_exists('version_compare') || version_compare($GLOBALS['required_php_version'], PHP_VERSION, '>='))) |
|
461 | - $error = 'error_php_too_low'; |
|
483 | + if ((!function_exists('version_compare') || version_compare($GLOBALS['required_php_version'], PHP_VERSION, '>='))) { |
|
484 | + $error = 'error_php_too_low'; |
|
485 | + } |
|
462 | 486 | // Make sure we have a supported database |
463 | - elseif (empty($incontext['supported_databases'])) |
|
464 | - $error = empty($notFoundSQLFile) ? 'error_db_missing' : 'error_db_script_missing'; |
|
487 | + elseif (empty($incontext['supported_databases'])) { |
|
488 | + $error = empty($notFoundSQLFile) ? 'error_db_missing' : 'error_db_script_missing'; |
|
489 | + } |
|
465 | 490 | // How about session support? Some crazy sysadmin remove it? |
466 | - elseif (!function_exists('session_start')) |
|
467 | - $error = 'error_session_missing'; |
|
491 | + elseif (!function_exists('session_start')) { |
|
492 | + $error = 'error_session_missing'; |
|
493 | + } |
|
468 | 494 | // Make sure they uploaded all the files. |
469 | - elseif (!file_exists(dirname(__FILE__) . '/index.php')) |
|
470 | - $error = 'error_missing_files'; |
|
495 | + elseif (!file_exists(dirname(__FILE__) . '/index.php')) { |
|
496 | + $error = 'error_missing_files'; |
|
497 | + } |
|
471 | 498 | // Very simple check on the session.save_path for Windows. |
472 | 499 | // @todo Move this down later if they don't use database-driven sessions? |
473 | - elseif (@ini_get('session.save_path') == '/tmp' && substr(__FILE__, 1, 2) == ':\\') |
|
474 | - $error = 'error_session_save_path'; |
|
500 | + elseif (@ini_get('session.save_path') == '/tmp' && substr(__FILE__, 1, 2) == ':\\') { |
|
501 | + $error = 'error_session_save_path'; |
|
502 | + } |
|
475 | 503 | |
476 | 504 | // Since each of the three messages would look the same, anyway... |
477 | - if (isset($error)) |
|
478 | - $incontext['error'] = $txt[$error]; |
|
505 | + if (isset($error)) { |
|
506 | + $incontext['error'] = $txt[$error]; |
|
507 | + } |
|
479 | 508 | |
480 | 509 | // Mod_security blocks everything that smells funny. Let SMF handle security. |
481 | - if (!fixModSecurity() && !isset($_GET['overmodsecurity'])) |
|
482 | - $incontext['error'] = $txt['error_mod_security'] . '<br><br><a href="' . $installurl . '?overmodsecurity=true">' . $txt['error_message_click'] . '</a> ' . $txt['error_message_bad_try_again']; |
|
510 | + if (!fixModSecurity() && !isset($_GET['overmodsecurity'])) { |
|
511 | + $incontext['error'] = $txt['error_mod_security'] . '<br><br><a href="' . $installurl . '?overmodsecurity=true">' . $txt['error_message_click'] . '</a> ' . $txt['error_message_bad_try_again']; |
|
512 | + } |
|
483 | 513 | |
484 | 514 | // Confirm mbstring is loaded... |
485 | - if (!extension_loaded('mbstring')) |
|
486 | - $incontext['error'] = $txt['install_no_mbstring']; |
|
515 | + if (!extension_loaded('mbstring')) { |
|
516 | + $incontext['error'] = $txt['install_no_mbstring']; |
|
517 | + } |
|
487 | 518 | |
488 | 519 | // Check for https stream support. |
489 | 520 | $supported_streams = stream_get_wrappers(); |
490 | - if (!in_array('https', $supported_streams)) |
|
491 | - $incontext['warning'] = $txt['install_no_https']; |
|
521 | + if (!in_array('https', $supported_streams)) { |
|
522 | + $incontext['warning'] = $txt['install_no_https']; |
|
523 | + } |
|
492 | 524 | |
493 | 525 | return false; |
494 | 526 | } |
@@ -514,12 +546,14 @@ discard block |
||
514 | 546 | 'db_last_error.php', |
515 | 547 | ); |
516 | 548 | |
517 | - foreach ($incontext['detected_languages'] as $lang => $temp) |
|
518 | - $extra_files[] = 'Themes/default/languages/' . $lang; |
|
549 | + foreach ($incontext['detected_languages'] as $lang => $temp) { |
|
550 | + $extra_files[] = 'Themes/default/languages/' . $lang; |
|
551 | + } |
|
519 | 552 | |
520 | 553 | // With mod_security installed, we could attempt to fix it with .htaccess. |
521 | - if (function_exists('apache_get_modules') && in_array('mod_security', apache_get_modules())) |
|
522 | - $writable_files[] = file_exists(dirname(__FILE__) . '/.htaccess') ? '.htaccess' : '.'; |
|
554 | + if (function_exists('apache_get_modules') && in_array('mod_security', apache_get_modules())) { |
|
555 | + $writable_files[] = file_exists(dirname(__FILE__) . '/.htaccess') ? '.htaccess' : '.'; |
|
556 | + } |
|
523 | 557 | |
524 | 558 | $failed_files = array(); |
525 | 559 | |
@@ -531,20 +565,23 @@ discard block |
||
531 | 565 | foreach ($writable_files as $file) |
532 | 566 | { |
533 | 567 | // Some files won't exist, try to address up front |
534 | - if (!file_exists(dirname(__FILE__) . '/' . $file)) |
|
535 | - @touch(dirname(__FILE__) . '/' . $file); |
|
568 | + if (!file_exists(dirname(__FILE__) . '/' . $file)) { |
|
569 | + @touch(dirname(__FILE__) . '/' . $file); |
|
570 | + } |
|
536 | 571 | // NOW do the writable check... |
537 | 572 | if (!is_writable(dirname(__FILE__) . '/' . $file)) |
538 | 573 | { |
539 | 574 | @chmod(dirname(__FILE__) . '/' . $file, 0755); |
540 | 575 | |
541 | 576 | // Well, 755 hopefully worked... if not, try 777. |
542 | - if (!is_writable(dirname(__FILE__) . '/' . $file) && !@chmod(dirname(__FILE__) . '/' . $file, 0777)) |
|
543 | - $failed_files[] = $file; |
|
577 | + if (!is_writable(dirname(__FILE__) . '/' . $file) && !@chmod(dirname(__FILE__) . '/' . $file, 0777)) { |
|
578 | + $failed_files[] = $file; |
|
579 | + } |
|
544 | 580 | } |
545 | 581 | } |
546 | - foreach ($extra_files as $file) |
|
547 | - @chmod(dirname(__FILE__) . (empty($file) ? '' : '/' . $file), 0777); |
|
582 | + foreach ($extra_files as $file) { |
|
583 | + @chmod(dirname(__FILE__) . (empty($file) ? '' : '/' . $file), 0777); |
|
584 | + } |
|
548 | 585 | } |
549 | 586 | // Windows is trickier. Let's try opening for r+... |
550 | 587 | else |
@@ -554,30 +591,35 @@ discard block |
||
554 | 591 | foreach ($writable_files as $file) |
555 | 592 | { |
556 | 593 | // Folders can't be opened for write... but the index.php in them can ;) |
557 | - if (is_dir(dirname(__FILE__) . '/' . $file)) |
|
558 | - $file .= '/index.php'; |
|
594 | + if (is_dir(dirname(__FILE__) . '/' . $file)) { |
|
595 | + $file .= '/index.php'; |
|
596 | + } |
|
559 | 597 | |
560 | 598 | // Funny enough, chmod actually does do something on windows - it removes the read only attribute. |
561 | 599 | @chmod(dirname(__FILE__) . '/' . $file, 0777); |
562 | 600 | $fp = @fopen(dirname(__FILE__) . '/' . $file, 'r+'); |
563 | 601 | |
564 | 602 | // Hmm, okay, try just for write in that case... |
565 | - if (!is_resource($fp)) |
|
566 | - $fp = @fopen(dirname(__FILE__) . '/' . $file, 'w'); |
|
603 | + if (!is_resource($fp)) { |
|
604 | + $fp = @fopen(dirname(__FILE__) . '/' . $file, 'w'); |
|
605 | + } |
|
567 | 606 | |
568 | - if (!is_resource($fp)) |
|
569 | - $failed_files[] = $file; |
|
607 | + if (!is_resource($fp)) { |
|
608 | + $failed_files[] = $file; |
|
609 | + } |
|
570 | 610 | |
571 | 611 | @fclose($fp); |
572 | 612 | } |
573 | - foreach ($extra_files as $file) |
|
574 | - @chmod(dirname(__FILE__) . (empty($file) ? '' : '/' . $file), 0777); |
|
613 | + foreach ($extra_files as $file) { |
|
614 | + @chmod(dirname(__FILE__) . (empty($file) ? '' : '/' . $file), 0777); |
|
615 | + } |
|
575 | 616 | } |
576 | 617 | |
577 | 618 | $failure = count($failed_files) >= 1; |
578 | 619 | |
579 | - if (!isset($_SERVER)) |
|
580 | - return !$failure; |
|
620 | + if (!isset($_SERVER)) { |
|
621 | + return !$failure; |
|
622 | + } |
|
581 | 623 | |
582 | 624 | // Put the list into context. |
583 | 625 | $incontext['failed_files'] = $failed_files; |
@@ -625,19 +667,23 @@ discard block |
||
625 | 667 | |
626 | 668 | if (!isset($ftp) || $ftp->error !== false) |
627 | 669 | { |
628 | - if (!isset($ftp)) |
|
629 | - $ftp = new ftp_connection(null); |
|
670 | + if (!isset($ftp)) { |
|
671 | + $ftp = new ftp_connection(null); |
|
672 | + } |
|
630 | 673 | // Save the error so we can mess with listing... |
631 | - elseif ($ftp->error !== false && empty($incontext['ftp_errors']) && !empty($ftp->last_message)) |
|
632 | - $incontext['ftp_errors'][] = $ftp->last_message; |
|
674 | + elseif ($ftp->error !== false && empty($incontext['ftp_errors']) && !empty($ftp->last_message)) { |
|
675 | + $incontext['ftp_errors'][] = $ftp->last_message; |
|
676 | + } |
|
633 | 677 | |
634 | 678 | list ($username, $detect_path, $found_path) = $ftp->detect_path(dirname(__FILE__)); |
635 | 679 | |
636 | - if (empty($_POST['ftp_path']) && $found_path) |
|
637 | - $_POST['ftp_path'] = $detect_path; |
|
680 | + if (empty($_POST['ftp_path']) && $found_path) { |
|
681 | + $_POST['ftp_path'] = $detect_path; |
|
682 | + } |
|
638 | 683 | |
639 | - if (!isset($_POST['ftp_username'])) |
|
640 | - $_POST['ftp_username'] = $username; |
|
684 | + if (!isset($_POST['ftp_username'])) { |
|
685 | + $_POST['ftp_username'] = $username; |
|
686 | + } |
|
641 | 687 | |
642 | 688 | // Set the username etc, into context. |
643 | 689 | $incontext['ftp'] = array( |
@@ -649,8 +695,7 @@ discard block |
||
649 | 695 | ); |
650 | 696 | |
651 | 697 | return false; |
652 | - } |
|
653 | - else |
|
698 | + } else |
|
654 | 699 | { |
655 | 700 | $_SESSION['installer_temp_ftp'] = array( |
656 | 701 | 'server' => $_POST['ftp_server'], |
@@ -664,10 +709,12 @@ discard block |
||
664 | 709 | |
665 | 710 | foreach ($failed_files as $file) |
666 | 711 | { |
667 | - if (!is_writable(dirname(__FILE__) . '/' . $file)) |
|
668 | - $ftp->chmod($file, 0755); |
|
669 | - if (!is_writable(dirname(__FILE__) . '/' . $file)) |
|
670 | - $ftp->chmod($file, 0777); |
|
712 | + if (!is_writable(dirname(__FILE__) . '/' . $file)) { |
|
713 | + $ftp->chmod($file, 0755); |
|
714 | + } |
|
715 | + if (!is_writable(dirname(__FILE__) . '/' . $file)) { |
|
716 | + $ftp->chmod($file, 0777); |
|
717 | + } |
|
671 | 718 | if (!is_writable(dirname(__FILE__) . '/' . $file)) |
672 | 719 | { |
673 | 720 | $failed_files_updated[] = $file; |
@@ -723,15 +770,17 @@ discard block |
||
723 | 770 | |
724 | 771 | if (!$foundOne) |
725 | 772 | { |
726 | - if (isset($db['default_host'])) |
|
727 | - $incontext['db']['server'] = ini_get($db['default_host']) or $incontext['db']['server'] = 'localhost'; |
|
773 | + if (isset($db['default_host'])) { |
|
774 | + $incontext['db']['server'] = ini_get($db['default_host']) or $incontext['db']['server'] = 'localhost'; |
|
775 | + } |
|
728 | 776 | if (isset($db['default_user'])) |
729 | 777 | { |
730 | 778 | $incontext['db']['user'] = ini_get($db['default_user']); |
731 | 779 | $incontext['db']['name'] = ini_get($db['default_user']); |
732 | 780 | } |
733 | - if (isset($db['default_password'])) |
|
734 | - $incontext['db']['pass'] = ini_get($db['default_password']); |
|
781 | + if (isset($db['default_password'])) { |
|
782 | + $incontext['db']['pass'] = ini_get($db['default_password']); |
|
783 | + } |
|
735 | 784 | |
736 | 785 | // For simplicity and less confusion, leave the port blank by default |
737 | 786 | $incontext['db']['port'] = ''; |
@@ -750,10 +799,10 @@ discard block |
||
750 | 799 | $incontext['db']['server'] = $_POST['db_server']; |
751 | 800 | $incontext['db']['prefix'] = $_POST['db_prefix']; |
752 | 801 | |
753 | - if (!empty($_POST['db_port'])) |
|
754 | - $incontext['db']['port'] = $_POST['db_port']; |
|
755 | - } |
|
756 | - else |
|
802 | + if (!empty($_POST['db_port'])) { |
|
803 | + $incontext['db']['port'] = $_POST['db_port']; |
|
804 | + } |
|
805 | + } else |
|
757 | 806 | { |
758 | 807 | $incontext['db']['prefix'] = 'smf_'; |
759 | 808 | } |
@@ -789,10 +838,11 @@ discard block |
||
789 | 838 | if (!empty($_POST['db_port'])) |
790 | 839 | { |
791 | 840 | // For MySQL, we can get the "default port" from PHP. PostgreSQL has no such option though. |
792 | - if (($db_type == 'mysql' || $db_type == 'mysqli') && $_POST['db_port'] != ini_get($db_type . '.default_port')) |
|
793 | - $vars['db_port'] = (int) $_POST['db_port']; |
|
794 | - elseif ($db_type == 'postgresql' && $_POST['db_port'] != 5432) |
|
795 | - $vars['db_port'] = (int) $_POST['db_port']; |
|
841 | + if (($db_type == 'mysql' || $db_type == 'mysqli') && $_POST['db_port'] != ini_get($db_type . '.default_port')) { |
|
842 | + $vars['db_port'] = (int) $_POST['db_port']; |
|
843 | + } elseif ($db_type == 'postgresql' && $_POST['db_port'] != 5432) { |
|
844 | + $vars['db_port'] = (int) $_POST['db_port']; |
|
845 | + } |
|
796 | 846 | } |
797 | 847 | |
798 | 848 | // God I hope it saved! |
@@ -805,8 +855,9 @@ discard block |
||
805 | 855 | // Make sure it works. |
806 | 856 | require(dirname(__FILE__) . '/Settings.php'); |
807 | 857 | |
808 | - if (empty($sourcedir)) |
|
809 | - $sourcedir = dirname(__FILE__) . '/Sources'; |
|
858 | + if (empty($sourcedir)) { |
|
859 | + $sourcedir = dirname(__FILE__) . '/Sources'; |
|
860 | + } |
|
810 | 861 | |
811 | 862 | // Better find the database file! |
812 | 863 | if (!file_exists($sourcedir . '/Subs-Db-' . $db_type . '.php')) |
@@ -816,18 +867,21 @@ discard block |
||
816 | 867 | } |
817 | 868 | |
818 | 869 | // Now include it for database functions! |
819 | - if (!defined('SMF')) |
|
820 | - define('SMF', 1); |
|
870 | + if (!defined('SMF')) { |
|
871 | + define('SMF', 1); |
|
872 | + } |
|
821 | 873 | |
822 | 874 | $modSettings['disableQueryCheck'] = true; |
823 | - if (empty($smcFunc)) |
|
824 | - $smcFunc = array(); |
|
875 | + if (empty($smcFunc)) { |
|
876 | + $smcFunc = array(); |
|
877 | + } |
|
825 | 878 | |
826 | 879 | require_once($sourcedir . '/Subs-Db-' . $db_type . '.php'); |
827 | 880 | |
828 | 881 | // What - running PHP4? The shame! |
829 | - if (version_compare(PHP_VERSION, '5', '<')) |
|
830 | - require_once($sourcedir . '/Subs-Compat.php'); |
|
882 | + if (version_compare(PHP_VERSION, '5', '<')) { |
|
883 | + require_once($sourcedir . '/Subs-Compat.php'); |
|
884 | + } |
|
831 | 885 | |
832 | 886 | // Attempt a connection. |
833 | 887 | $needsDB = !empty($databases[$db_type]['always_has_db']); |
@@ -915,12 +969,14 @@ discard block |
||
915 | 969 | $incontext['page_title'] = $txt['install_settings']; |
916 | 970 | |
917 | 971 | // Let's see if we got the database type correct. |
918 | - if (isset($_POST['db_type'], $databases[$_POST['db_type']])) |
|
919 | - $db_type = $_POST['db_type']; |
|
972 | + if (isset($_POST['db_type'], $databases[$_POST['db_type']])) { |
|
973 | + $db_type = $_POST['db_type']; |
|
974 | + } |
|
920 | 975 | |
921 | 976 | // Else we'd better be able to get the connection. |
922 | - else |
|
923 | - load_database(); |
|
977 | + else { |
|
978 | + load_database(); |
|
979 | + } |
|
924 | 980 | |
925 | 981 | $db_type = isset($_POST['db_type']) ? $_POST['db_type'] : $db_type; |
926 | 982 | |
@@ -957,18 +1013,21 @@ discard block |
||
957 | 1013 | // Submitting? |
958 | 1014 | if (isset($_POST['boardurl'])) |
959 | 1015 | { |
960 | - if (substr($_POST['boardurl'], -10) == '/index.php') |
|
961 | - $_POST['boardurl'] = substr($_POST['boardurl'], 0, -10); |
|
962 | - elseif (substr($_POST['boardurl'], -1) == '/') |
|
963 | - $_POST['boardurl'] = substr($_POST['boardurl'], 0, -1); |
|
964 | - if (substr($_POST['boardurl'], 0, 7) != 'http://' && substr($_POST['boardurl'], 0, 7) != 'file://' && substr($_POST['boardurl'], 0, 8) != 'https://') |
|
965 | - $_POST['boardurl'] = 'http://' . $_POST['boardurl']; |
|
1016 | + if (substr($_POST['boardurl'], -10) == '/index.php') { |
|
1017 | + $_POST['boardurl'] = substr($_POST['boardurl'], 0, -10); |
|
1018 | + } elseif (substr($_POST['boardurl'], -1) == '/') { |
|
1019 | + $_POST['boardurl'] = substr($_POST['boardurl'], 0, -1); |
|
1020 | + } |
|
1021 | + if (substr($_POST['boardurl'], 0, 7) != 'http://' && substr($_POST['boardurl'], 0, 7) != 'file://' && substr($_POST['boardurl'], 0, 8) != 'https://') { |
|
1022 | + $_POST['boardurl'] = 'http://' . $_POST['boardurl']; |
|
1023 | + } |
|
966 | 1024 | |
967 | 1025 | //Make sure boardurl is aligned with ssl setting |
968 | - if (empty($_POST['force_ssl'])) |
|
969 | - $_POST['boardurl'] = strtr($_POST['boardurl'], array('https://' => 'http://')); |
|
970 | - else |
|
971 | - $_POST['boardurl'] = strtr($_POST['boardurl'], array('http://' => 'https://')); |
|
1026 | + if (empty($_POST['force_ssl'])) { |
|
1027 | + $_POST['boardurl'] = strtr($_POST['boardurl'], array('https://' => 'http://')); |
|
1028 | + } else { |
|
1029 | + $_POST['boardurl'] = strtr($_POST['boardurl'], array('http://' => 'https://')); |
|
1030 | + } |
|
972 | 1031 | |
973 | 1032 | // Save these variables. |
974 | 1033 | $vars = array( |
@@ -1007,10 +1066,10 @@ discard block |
||
1007 | 1066 | { |
1008 | 1067 | $incontext['error'] = sprintf($txt['error_utf8_version'], $databases[$db_type]['utf8_version']); |
1009 | 1068 | return false; |
1010 | - } |
|
1011 | - else |
|
1012 | - // Set the character set here. |
|
1069 | + } else { |
|
1070 | + // Set the character set here. |
|
1013 | 1071 | updateSettingsFile(array('db_character_set' => 'utf8')); |
1072 | + } |
|
1014 | 1073 | } |
1015 | 1074 | |
1016 | 1075 | // Good, skip on. |
@@ -1030,8 +1089,9 @@ discard block |
||
1030 | 1089 | $incontext['continue'] = 1; |
1031 | 1090 | |
1032 | 1091 | // Already done? |
1033 | - if (isset($_POST['pop_done'])) |
|
1034 | - return true; |
|
1092 | + if (isset($_POST['pop_done'])) { |
|
1093 | + return true; |
|
1094 | + } |
|
1035 | 1095 | |
1036 | 1096 | // Reload settings. |
1037 | 1097 | require(dirname(__FILE__) . '/Settings.php'); |
@@ -1049,8 +1109,9 @@ discard block |
||
1049 | 1109 | $modSettings = array(); |
1050 | 1110 | if ($result !== false) |
1051 | 1111 | { |
1052 | - while ($row = $smcFunc['db_fetch_assoc']($result)) |
|
1053 | - $modSettings[$row['variable']] = $row['value']; |
|
1112 | + while ($row = $smcFunc['db_fetch_assoc']($result)) { |
|
1113 | + $modSettings[$row['variable']] = $row['value']; |
|
1114 | + } |
|
1054 | 1115 | $smcFunc['db_free_result']($result); |
1055 | 1116 | |
1056 | 1117 | // Do they match? If so, this is just a refresh so charge on! |
@@ -1063,20 +1124,22 @@ discard block |
||
1063 | 1124 | $modSettings['disableQueryCheck'] = true; |
1064 | 1125 | |
1065 | 1126 | // If doing UTF8, select it. PostgreSQL requires passing it as a string... |
1066 | - if (!empty($db_character_set) && $db_character_set == 'utf8' && !empty($databases[$db_type]['utf8_support'])) |
|
1067 | - $smcFunc['db_query']('', ' |
|
1127 | + if (!empty($db_character_set) && $db_character_set == 'utf8' && !empty($databases[$db_type]['utf8_support'])) { |
|
1128 | + $smcFunc['db_query']('', ' |
|
1068 | 1129 | SET NAMES {string:utf8}', |
1069 | 1130 | array( |
1070 | 1131 | 'db_error_skip' => true, |
1071 | 1132 | 'utf8' => 'utf8', |
1072 | 1133 | ) |
1073 | 1134 | ); |
1135 | + } |
|
1074 | 1136 | |
1075 | 1137 | // Windows likes to leave the trailing slash, which yields to C:\path\to\SMF\/attachments... |
1076 | - if (substr(__DIR__, -1) == '\\') |
|
1077 | - $attachdir = __DIR__ . 'attachments'; |
|
1078 | - else |
|
1079 | - $attachdir = __DIR__ . '/attachments'; |
|
1138 | + if (substr(__DIR__, -1) == '\\') { |
|
1139 | + $attachdir = __DIR__ . 'attachments'; |
|
1140 | + } else { |
|
1141 | + $attachdir = __DIR__ . '/attachments'; |
|
1142 | + } |
|
1080 | 1143 | |
1081 | 1144 | $replaces = array( |
1082 | 1145 | '{$db_prefix}' => $db_prefix, |
@@ -1093,8 +1156,9 @@ discard block |
||
1093 | 1156 | |
1094 | 1157 | foreach ($txt as $key => $value) |
1095 | 1158 | { |
1096 | - if (substr($key, 0, 8) == 'default_') |
|
1097 | - $replaces['{$' . $key . '}'] = $smcFunc['db_escape_string']($value); |
|
1159 | + if (substr($key, 0, 8) == 'default_') { |
|
1160 | + $replaces['{$' . $key . '}'] = $smcFunc['db_escape_string']($value); |
|
1161 | + } |
|
1098 | 1162 | } |
1099 | 1163 | $replaces['{$default_reserved_names}'] = strtr($replaces['{$default_reserved_names}'], array('\\\\n' => '\\n')); |
1100 | 1164 | |
@@ -1109,8 +1173,9 @@ discard block |
||
1109 | 1173 | |
1110 | 1174 | while ($row = $smcFunc['db_fetch_assoc']($get_engines)) |
1111 | 1175 | { |
1112 | - if ($row['Support'] == 'YES' || $row['Support'] == 'DEFAULT') |
|
1113 | - $engines[] = $row['Engine']; |
|
1176 | + if ($row['Support'] == 'YES' || $row['Support'] == 'DEFAULT') { |
|
1177 | + $engines[] = $row['Engine']; |
|
1178 | + } |
|
1114 | 1179 | } |
1115 | 1180 | |
1116 | 1181 | // Done with this now |
@@ -1134,8 +1199,7 @@ discard block |
||
1134 | 1199 | $replaces['START TRANSACTION;'] = ''; |
1135 | 1200 | $replaces['COMMIT;'] = ''; |
1136 | 1201 | } |
1137 | - } |
|
1138 | - else |
|
1202 | + } else |
|
1139 | 1203 | { |
1140 | 1204 | $has_innodb = false; |
1141 | 1205 | } |
@@ -1157,21 +1221,24 @@ discard block |
||
1157 | 1221 | foreach ($sql_lines as $count => $line) |
1158 | 1222 | { |
1159 | 1223 | // No comments allowed! |
1160 | - if (substr(trim($line), 0, 1) != '#') |
|
1161 | - $current_statement .= "\n" . rtrim($line); |
|
1224 | + if (substr(trim($line), 0, 1) != '#') { |
|
1225 | + $current_statement .= "\n" . rtrim($line); |
|
1226 | + } |
|
1162 | 1227 | |
1163 | 1228 | // Is this the end of the query string? |
1164 | - if (empty($current_statement) || (preg_match('~;[\s]*$~s', $line) == 0 && $count != count($sql_lines))) |
|
1165 | - continue; |
|
1229 | + if (empty($current_statement) || (preg_match('~;[\s]*$~s', $line) == 0 && $count != count($sql_lines))) { |
|
1230 | + continue; |
|
1231 | + } |
|
1166 | 1232 | |
1167 | 1233 | // Does this table already exist? If so, don't insert more data into it! |
1168 | 1234 | if (preg_match('~^\s*INSERT INTO ([^\s\n\r]+?)~', $current_statement, $match) != 0 && in_array($match[1], $exists)) |
1169 | 1235 | { |
1170 | 1236 | preg_match_all('~\)[,;]~', $current_statement, $matches); |
1171 | - if (!empty($matches[0])) |
|
1172 | - $incontext['sql_results']['insert_dups'] += count($matches[0]); |
|
1173 | - else |
|
1174 | - $incontext['sql_results']['insert_dups']++; |
|
1237 | + if (!empty($matches[0])) { |
|
1238 | + $incontext['sql_results']['insert_dups'] += count($matches[0]); |
|
1239 | + } else { |
|
1240 | + $incontext['sql_results']['insert_dups']++; |
|
1241 | + } |
|
1175 | 1242 | |
1176 | 1243 | $current_statement = ''; |
1177 | 1244 | continue; |
@@ -1180,8 +1247,9 @@ discard block |
||
1180 | 1247 | if ($smcFunc['db_query']('', $current_statement, array('security_override' => true, 'db_error_skip' => true), $db_connection) === false) |
1181 | 1248 | { |
1182 | 1249 | // Use the appropriate function based on the DB type |
1183 | - if ($db_type == 'mysql' || $db_type == 'mysqli') |
|
1184 | - $db_errorno = $db_type . '_errno'; |
|
1250 | + if ($db_type == 'mysql' || $db_type == 'mysqli') { |
|
1251 | + $db_errorno = $db_type . '_errno'; |
|
1252 | + } |
|
1185 | 1253 | |
1186 | 1254 | // Error 1050: Table already exists! |
1187 | 1255 | // @todo Needs to be made better! |
@@ -1196,18 +1264,18 @@ discard block |
||
1196 | 1264 | // MySQLi requires a connection object. It's optional with MySQL and Postgres |
1197 | 1265 | $incontext['failures'][$count] = $smcFunc['db_error']($db_connection); |
1198 | 1266 | } |
1199 | - } |
|
1200 | - else |
|
1267 | + } else |
|
1201 | 1268 | { |
1202 | - if (preg_match('~^\s*CREATE TABLE ([^\s\n\r]+?)~', $current_statement, $match) == 1) |
|
1203 | - $incontext['sql_results']['tables']++; |
|
1204 | - elseif (preg_match('~^\s*INSERT INTO ([^\s\n\r]+?)~', $current_statement, $match) == 1) |
|
1269 | + if (preg_match('~^\s*CREATE TABLE ([^\s\n\r]+?)~', $current_statement, $match) == 1) { |
|
1270 | + $incontext['sql_results']['tables']++; |
|
1271 | + } elseif (preg_match('~^\s*INSERT INTO ([^\s\n\r]+?)~', $current_statement, $match) == 1) |
|
1205 | 1272 | { |
1206 | 1273 | preg_match_all('~\)[,;]~', $current_statement, $matches); |
1207 | - if (!empty($matches[0])) |
|
1208 | - $incontext['sql_results']['inserts'] += count($matches[0]); |
|
1209 | - else |
|
1210 | - $incontext['sql_results']['inserts']++; |
|
1274 | + if (!empty($matches[0])) { |
|
1275 | + $incontext['sql_results']['inserts'] += count($matches[0]); |
|
1276 | + } else { |
|
1277 | + $incontext['sql_results']['inserts']++; |
|
1278 | + } |
|
1211 | 1279 | } |
1212 | 1280 | } |
1213 | 1281 | |
@@ -1220,15 +1288,17 @@ discard block |
||
1220 | 1288 | // Sort out the context for the SQL. |
1221 | 1289 | foreach ($incontext['sql_results'] as $key => $number) |
1222 | 1290 | { |
1223 | - if ($number == 0) |
|
1224 | - unset($incontext['sql_results'][$key]); |
|
1225 | - else |
|
1226 | - $incontext['sql_results'][$key] = sprintf($txt['db_populate_' . $key], $number); |
|
1291 | + if ($number == 0) { |
|
1292 | + unset($incontext['sql_results'][$key]); |
|
1293 | + } else { |
|
1294 | + $incontext['sql_results'][$key] = sprintf($txt['db_populate_' . $key], $number); |
|
1295 | + } |
|
1227 | 1296 | } |
1228 | 1297 | |
1229 | 1298 | // Make sure UTF will be used globally. |
1230 | - if ((!empty($databases[$db_type]['utf8_support']) && !empty($databases[$db_type]['utf8_required'])) || (empty($databases[$db_type]['utf8_required']) && !empty($databases[$db_type]['utf8_support']) && isset($_POST['utf8']))) |
|
1231 | - $newSettings[] = array('global_character_set', 'UTF-8'); |
|
1299 | + if ((!empty($databases[$db_type]['utf8_support']) && !empty($databases[$db_type]['utf8_required'])) || (empty($databases[$db_type]['utf8_required']) && !empty($databases[$db_type]['utf8_support']) && isset($_POST['utf8']))) { |
|
1300 | + $newSettings[] = array('global_character_set', 'UTF-8'); |
|
1301 | + } |
|
1232 | 1302 | |
1233 | 1303 | // Maybe we can auto-detect better cookie settings? |
1234 | 1304 | preg_match('~^http[s]?://([^\.]+?)([^/]*?)(/.*)?$~', $boardurl, $matches); |
@@ -1239,16 +1309,20 @@ discard block |
||
1239 | 1309 | $globalCookies = false; |
1240 | 1310 | |
1241 | 1311 | // Okay... let's see. Using a subdomain other than www.? (not a perfect check.) |
1242 | - if ($matches[2] != '' && (strpos(substr($matches[2], 1), '.') === false || in_array($matches[1], array('forum', 'board', 'community', 'forums', 'support', 'chat', 'help', 'talk', 'boards', 'www')))) |
|
1243 | - $globalCookies = true; |
|
1312 | + if ($matches[2] != '' && (strpos(substr($matches[2], 1), '.') === false || in_array($matches[1], array('forum', 'board', 'community', 'forums', 'support', 'chat', 'help', 'talk', 'boards', 'www')))) { |
|
1313 | + $globalCookies = true; |
|
1314 | + } |
|
1244 | 1315 | // If there's a / in the middle of the path, or it starts with ~... we want local. |
1245 | - if (isset($matches[3]) && strlen($matches[3]) > 3 && (substr($matches[3], 0, 2) == '/~' || strpos(substr($matches[3], 1), '/') !== false)) |
|
1246 | - $localCookies = true; |
|
1316 | + if (isset($matches[3]) && strlen($matches[3]) > 3 && (substr($matches[3], 0, 2) == '/~' || strpos(substr($matches[3], 1), '/') !== false)) { |
|
1317 | + $localCookies = true; |
|
1318 | + } |
|
1247 | 1319 | |
1248 | - if ($globalCookies) |
|
1249 | - $newSettings[] = array('globalCookies', '1'); |
|
1250 | - if ($localCookies) |
|
1251 | - $newSettings[] = array('localCookies', '1'); |
|
1320 | + if ($globalCookies) { |
|
1321 | + $newSettings[] = array('globalCookies', '1'); |
|
1322 | + } |
|
1323 | + if ($localCookies) { |
|
1324 | + $newSettings[] = array('localCookies', '1'); |
|
1325 | + } |
|
1252 | 1326 | } |
1253 | 1327 | |
1254 | 1328 | // Are we allowing stat collection? |
@@ -1266,16 +1340,17 @@ discard block |
||
1266 | 1340 | fwrite($fp, $out); |
1267 | 1341 | |
1268 | 1342 | $return_data = ''; |
1269 | - while (!feof($fp)) |
|
1270 | - $return_data .= fgets($fp, 128); |
|
1343 | + while (!feof($fp)) { |
|
1344 | + $return_data .= fgets($fp, 128); |
|
1345 | + } |
|
1271 | 1346 | |
1272 | 1347 | fclose($fp); |
1273 | 1348 | |
1274 | 1349 | // Get the unique site ID. |
1275 | 1350 | preg_match('~SITE-ID:\s(\w{10})~', $return_data, $ID); |
1276 | 1351 | |
1277 | - if (!empty($ID[1])) |
|
1278 | - $smcFunc['db_insert']('replace', |
|
1352 | + if (!empty($ID[1])) { |
|
1353 | + $smcFunc['db_insert']('replace', |
|
1279 | 1354 | $db_prefix . 'settings', |
1280 | 1355 | array('variable' => 'string', 'value' => 'string'), |
1281 | 1356 | array( |
@@ -1284,11 +1359,12 @@ discard block |
||
1284 | 1359 | ), |
1285 | 1360 | array('variable') |
1286 | 1361 | ); |
1362 | + } |
|
1287 | 1363 | } |
1288 | 1364 | } |
1289 | 1365 | // Don't remove stat collection unless we unchecked the box for real, not from the loop. |
1290 | - elseif (empty($_POST['stats']) && empty($upcontext['allow_sm_stats'])) |
|
1291 | - $smcFunc['db_query']('', ' |
|
1366 | + elseif (empty($_POST['stats']) && empty($upcontext['allow_sm_stats'])) { |
|
1367 | + $smcFunc['db_query']('', ' |
|
1292 | 1368 | DELETE FROM {db_prefix}settings |
1293 | 1369 | WHERE variable = {string:enable_sm_stats}', |
1294 | 1370 | array( |
@@ -1296,20 +1372,23 @@ discard block |
||
1296 | 1372 | 'db_error_skip' => true, |
1297 | 1373 | ) |
1298 | 1374 | ); |
1375 | + } |
|
1299 | 1376 | |
1300 | 1377 | // Are we enabling SSL? |
1301 | - if (!empty($_POST['force_ssl'])) |
|
1302 | - $newSettings[] = array('force_ssl', 2); |
|
1378 | + if (!empty($_POST['force_ssl'])) { |
|
1379 | + $newSettings[] = array('force_ssl', 2); |
|
1380 | + } |
|
1303 | 1381 | |
1304 | 1382 | // Setting a timezone is required. |
1305 | 1383 | if (!isset($modSettings['default_timezone']) && function_exists('date_default_timezone_set')) |
1306 | 1384 | { |
1307 | 1385 | // Get PHP's default timezone, if set |
1308 | 1386 | $ini_tz = ini_get('date.timezone'); |
1309 | - if (!empty($ini_tz)) |
|
1310 | - $timezone_id = $ini_tz; |
|
1311 | - else |
|
1312 | - $timezone_id = ''; |
|
1387 | + if (!empty($ini_tz)) { |
|
1388 | + $timezone_id = $ini_tz; |
|
1389 | + } else { |
|
1390 | + $timezone_id = ''; |
|
1391 | + } |
|
1313 | 1392 | |
1314 | 1393 | // If date.timezone is unset, invalid, or just plain weird, make a best guess |
1315 | 1394 | if (!in_array($timezone_id, timezone_identifiers_list())) |
@@ -1318,8 +1397,9 @@ discard block |
||
1318 | 1397 | $timezone_id = timezone_name_from_abbr('', $server_offset, 0); |
1319 | 1398 | } |
1320 | 1399 | |
1321 | - if (date_default_timezone_set($timezone_id)) |
|
1322 | - $newSettings[] = array('default_timezone', $timezone_id); |
|
1400 | + if (date_default_timezone_set($timezone_id)) { |
|
1401 | + $newSettings[] = array('default_timezone', $timezone_id); |
|
1402 | + } |
|
1323 | 1403 | } |
1324 | 1404 | |
1325 | 1405 | if (!empty($newSettings)) |
@@ -1350,16 +1430,18 @@ discard block |
||
1350 | 1430 | } |
1351 | 1431 | |
1352 | 1432 | // MySQL specific stuff |
1353 | - if (substr($db_type, 0, 5) != 'mysql') |
|
1354 | - return false; |
|
1433 | + if (substr($db_type, 0, 5) != 'mysql') { |
|
1434 | + return false; |
|
1435 | + } |
|
1355 | 1436 | |
1356 | 1437 | // Find database user privileges. |
1357 | 1438 | $privs = array(); |
1358 | 1439 | $get_privs = $smcFunc['db_query']('', 'SHOW PRIVILEGES', array()); |
1359 | 1440 | while ($row = $smcFunc['db_fetch_assoc']($get_privs)) |
1360 | 1441 | { |
1361 | - if ($row['Privilege'] == 'Alter') |
|
1362 | - $privs[] = $row['Privilege']; |
|
1442 | + if ($row['Privilege'] == 'Alter') { |
|
1443 | + $privs[] = $row['Privilege']; |
|
1444 | + } |
|
1363 | 1445 | } |
1364 | 1446 | $smcFunc['db_free_result']($get_privs); |
1365 | 1447 | |
@@ -1389,8 +1471,9 @@ discard block |
||
1389 | 1471 | $incontext['continue'] = 1; |
1390 | 1472 | |
1391 | 1473 | // Skipping? |
1392 | - if (!empty($_POST['skip'])) |
|
1393 | - return true; |
|
1474 | + if (!empty($_POST['skip'])) { |
|
1475 | + return true; |
|
1476 | + } |
|
1394 | 1477 | |
1395 | 1478 | // Need this to check whether we need the database password. |
1396 | 1479 | require(dirname(__FILE__) . '/Settings.php'); |
@@ -1407,18 +1490,22 @@ discard block |
||
1407 | 1490 | // We need this to properly hash the password for Admin |
1408 | 1491 | $smcFunc['strtolower'] = $db_character_set != 'utf8' && $txt['lang_character_set'] != 'UTF-8' ? 'strtolower' : function($string) { |
1409 | 1492 | global $sourcedir; |
1410 | - if (function_exists('mb_strtolower')) |
|
1411 | - return mb_strtolower($string, 'UTF-8'); |
|
1493 | + if (function_exists('mb_strtolower')) { |
|
1494 | + return mb_strtolower($string, 'UTF-8'); |
|
1495 | + } |
|
1412 | 1496 | require_once($sourcedir . '/Subs-Charset.php'); |
1413 | 1497 | return utf8_strtolower($string); |
1414 | 1498 | }; |
1415 | 1499 | |
1416 | - if (!isset($_POST['username'])) |
|
1417 | - $_POST['username'] = ''; |
|
1418 | - if (!isset($_POST['email'])) |
|
1419 | - $_POST['email'] = ''; |
|
1420 | - if (!isset($_POST['server_email'])) |
|
1421 | - $_POST['server_email'] = ''; |
|
1500 | + if (!isset($_POST['username'])) { |
|
1501 | + $_POST['username'] = ''; |
|
1502 | + } |
|
1503 | + if (!isset($_POST['email'])) { |
|
1504 | + $_POST['email'] = ''; |
|
1505 | + } |
|
1506 | + if (!isset($_POST['server_email'])) { |
|
1507 | + $_POST['server_email'] = ''; |
|
1508 | + } |
|
1422 | 1509 | |
1423 | 1510 | $incontext['username'] = htmlspecialchars(stripslashes($_POST['username'])); |
1424 | 1511 | $incontext['email'] = htmlspecialchars(stripslashes($_POST['email'])); |
@@ -1437,8 +1524,9 @@ discard block |
||
1437 | 1524 | 'admin_group' => 1, |
1438 | 1525 | ) |
1439 | 1526 | ); |
1440 | - if ($smcFunc['db_num_rows']($request) != 0) |
|
1441 | - $incontext['skip'] = 1; |
|
1527 | + if ($smcFunc['db_num_rows']($request) != 0) { |
|
1528 | + $incontext['skip'] = 1; |
|
1529 | + } |
|
1442 | 1530 | $smcFunc['db_free_result']($request); |
1443 | 1531 | |
1444 | 1532 | // Trying to create an account? |
@@ -1469,8 +1557,9 @@ discard block |
||
1469 | 1557 | } |
1470 | 1558 | |
1471 | 1559 | // Update the webmaster's email? |
1472 | - if (!empty($_POST['server_email']) && (empty($webmaster_email) || $webmaster_email == '[email protected]')) |
|
1473 | - updateSettingsFile(array('webmaster_email' => $_POST['server_email'])); |
|
1560 | + if (!empty($_POST['server_email']) && (empty($webmaster_email) || $webmaster_email == '[email protected]')) { |
|
1561 | + updateSettingsFile(array('webmaster_email' => $_POST['server_email'])); |
|
1562 | + } |
|
1474 | 1563 | |
1475 | 1564 | // Work out whether we're going to have dodgy characters and remove them. |
1476 | 1565 | $invalid_characters = preg_match('~[<>&"\'=\\\]~', $_POST['username']) != 0; |
@@ -1493,32 +1582,27 @@ discard block |
||
1493 | 1582 | $smcFunc['db_free_result']($result); |
1494 | 1583 | |
1495 | 1584 | $incontext['account_existed'] = $txt['error_user_settings_taken']; |
1496 | - } |
|
1497 | - elseif ($_POST['username'] == '' || strlen($_POST['username']) > 25) |
|
1585 | + } elseif ($_POST['username'] == '' || strlen($_POST['username']) > 25) |
|
1498 | 1586 | { |
1499 | 1587 | // Try the previous step again. |
1500 | 1588 | $incontext['error'] = $_POST['username'] == '' ? $txt['error_username_left_empty'] : $txt['error_username_too_long']; |
1501 | 1589 | return false; |
1502 | - } |
|
1503 | - elseif ($invalid_characters || $_POST['username'] == '_' || $_POST['username'] == '|' || strpos($_POST['username'], '[code') !== false || strpos($_POST['username'], '[/code') !== false) |
|
1590 | + } elseif ($invalid_characters || $_POST['username'] == '_' || $_POST['username'] == '|' || strpos($_POST['username'], '[code') !== false || strpos($_POST['username'], '[/code') !== false) |
|
1504 | 1591 | { |
1505 | 1592 | // Try the previous step again. |
1506 | 1593 | $incontext['error'] = $txt['error_invalid_characters_username']; |
1507 | 1594 | return false; |
1508 | - } |
|
1509 | - elseif (empty($_POST['email']) || !filter_var(stripslashes($_POST['email']), FILTER_VALIDATE_EMAIL) || strlen(stripslashes($_POST['email'])) > 255) |
|
1595 | + } elseif (empty($_POST['email']) || !filter_var(stripslashes($_POST['email']), FILTER_VALIDATE_EMAIL) || strlen(stripslashes($_POST['email'])) > 255) |
|
1510 | 1596 | { |
1511 | 1597 | // One step back, this time fill out a proper admin email address. |
1512 | 1598 | $incontext['error'] = sprintf($txt['error_valid_admin_email_needed'], $_POST['username']); |
1513 | 1599 | return false; |
1514 | - } |
|
1515 | - elseif (empty($_POST['server_email']) || !filter_var(stripslashes($_POST['server_email']), FILTER_VALIDATE_EMAIL) || strlen(stripslashes($_POST['server_email'])) > 255) |
|
1600 | + } elseif (empty($_POST['server_email']) || !filter_var(stripslashes($_POST['server_email']), FILTER_VALIDATE_EMAIL) || strlen(stripslashes($_POST['server_email'])) > 255) |
|
1516 | 1601 | { |
1517 | 1602 | // One step back, this time fill out a proper admin email address. |
1518 | 1603 | $incontext['error'] = $txt['error_valid_server_email_needed']; |
1519 | 1604 | return false; |
1520 | - } |
|
1521 | - elseif ($_POST['username'] != '') |
|
1605 | + } elseif ($_POST['username'] != '') |
|
1522 | 1606 | { |
1523 | 1607 | $incontext['member_salt'] = substr(md5(mt_rand()), 0, 4); |
1524 | 1608 | |
@@ -1586,17 +1670,19 @@ discard block |
||
1586 | 1670 | reloadSettings(); |
1587 | 1671 | |
1588 | 1672 | // Bring a warning over. |
1589 | - if (!empty($incontext['account_existed'])) |
|
1590 | - $incontext['warning'] = $incontext['account_existed']; |
|
1673 | + if (!empty($incontext['account_existed'])) { |
|
1674 | + $incontext['warning'] = $incontext['account_existed']; |
|
1675 | + } |
|
1591 | 1676 | |
1592 | - if (!empty($db_character_set) && !empty($databases[$db_type]['utf8_support'])) |
|
1593 | - $smcFunc['db_query']('', ' |
|
1677 | + if (!empty($db_character_set) && !empty($databases[$db_type]['utf8_support'])) { |
|
1678 | + $smcFunc['db_query']('', ' |
|
1594 | 1679 | SET NAMES {string:db_character_set}', |
1595 | 1680 | array( |
1596 | 1681 | 'db_character_set' => $db_character_set, |
1597 | 1682 | 'db_error_skip' => true, |
1598 | 1683 | ) |
1599 | 1684 | ); |
1685 | + } |
|
1600 | 1686 | |
1601 | 1687 | // As track stats is by default enabled let's add some activity. |
1602 | 1688 | $smcFunc['db_insert']('ignore', |
@@ -1617,14 +1703,16 @@ discard block |
||
1617 | 1703 | // Only proceed if we can load the data. |
1618 | 1704 | if ($request) |
1619 | 1705 | { |
1620 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
1621 | - $modSettings[$row[0]] = $row[1]; |
|
1706 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
1707 | + $modSettings[$row[0]] = $row[1]; |
|
1708 | + } |
|
1622 | 1709 | $smcFunc['db_free_result']($request); |
1623 | 1710 | } |
1624 | 1711 | |
1625 | 1712 | // Automatically log them in ;) |
1626 | - if (isset($incontext['member_id']) && isset($incontext['member_salt'])) |
|
1627 | - setLoginCookie(3153600 * 60, $incontext['member_id'], hash_salt($_POST['password1'], $incontext['member_salt'])); |
|
1713 | + if (isset($incontext['member_id']) && isset($incontext['member_salt'])) { |
|
1714 | + setLoginCookie(3153600 * 60, $incontext['member_id'], hash_salt($_POST['password1'], $incontext['member_salt'])); |
|
1715 | + } |
|
1628 | 1716 | |
1629 | 1717 | $result = $smcFunc['db_query']('', ' |
1630 | 1718 | SELECT value |
@@ -1635,13 +1723,14 @@ discard block |
||
1635 | 1723 | 'db_error_skip' => true, |
1636 | 1724 | ) |
1637 | 1725 | ); |
1638 | - if ($smcFunc['db_num_rows']($result) != 0) |
|
1639 | - list ($db_sessions) = $smcFunc['db_fetch_row']($result); |
|
1726 | + if ($smcFunc['db_num_rows']($result) != 0) { |
|
1727 | + list ($db_sessions) = $smcFunc['db_fetch_row']($result); |
|
1728 | + } |
|
1640 | 1729 | $smcFunc['db_free_result']($result); |
1641 | 1730 | |
1642 | - if (empty($db_sessions)) |
|
1643 | - $_SESSION['admin_time'] = time(); |
|
1644 | - else |
|
1731 | + if (empty($db_sessions)) { |
|
1732 | + $_SESSION['admin_time'] = time(); |
|
1733 | + } else |
|
1645 | 1734 | { |
1646 | 1735 | $_SERVER['HTTP_USER_AGENT'] = substr($_SERVER['HTTP_USER_AGENT'], 0, 211); |
1647 | 1736 | |
@@ -1665,8 +1754,9 @@ discard block |
||
1665 | 1754 | $smcFunc['strtolower'] = $db_character_set != 'utf8' && $txt['lang_character_set'] != 'UTF-8' ? 'strtolower' : |
1666 | 1755 | function($string){ |
1667 | 1756 | global $sourcedir; |
1668 | - if (function_exists('mb_strtolower')) |
|
1669 | - return mb_strtolower($string, 'UTF-8'); |
|
1757 | + if (function_exists('mb_strtolower')) { |
|
1758 | + return mb_strtolower($string, 'UTF-8'); |
|
1759 | + } |
|
1670 | 1760 | require_once($sourcedir . '/Subs-Charset.php'); |
1671 | 1761 | return utf8_strtolower($string); |
1672 | 1762 | }; |
@@ -1682,8 +1772,9 @@ discard block |
||
1682 | 1772 | ) |
1683 | 1773 | ); |
1684 | 1774 | $context['utf8'] = $db_character_set === 'utf8' || $txt['lang_character_set'] === 'UTF-8'; |
1685 | - if ($smcFunc['db_num_rows']($request) > 0) |
|
1686 | - updateStats('subject', 1, htmlspecialchars($txt['default_topic_subject'])); |
|
1775 | + if ($smcFunc['db_num_rows']($request) > 0) { |
|
1776 | + updateStats('subject', 1, htmlspecialchars($txt['default_topic_subject'])); |
|
1777 | + } |
|
1687 | 1778 | $smcFunc['db_free_result']($request); |
1688 | 1779 | |
1689 | 1780 | // Now is the perfect time to fetch the SM files. |
@@ -1702,8 +1793,9 @@ discard block |
||
1702 | 1793 | |
1703 | 1794 | // Check if we need some stupid MySQL fix. |
1704 | 1795 | $server_version = $smcFunc['db_server_info'](); |
1705 | - if (($db_type == 'mysql' || $db_type == 'mysqli') && in_array(substr($server_version, 0, 6), array('5.0.50', '5.0.51'))) |
|
1706 | - updateSettings(array('db_mysql_group_by_fix' => '1')); |
|
1796 | + if (($db_type == 'mysql' || $db_type == 'mysqli') && in_array(substr($server_version, 0, 6), array('5.0.50', '5.0.51'))) { |
|
1797 | + updateSettings(array('db_mysql_group_by_fix' => '1')); |
|
1798 | + } |
|
1707 | 1799 | |
1708 | 1800 | // Some final context for the template. |
1709 | 1801 | $incontext['dir_still_writable'] = is_writable(dirname(__FILE__)) && substr(__FILE__, 1, 2) != ':\\'; |
@@ -1723,8 +1815,9 @@ discard block |
||
1723 | 1815 | $settingsArray = file(dirname(__FILE__) . '/Settings.php'); |
1724 | 1816 | |
1725 | 1817 | // @todo Do we just want to read the file in clean, and split it this way always? |
1726 | - if (count($settingsArray) == 1) |
|
1727 | - $settingsArray = preg_split('~[\r\n]~', $settingsArray[0]); |
|
1818 | + if (count($settingsArray) == 1) { |
|
1819 | + $settingsArray = preg_split('~[\r\n]~', $settingsArray[0]); |
|
1820 | + } |
|
1728 | 1821 | |
1729 | 1822 | for ($i = 0, $n = count($settingsArray); $i < $n; $i++) |
1730 | 1823 | { |
@@ -1739,19 +1832,22 @@ discard block |
||
1739 | 1832 | continue; |
1740 | 1833 | } |
1741 | 1834 | |
1742 | - if (trim($settingsArray[$i]) == '?' . '>') |
|
1743 | - $settingsArray[$i] = ''; |
|
1835 | + if (trim($settingsArray[$i]) == '?' . '>') { |
|
1836 | + $settingsArray[$i] = ''; |
|
1837 | + } |
|
1744 | 1838 | |
1745 | 1839 | // Don't trim or bother with it if it's not a variable. |
1746 | - if (substr($settingsArray[$i], 0, 1) != '$') |
|
1747 | - continue; |
|
1840 | + if (substr($settingsArray[$i], 0, 1) != '$') { |
|
1841 | + continue; |
|
1842 | + } |
|
1748 | 1843 | |
1749 | 1844 | $settingsArray[$i] = rtrim($settingsArray[$i]) . "\n"; |
1750 | 1845 | |
1751 | - foreach ($vars as $var => $val) |
|
1752 | - if (strncasecmp($settingsArray[$i], '$' . $var, 1 + strlen($var)) == 0) |
|
1846 | + foreach ($vars as $var => $val) { |
|
1847 | + if (strncasecmp($settingsArray[$i], '$' . $var, 1 + strlen($var)) == 0) |
|
1753 | 1848 | { |
1754 | 1849 | $comment = strstr($settingsArray[$i], '#'); |
1850 | + } |
|
1755 | 1851 | $settingsArray[$i] = '$' . $var . ' = \'' . $val . '\';' . ($comment != '' ? "\t\t" . $comment : "\n"); |
1756 | 1852 | unset($vars[$var]); |
1757 | 1853 | } |
@@ -1761,36 +1857,41 @@ discard block |
||
1761 | 1857 | if (!empty($vars)) |
1762 | 1858 | { |
1763 | 1859 | $settingsArray[$i++] = ''; |
1764 | - foreach ($vars as $var => $val) |
|
1765 | - $settingsArray[$i++] = '$' . $var . ' = \'' . $val . '\';' . "\n"; |
|
1860 | + foreach ($vars as $var => $val) { |
|
1861 | + $settingsArray[$i++] = '$' . $var . ' = \'' . $val . '\';' . "\n"; |
|
1862 | + } |
|
1766 | 1863 | } |
1767 | 1864 | |
1768 | 1865 | // Blank out the file - done to fix a oddity with some servers. |
1769 | 1866 | $fp = @fopen(dirname(__FILE__) . '/Settings.php', 'w'); |
1770 | - if (!$fp) |
|
1771 | - return false; |
|
1867 | + if (!$fp) { |
|
1868 | + return false; |
|
1869 | + } |
|
1772 | 1870 | fclose($fp); |
1773 | 1871 | |
1774 | 1872 | $fp = fopen(dirname(__FILE__) . '/Settings.php', 'r+'); |
1775 | 1873 | |
1776 | 1874 | // Gotta have one of these ;) |
1777 | - if (trim($settingsArray[0]) != '<?php') |
|
1778 | - fwrite($fp, "<?php\n"); |
|
1875 | + if (trim($settingsArray[0]) != '<?php') { |
|
1876 | + fwrite($fp, "<?php\n"); |
|
1877 | + } |
|
1779 | 1878 | |
1780 | 1879 | $lines = count($settingsArray); |
1781 | 1880 | for ($i = 0; $i < $lines - 1; $i++) |
1782 | 1881 | { |
1783 | 1882 | // Don't just write a bunch of blank lines. |
1784 | - if ($settingsArray[$i] != '' || @$settingsArray[$i - 1] != '') |
|
1785 | - fwrite($fp, strtr($settingsArray[$i], "\r", '')); |
|
1883 | + if ($settingsArray[$i] != '' || @$settingsArray[$i - 1] != '') { |
|
1884 | + fwrite($fp, strtr($settingsArray[$i], "\r", '')); |
|
1885 | + } |
|
1786 | 1886 | } |
1787 | 1887 | fwrite($fp, $settingsArray[$i] . '?' . '>'); |
1788 | 1888 | fclose($fp); |
1789 | 1889 | |
1790 | 1890 | // Even though on normal installations the filemtime should prevent this being used by the installer incorrectly |
1791 | 1891 | // it seems that there are times it might not. So let's MAKE it dump the cache. |
1792 | - if (function_exists('opcache_invalidate')) |
|
1793 | - opcache_invalidate(dirname(__FILE__) . '/Settings.php', true); |
|
1892 | + if (function_exists('opcache_invalidate')) { |
|
1893 | + opcache_invalidate(dirname(__FILE__) . '/Settings.php', true); |
|
1894 | + } |
|
1794 | 1895 | |
1795 | 1896 | return true; |
1796 | 1897 | } |
@@ -1815,9 +1916,9 @@ discard block |
||
1815 | 1916 | SecFilterScanPOST Off |
1816 | 1917 | </IfModule>'; |
1817 | 1918 | |
1818 | - if (!function_exists('apache_get_modules') || !in_array('mod_security', apache_get_modules())) |
|
1819 | - return true; |
|
1820 | - elseif (file_exists(dirname(__FILE__) . '/.htaccess') && is_writable(dirname(__FILE__) . '/.htaccess')) |
|
1919 | + if (!function_exists('apache_get_modules') || !in_array('mod_security', apache_get_modules())) { |
|
1920 | + return true; |
|
1921 | + } elseif (file_exists(dirname(__FILE__) . '/.htaccess') && is_writable(dirname(__FILE__) . '/.htaccess')) |
|
1821 | 1922 | { |
1822 | 1923 | $current_htaccess = implode('', file(dirname(__FILE__) . '/.htaccess')); |
1823 | 1924 | |
@@ -1829,29 +1930,28 @@ discard block |
||
1829 | 1930 | fwrite($ht_handle, $htaccess_addition); |
1830 | 1931 | fclose($ht_handle); |
1831 | 1932 | return true; |
1933 | + } else { |
|
1934 | + return false; |
|
1832 | 1935 | } |
1833 | - else |
|
1834 | - return false; |
|
1936 | + } else { |
|
1937 | + return true; |
|
1835 | 1938 | } |
1836 | - else |
|
1837 | - return true; |
|
1838 | - } |
|
1839 | - elseif (file_exists(dirname(__FILE__) . '/.htaccess')) |
|
1840 | - return strpos(implode('', file(dirname(__FILE__) . '/.htaccess')), '<IfModule mod_security.c>') !== false; |
|
1841 | - elseif (is_writable(dirname(__FILE__))) |
|
1939 | + } elseif (file_exists(dirname(__FILE__) . '/.htaccess')) { |
|
1940 | + return strpos(implode('', file(dirname(__FILE__) . '/.htaccess')), '<IfModule mod_security.c>') !== false; |
|
1941 | + } elseif (is_writable(dirname(__FILE__))) |
|
1842 | 1942 | { |
1843 | 1943 | if ($ht_handle = fopen(dirname(__FILE__) . '/.htaccess', 'w')) |
1844 | 1944 | { |
1845 | 1945 | fwrite($ht_handle, $htaccess_addition); |
1846 | 1946 | fclose($ht_handle); |
1847 | 1947 | return true; |
1948 | + } else { |
|
1949 | + return false; |
|
1848 | 1950 | } |
1849 | - else |
|
1951 | + } else { |
|
1850 | 1952 | return false; |
1851 | 1953 | } |
1852 | - else |
|
1853 | - return false; |
|
1854 | -} |
|
1954 | + } |
|
1855 | 1955 | |
1856 | 1956 | function template_install_above() |
1857 | 1957 | { |
@@ -1889,9 +1989,10 @@ discard block |
||
1889 | 1989 | <label for="installer_language">', $txt['installer_language'], ':</label> |
1890 | 1990 | <select id="installer_language" name="lang_file" onchange="location.href = \'', $installurl, '?lang_file=\' + this.options[this.selectedIndex].value;">'; |
1891 | 1991 | |
1892 | - foreach ($incontext['detected_languages'] as $lang => $name) |
|
1893 | - echo ' |
|
1992 | + foreach ($incontext['detected_languages'] as $lang => $name) { |
|
1993 | + echo ' |
|
1894 | 1994 | <option', isset($_SESSION['installer_temp_lang']) && $_SESSION['installer_temp_lang'] == $lang ? ' selected' : '', ' value="', $lang, '">', $name, '</option>'; |
1995 | + } |
|
1895 | 1996 | |
1896 | 1997 | echo ' |
1897 | 1998 | </select> |
@@ -1911,9 +2012,10 @@ discard block |
||
1911 | 2012 | <h2>', $txt['upgrade_progress'], '</h2> |
1912 | 2013 | <ul>'; |
1913 | 2014 | |
1914 | - foreach ($incontext['steps'] as $num => $step) |
|
1915 | - echo ' |
|
2015 | + foreach ($incontext['steps'] as $num => $step) { |
|
2016 | + echo ' |
|
1916 | 2017 | <li class="', $num < $incontext['current_step'] ? 'stepdone' : ($num == $incontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>'; |
2018 | + } |
|
1917 | 2019 | |
1918 | 2020 | echo ' |
1919 | 2021 | </ul> |
@@ -1938,20 +2040,23 @@ discard block |
||
1938 | 2040 | echo ' |
1939 | 2041 | <div>'; |
1940 | 2042 | |
1941 | - if (!empty($incontext['continue'])) |
|
1942 | - echo ' |
|
2043 | + if (!empty($incontext['continue'])) { |
|
2044 | + echo ' |
|
1943 | 2045 | <input type="submit" id="contbutt" name="contbutt" value="', $txt['upgrade_continue'], '" onclick="return submitThisOnce(this);" class="button" />'; |
1944 | - if (!empty($incontext['skip'])) |
|
1945 | - echo ' |
|
2046 | + } |
|
2047 | + if (!empty($incontext['skip'])) { |
|
2048 | + echo ' |
|
1946 | 2049 | <input type="submit" id="skip" name="skip" value="', $txt['upgrade_skip'], '" onclick="return submitThisOnce(this);" class="button" />'; |
2050 | + } |
|
1947 | 2051 | echo ' |
1948 | 2052 | </div>'; |
1949 | 2053 | } |
1950 | 2054 | |
1951 | 2055 | // Show the closing form tag and other data only if not in the last step |
1952 | - if (count($incontext['steps']) - 1 !== (int) $incontext['current_step']) |
|
1953 | - echo ' |
|
2056 | + if (count($incontext['steps']) - 1 !== (int) $incontext['current_step']) { |
|
2057 | + echo ' |
|
1954 | 2058 | </form>'; |
2059 | + } |
|
1955 | 2060 | |
1956 | 2061 | echo ' |
1957 | 2062 | </div> |
@@ -1986,13 +2091,15 @@ discard block |
||
1986 | 2091 | </div>'; |
1987 | 2092 | |
1988 | 2093 | // Show the warnings, or not. |
1989 | - if (template_warning_divs()) |
|
1990 | - echo ' |
|
2094 | + if (template_warning_divs()) { |
|
2095 | + echo ' |
|
1991 | 2096 | <h3>', $txt['install_all_lovely'], '</h3>'; |
2097 | + } |
|
1992 | 2098 | |
1993 | 2099 | // Say we want the continue button! |
1994 | - if (empty($incontext['error'])) |
|
1995 | - $incontext['continue'] = 1; |
|
2100 | + if (empty($incontext['error'])) { |
|
2101 | + $incontext['continue'] = 1; |
|
2102 | + } |
|
1996 | 2103 | |
1997 | 2104 | // For the latest version stuff. |
1998 | 2105 | echo ' |
@@ -2026,8 +2133,8 @@ discard block |
||
2026 | 2133 | global $txt, $incontext; |
2027 | 2134 | |
2028 | 2135 | // Errors are very serious.. |
2029 | - if (!empty($incontext['error'])) |
|
2030 | - echo ' |
|
2136 | + if (!empty($incontext['error'])) { |
|
2137 | + echo ' |
|
2031 | 2138 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
2032 | 2139 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
2033 | 2140 | <strong style="text-decoration: underline;">', $txt['upgrade_critical_error'], '</strong><br> |
@@ -2035,9 +2142,10 @@ discard block |
||
2035 | 2142 | ', $incontext['error'], ' |
2036 | 2143 | </div> |
2037 | 2144 | </div>'; |
2145 | + } |
|
2038 | 2146 | // A warning message? |
2039 | - elseif (!empty($incontext['warning'])) |
|
2040 | - echo ' |
|
2147 | + elseif (!empty($incontext['warning'])) { |
|
2148 | + echo ' |
|
2041 | 2149 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
2042 | 2150 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
2043 | 2151 | <strong style="text-decoration: underline;">', $txt['upgrade_warning'], '</strong><br> |
@@ -2045,6 +2153,7 @@ discard block |
||
2045 | 2153 | ', $incontext['warning'], ' |
2046 | 2154 | </div> |
2047 | 2155 | </div>'; |
2156 | + } |
|
2048 | 2157 | |
2049 | 2158 | return empty($incontext['error']) && empty($incontext['warning']); |
2050 | 2159 | } |
@@ -2060,27 +2169,30 @@ discard block |
||
2060 | 2169 | <li>', $incontext['failed_files']), '</li> |
2061 | 2170 | </ul>'; |
2062 | 2171 | |
2063 | - if (isset($incontext['systemos'], $incontext['detected_path']) && $incontext['systemos'] == 'linux') |
|
2064 | - echo ' |
|
2172 | + if (isset($incontext['systemos'], $incontext['detected_path']) && $incontext['systemos'] == 'linux') { |
|
2173 | + echo ' |
|
2065 | 2174 | <hr> |
2066 | 2175 | <p>', $txt['chmod_linux_info'], '</p> |
2067 | 2176 | <tt># chmod a+w ', implode(' ' . $incontext['detected_path'] . '/', $incontext['failed_files']), '</tt>'; |
2177 | + } |
|
2068 | 2178 | |
2069 | 2179 | // This is serious! |
2070 | - if (!template_warning_divs()) |
|
2071 | - return; |
|
2180 | + if (!template_warning_divs()) { |
|
2181 | + return; |
|
2182 | + } |
|
2072 | 2183 | |
2073 | 2184 | echo ' |
2074 | 2185 | <hr> |
2075 | 2186 | <p>', $txt['ftp_setup_info'], '</p>'; |
2076 | 2187 | |
2077 | - if (!empty($incontext['ftp_errors'])) |
|
2078 | - echo ' |
|
2188 | + if (!empty($incontext['ftp_errors'])) { |
|
2189 | + echo ' |
|
2079 | 2190 | <div class="error_message"> |
2080 | 2191 | ', $txt['error_ftp_no_connect'], '<br><br> |
2081 | 2192 | <code>', implode('<br>', $incontext['ftp_errors']), '</code> |
2082 | 2193 | </div> |
2083 | 2194 | <br>'; |
2195 | + } |
|
2084 | 2196 | |
2085 | 2197 | echo ' |
2086 | 2198 | <form action="', $incontext['form_url'], '" method="post"> |
@@ -2140,17 +2252,17 @@ discard block |
||
2140 | 2252 | <td> |
2141 | 2253 | <select name="db_type" id="db_type_input" onchange="toggleDBInput();">'; |
2142 | 2254 | |
2143 | - foreach ($incontext['supported_databases'] as $key => $db) |
|
2144 | - echo ' |
|
2255 | + foreach ($incontext['supported_databases'] as $key => $db) { |
|
2256 | + echo ' |
|
2145 | 2257 | <option value="', $key, '"', isset($_POST['db_type']) && $_POST['db_type'] == $key ? ' selected' : '', '>', $db['name'], '</option>'; |
2258 | + } |
|
2146 | 2259 | |
2147 | 2260 | echo ' |
2148 | 2261 | </select> |
2149 | 2262 | <div class="smalltext block">', $txt['db_settings_type_info'], '</div> |
2150 | 2263 | </td> |
2151 | 2264 | </tr>'; |
2152 | - } |
|
2153 | - else |
|
2265 | + } else |
|
2154 | 2266 | { |
2155 | 2267 | echo ' |
2156 | 2268 | <tr style="display: none;"> |
@@ -2343,9 +2455,10 @@ discard block |
||
2343 | 2455 | <div style="color: red;">', $txt['error_db_queries'], '</div> |
2344 | 2456 | <ul>'; |
2345 | 2457 | |
2346 | - foreach ($incontext['failures'] as $line => $fail) |
|
2347 | - echo ' |
|
2458 | + foreach ($incontext['failures'] as $line => $fail) { |
|
2459 | + echo ' |
|
2348 | 2460 | <li><strong>', $txt['error_db_queries_line'], $line + 1, ':</strong> ', nl2br(htmlspecialchars($fail)), '</li>'; |
2461 | + } |
|
2349 | 2462 | |
2350 | 2463 | echo ' |
2351 | 2464 | </ul>'; |
@@ -2406,15 +2519,16 @@ discard block |
||
2406 | 2519 | </tr> |
2407 | 2520 | </table>'; |
2408 | 2521 | |
2409 | - if ($incontext['require_db_confirm']) |
|
2410 | - echo ' |
|
2522 | + if ($incontext['require_db_confirm']) { |
|
2523 | + echo ' |
|
2411 | 2524 | <h2>', $txt['user_settings_database'], '</h2> |
2412 | 2525 | <p>', $txt['user_settings_database_info'], '</p> |
2413 | 2526 | |
2414 | 2527 | <div style="margin-bottom: 2ex; padding-', $txt['lang_rtl'] == false ? 'left' : 'right', ': 50px;"> |
2415 | 2528 | <input type="password" name="password3" size="30" /> |
2416 | 2529 | </div>'; |
2417 | -} |
|
2530 | + } |
|
2531 | + } |
|
2418 | 2532 | |
2419 | 2533 | // Tell them it's done, and to delete. |
2420 | 2534 | function template_delete_install() |
@@ -2427,14 +2541,15 @@ discard block |
||
2427 | 2541 | template_warning_divs(); |
2428 | 2542 | |
2429 | 2543 | // Install directory still writable? |
2430 | - if ($incontext['dir_still_writable']) |
|
2431 | - echo ' |
|
2544 | + if ($incontext['dir_still_writable']) { |
|
2545 | + echo ' |
|
2432 | 2546 | <em>', $txt['still_writable'], '</em><br> |
2433 | 2547 | <br>'; |
2548 | + } |
|
2434 | 2549 | |
2435 | 2550 | // Don't show the box if it's like 99% sure it won't work :P. |
2436 | - if ($incontext['probably_delete_install']) |
|
2437 | - echo ' |
|
2551 | + if ($incontext['probably_delete_install']) { |
|
2552 | + echo ' |
|
2438 | 2553 | <div style="margin: 1ex; font-weight: bold;"> |
2439 | 2554 | <label for="delete_self"><input type="checkbox" id="delete_self" onclick="doTheDelete();" /> ', $txt['delete_installer'], !isset($_SESSION['installer_temp_ftp']) ? ' ' . $txt['delete_installer_maybe'] : '', '</label> |
2440 | 2555 | </div> |
@@ -2450,6 +2565,7 @@ discard block |
||
2450 | 2565 | } |
2451 | 2566 | </script> |
2452 | 2567 | <br>'; |
2568 | + } |
|
2453 | 2569 | |
2454 | 2570 | echo ' |
2455 | 2571 | ', sprintf($txt['go_to_your_forum'], $boardurl . '/index.php'), '<br> |
@@ -75,8 +75,9 @@ discard block |
||
75 | 75 | $upcontext['inactive_timeout'] = 10; |
76 | 76 | |
77 | 77 | // The helper is crucial. Include it first thing. |
78 | -if (!file_exists($upgrade_path . '/upgrade-helper.php')) |
|
78 | +if (!file_exists($upgrade_path . '/upgrade-helper.php')) { |
|
79 | 79 | die('upgrade-helper.php not found where it was expected: ' . $upgrade_path . '/upgrade-helper.php! Make sure you have uploaded ALL files from the upgrade package. The upgrader cannot continue.'); |
80 | +} |
|
80 | 81 | |
81 | 82 | require_once($upgrade_path . '/upgrade-helper.php'); |
82 | 83 | |
@@ -100,11 +101,14 @@ discard block |
||
100 | 101 | ini_set('default_socket_timeout', 900); |
101 | 102 | } |
102 | 103 | // Clean the upgrade path if this is from the client. |
103 | -if (!empty($_SERVER['argv']) && php_sapi_name() == 'cli' && empty($_SERVER['REMOTE_ADDR'])) |
|
104 | - for ($i = 1; $i < $_SERVER['argc']; $i++) |
|
104 | +if (!empty($_SERVER['argv']) && php_sapi_name() == 'cli' && empty($_SERVER['REMOTE_ADDR'])) { |
|
105 | + for ($i = 1; |
|
106 | +} |
|
107 | +$i < $_SERVER['argc']; $i++) |
|
105 | 108 | { |
106 | - if (preg_match('~^--path=(.+)$~', $_SERVER['argv'][$i], $match) != 0) |
|
107 | - $upgrade_path = substr($match[1], -1) == '/' ? substr($match[1], 0, -1) : $match[1]; |
|
109 | + if (preg_match('~^--path=(.+)$~', $_SERVER['argv'][$i], $match) != 0) { |
|
110 | + $upgrade_path = substr($match[1], -1) == '/' ? substr($match[1], 0, -1) : $match[1]; |
|
111 | + } |
|
108 | 112 | } |
109 | 113 | |
110 | 114 | // Are we from the client? |
@@ -112,16 +116,17 @@ discard block |
||
112 | 116 | { |
113 | 117 | $command_line = true; |
114 | 118 | $disable_security = true; |
115 | -} |
|
116 | -else |
|
119 | +} else { |
|
117 | 120 | $command_line = false; |
121 | +} |
|
118 | 122 | |
119 | 123 | // Load this now just because we can. |
120 | 124 | require_once($upgrade_path . '/Settings.php'); |
121 | 125 | |
122 | 126 | // We don't use "-utf8" anymore... Tweak the entry that may have been loaded by Settings.php |
123 | -if (isset($language)) |
|
127 | +if (isset($language)) { |
|
124 | 128 | $language = str_ireplace('-utf8', '', $language); |
129 | +} |
|
125 | 130 | |
126 | 131 | // Are we logged in? |
127 | 132 | if (isset($upgradeData)) |
@@ -129,10 +134,12 @@ discard block |
||
129 | 134 | $upcontext['user'] = json_decode(base64_decode($upgradeData), true); |
130 | 135 | |
131 | 136 | // Check for sensible values. |
132 | - if (empty($upcontext['user']['started']) || $upcontext['user']['started'] < time() - 86400) |
|
133 | - $upcontext['user']['started'] = time(); |
|
134 | - if (empty($upcontext['user']['updated']) || $upcontext['user']['updated'] < time() - 86400) |
|
135 | - $upcontext['user']['updated'] = 0; |
|
137 | + if (empty($upcontext['user']['started']) || $upcontext['user']['started'] < time() - 86400) { |
|
138 | + $upcontext['user']['started'] = time(); |
|
139 | + } |
|
140 | + if (empty($upcontext['user']['updated']) || $upcontext['user']['updated'] < time() - 86400) { |
|
141 | + $upcontext['user']['updated'] = 0; |
|
142 | + } |
|
136 | 143 | |
137 | 144 | $upcontext['started'] = $upcontext['user']['started']; |
138 | 145 | $upcontext['updated'] = $upcontext['user']['updated']; |
@@ -197,8 +204,9 @@ discard block |
||
197 | 204 | 'db_error_skip' => true, |
198 | 205 | ) |
199 | 206 | ); |
200 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
201 | - $modSettings[$row['variable']] = $row['value']; |
|
207 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
208 | + $modSettings[$row['variable']] = $row['value']; |
|
209 | + } |
|
202 | 210 | $smcFunc['db_free_result']($request); |
203 | 211 | } |
204 | 212 | |
@@ -208,10 +216,12 @@ discard block |
||
208 | 216 | $modSettings['theme_url'] = 'Themes/default'; |
209 | 217 | $modSettings['images_url'] = 'Themes/default/images'; |
210 | 218 | } |
211 | -if (!isset($settings['default_theme_url'])) |
|
219 | +if (!isset($settings['default_theme_url'])) { |
|
212 | 220 | $settings['default_theme_url'] = $modSettings['theme_url']; |
213 | -if (!isset($settings['default_theme_dir'])) |
|
221 | +} |
|
222 | +if (!isset($settings['default_theme_dir'])) { |
|
214 | 223 | $settings['default_theme_dir'] = $modSettings['theme_dir']; |
224 | +} |
|
215 | 225 | |
216 | 226 | $upcontext['is_large_forum'] = (empty($modSettings['smfVersion']) || $modSettings['smfVersion'] <= '1.1 RC1') && !empty($modSettings['totalMessages']) && $modSettings['totalMessages'] > 75000; |
217 | 227 | // Default title... |
@@ -229,13 +239,15 @@ discard block |
||
229 | 239 | $support_js = $upcontext['upgrade_status']['js']; |
230 | 240 | |
231 | 241 | // Only set this if the upgrader status says so. |
232 | - if (empty($is_debug)) |
|
233 | - $is_debug = $upcontext['upgrade_status']['debug']; |
|
242 | + if (empty($is_debug)) { |
|
243 | + $is_debug = $upcontext['upgrade_status']['debug']; |
|
244 | + } |
|
234 | 245 | |
235 | 246 | // Load the language. |
236 | - if (file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) |
|
237 | - require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
238 | -} |
|
247 | + if (file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) { |
|
248 | + require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
249 | + } |
|
250 | + } |
|
239 | 251 | // Set the defaults. |
240 | 252 | else |
241 | 253 | { |
@@ -253,15 +265,18 @@ discard block |
||
253 | 265 | } |
254 | 266 | |
255 | 267 | // If this isn't the first stage see whether they are logging in and resuming. |
256 | -if ($upcontext['current_step'] != 0 || !empty($upcontext['user']['step'])) |
|
268 | +if ($upcontext['current_step'] != 0 || !empty($upcontext['user']['step'])) { |
|
257 | 269 | checkLogin(); |
270 | +} |
|
258 | 271 | |
259 | -if ($command_line) |
|
272 | +if ($command_line) { |
|
260 | 273 | cmdStep0(); |
274 | +} |
|
261 | 275 | |
262 | 276 | // Don't error if we're using xml. |
263 | -if (isset($_GET['xml'])) |
|
277 | +if (isset($_GET['xml'])) { |
|
264 | 278 | $upcontext['return_error'] = true; |
279 | +} |
|
265 | 280 | |
266 | 281 | // Loop through all the steps doing each one as required. |
267 | 282 | $upcontext['overall_percent'] = 0; |
@@ -282,9 +297,9 @@ discard block |
||
282 | 297 | } |
283 | 298 | |
284 | 299 | // Call the step and if it returns false that means pause! |
285 | - if (function_exists($step[2]) && $step[2]() === false) |
|
286 | - break; |
|
287 | - elseif (function_exists($step[2])) { |
|
300 | + if (function_exists($step[2]) && $step[2]() === false) { |
|
301 | + break; |
|
302 | + } elseif (function_exists($step[2])) { |
|
288 | 303 | //Start each new step with this unset, so the 'normal' template is called first |
289 | 304 | unset($_GET['xml']); |
290 | 305 | //Clear out warnings at the start of each step |
@@ -330,17 +345,18 @@ discard block |
||
330 | 345 | // This should not happen my dear... HELP ME DEVELOPERS!! |
331 | 346 | if (!empty($command_line)) |
332 | 347 | { |
333 | - if (function_exists('debug_print_backtrace')) |
|
334 | - debug_print_backtrace(); |
|
348 | + if (function_exists('debug_print_backtrace')) { |
|
349 | + debug_print_backtrace(); |
|
350 | + } |
|
335 | 351 | |
336 | 352 | echo "\n" . 'Error: Unexpected call to use the ' . (isset($upcontext['sub_template']) ? $upcontext['sub_template'] : '') . ' template. Please copy and paste all the text above and visit the SMF support forum to tell the Developers that they\'ve made a boo boo; they\'ll get you up and running again.'; |
337 | 353 | flush(); |
338 | 354 | die(); |
339 | 355 | } |
340 | 356 | |
341 | - if (!isset($_GET['xml'])) |
|
342 | - template_upgrade_above(); |
|
343 | - else |
|
357 | + if (!isset($_GET['xml'])) { |
|
358 | + template_upgrade_above(); |
|
359 | + } else |
|
344 | 360 | { |
345 | 361 | header('Content-Type: text/xml; charset=UTF-8'); |
346 | 362 | // Sadly we need to retain the $_GET data thanks to the old upgrade scripts. |
@@ -362,25 +378,29 @@ discard block |
||
362 | 378 | $upcontext['form_url'] = $upgradeurl . '?step=' . $upcontext['current_step'] . '&substep=' . $_GET['substep'] . '&data=' . base64_encode(json_encode($upcontext['upgrade_status'])); |
363 | 379 | |
364 | 380 | // Custom stuff to pass back? |
365 | - if (!empty($upcontext['query_string'])) |
|
366 | - $upcontext['form_url'] .= $upcontext['query_string']; |
|
381 | + if (!empty($upcontext['query_string'])) { |
|
382 | + $upcontext['form_url'] .= $upcontext['query_string']; |
|
383 | + } |
|
367 | 384 | |
368 | 385 | // Call the appropriate subtemplate |
369 | - if (is_callable('template_' . $upcontext['sub_template'])) |
|
370 | - call_user_func('template_' . $upcontext['sub_template']); |
|
371 | - else |
|
372 | - die('Upgrade aborted! Invalid template: template_' . $upcontext['sub_template']); |
|
386 | + if (is_callable('template_' . $upcontext['sub_template'])) { |
|
387 | + call_user_func('template_' . $upcontext['sub_template']); |
|
388 | + } else { |
|
389 | + die('Upgrade aborted! Invalid template: template_' . $upcontext['sub_template']); |
|
390 | + } |
|
373 | 391 | } |
374 | 392 | |
375 | 393 | // Was there an error? |
376 | - if (!empty($upcontext['forced_error_message'])) |
|
377 | - echo $upcontext['forced_error_message']; |
|
394 | + if (!empty($upcontext['forced_error_message'])) { |
|
395 | + echo $upcontext['forced_error_message']; |
|
396 | + } |
|
378 | 397 | |
379 | 398 | // Show the footer. |
380 | - if (!isset($_GET['xml'])) |
|
381 | - template_upgrade_below(); |
|
382 | - else |
|
383 | - template_xml_below(); |
|
399 | + if (!isset($_GET['xml'])) { |
|
400 | + template_upgrade_below(); |
|
401 | + } else { |
|
402 | + template_xml_below(); |
|
403 | + } |
|
384 | 404 | } |
385 | 405 | |
386 | 406 | |
@@ -392,15 +412,19 @@ discard block |
||
392 | 412 | $seconds = intval($active % 60); |
393 | 413 | |
394 | 414 | $totalTime = ''; |
395 | - if ($hours > 0) |
|
396 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
397 | - if ($minutes > 0) |
|
398 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
399 | - if ($seconds > 0) |
|
400 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
415 | + if ($hours > 0) { |
|
416 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
417 | + } |
|
418 | + if ($minutes > 0) { |
|
419 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
420 | + } |
|
421 | + if ($seconds > 0) { |
|
422 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
423 | + } |
|
401 | 424 | |
402 | - if (!empty($totalTime)) |
|
403 | - echo "\n" . 'Upgrade completed in ' . $totalTime . "\n"; |
|
425 | + if (!empty($totalTime)) { |
|
426 | + echo "\n" . 'Upgrade completed in ' . $totalTime . "\n"; |
|
427 | + } |
|
404 | 428 | } |
405 | 429 | |
406 | 430 | // Bang - gone! |
@@ -413,8 +437,9 @@ discard block |
||
413 | 437 | global $upgradeurl, $upcontext, $command_line; |
414 | 438 | |
415 | 439 | // Command line users can't be redirected. |
416 | - if ($command_line) |
|
417 | - upgradeExit(true); |
|
440 | + if ($command_line) { |
|
441 | + upgradeExit(true); |
|
442 | + } |
|
418 | 443 | |
419 | 444 | // Are we providing the core info? |
420 | 445 | if ($addForm) |
@@ -440,12 +465,14 @@ discard block |
||
440 | 465 | define('SMF', 1); |
441 | 466 | |
442 | 467 | // Start the session. |
443 | - if (@ini_get('session.save_handler') == 'user') |
|
444 | - @ini_set('session.save_handler', 'files'); |
|
468 | + if (@ini_get('session.save_handler') == 'user') { |
|
469 | + @ini_set('session.save_handler', 'files'); |
|
470 | + } |
|
445 | 471 | @session_start(); |
446 | 472 | |
447 | - if (empty($smcFunc)) |
|
448 | - $smcFunc = array(); |
|
473 | + if (empty($smcFunc)) { |
|
474 | + $smcFunc = array(); |
|
475 | + } |
|
449 | 476 | |
450 | 477 | // We need this for authentication and some upgrade code |
451 | 478 | require_once($sourcedir . '/Subs-Auth.php'); |
@@ -472,24 +499,27 @@ discard block |
||
472 | 499 | require_once($sourcedir . '/Subs-Db-' . $db_type . '.php'); |
473 | 500 | |
474 | 501 | // Make the connection... |
475 | - if (empty($db_connection)) |
|
476 | - $db_connection = smf_db_initiate($db_server, $db_name, $db_user, $db_passwd, $db_prefix, array('non_fatal' => true)); |
|
477 | - else |
|
478 | - // If we've returned here, ping/reconnect to be safe |
|
502 | + if (empty($db_connection)) { |
|
503 | + $db_connection = smf_db_initiate($db_server, $db_name, $db_user, $db_passwd, $db_prefix, array('non_fatal' => true)); |
|
504 | + } else { |
|
505 | + // If we've returned here, ping/reconnect to be safe |
|
479 | 506 | $smcFunc['db_ping']($db_connection); |
507 | + } |
|
480 | 508 | |
481 | 509 | // Oh dear god!! |
482 | - if ($db_connection === null) |
|
483 | - die('Unable to connect to database - please check username and password are correct in Settings.php'); |
|
510 | + if ($db_connection === null) { |
|
511 | + die('Unable to connect to database - please check username and password are correct in Settings.php'); |
|
512 | + } |
|
484 | 513 | |
485 | - if ($db_type == 'mysql' && isset($db_character_set) && preg_match('~^\w+$~', $db_character_set) === 1) |
|
486 | - $smcFunc['db_query']('', ' |
|
514 | + if ($db_type == 'mysql' && isset($db_character_set) && preg_match('~^\w+$~', $db_character_set) === 1) { |
|
515 | + $smcFunc['db_query']('', ' |
|
487 | 516 | SET NAMES {string:db_character_set}', |
488 | 517 | array( |
489 | 518 | 'db_error_skip' => true, |
490 | 519 | 'db_character_set' => $db_character_set, |
491 | 520 | ) |
492 | 521 | ); |
522 | + } |
|
493 | 523 | |
494 | 524 | // Load the modSettings data... |
495 | 525 | $request = $smcFunc['db_query']('', ' |
@@ -500,11 +530,11 @@ discard block |
||
500 | 530 | ) |
501 | 531 | ); |
502 | 532 | $modSettings = array(); |
503 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
504 | - $modSettings[$row['variable']] = $row['value']; |
|
533 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
534 | + $modSettings[$row['variable']] = $row['value']; |
|
535 | + } |
|
505 | 536 | $smcFunc['db_free_result']($request); |
506 | - } |
|
507 | - else |
|
537 | + } else |
|
508 | 538 | { |
509 | 539 | return throw_error('Cannot find ' . $sourcedir . '/Subs-Db-' . $db_type . '.php' . '. Please check you have uploaded all source files and have the correct paths set.'); |
510 | 540 | } |
@@ -518,9 +548,10 @@ discard block |
||
518 | 548 | cleanRequest(); |
519 | 549 | } |
520 | 550 | |
521 | - if (!isset($_GET['substep'])) |
|
522 | - $_GET['substep'] = 0; |
|
523 | -} |
|
551 | + if (!isset($_GET['substep'])) { |
|
552 | + $_GET['substep'] = 0; |
|
553 | + } |
|
554 | + } |
|
524 | 555 | |
525 | 556 | function initialize_inputs() |
526 | 557 | { |
@@ -550,8 +581,9 @@ discard block |
||
550 | 581 | $dh = opendir(dirname(__FILE__)); |
551 | 582 | while ($file = readdir($dh)) |
552 | 583 | { |
553 | - if (preg_match('~upgrade_\d-\d_([A-Za-z])+\.sql~i', $file, $matches) && isset($matches[1])) |
|
554 | - @unlink(dirname(__FILE__) . '/' . $file); |
|
584 | + if (preg_match('~upgrade_\d-\d_([A-Za-z])+\.sql~i', $file, $matches) && isset($matches[1])) { |
|
585 | + @unlink(dirname(__FILE__) . '/' . $file); |
|
586 | + } |
|
555 | 587 | } |
556 | 588 | closedir($dh); |
557 | 589 | |
@@ -580,8 +612,9 @@ discard block |
||
580 | 612 | $temp = 'upgrade_php?step'; |
581 | 613 | while (strlen($temp) > 4) |
582 | 614 | { |
583 | - if (isset($_GET[$temp])) |
|
584 | - unset($_GET[$temp]); |
|
615 | + if (isset($_GET[$temp])) { |
|
616 | + unset($_GET[$temp]); |
|
617 | + } |
|
585 | 618 | $temp = substr($temp, 1); |
586 | 619 | } |
587 | 620 | |
@@ -608,32 +641,39 @@ discard block |
||
608 | 641 | && @file_exists(dirname(__FILE__) . '/upgrade_2-1_' . $db_type . '.sql'); |
609 | 642 | |
610 | 643 | // Need legacy scripts? |
611 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.1) |
|
612 | - $check &= @file_exists(dirname(__FILE__) . '/upgrade_2-0_' . $db_type . '.sql'); |
|
613 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.0) |
|
614 | - $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-1.sql'); |
|
615 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 1.1) |
|
616 | - $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-0.sql'); |
|
644 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.1) { |
|
645 | + $check &= @file_exists(dirname(__FILE__) . '/upgrade_2-0_' . $db_type . '.sql'); |
|
646 | + } |
|
647 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 2.0) { |
|
648 | + $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-1.sql'); |
|
649 | + } |
|
650 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < 1.1) { |
|
651 | + $check &= @file_exists(dirname(__FILE__) . '/upgrade_1-0.sql'); |
|
652 | + } |
|
617 | 653 | |
618 | 654 | // We don't need "-utf8" files anymore... |
619 | 655 | $upcontext['language'] = str_ireplace('-utf8', '', $upcontext['language']); |
620 | 656 | |
621 | 657 | // This needs to exist! |
622 | - if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) |
|
623 | - return throw_error('The upgrader could not find the "Install" language file for the forum default language, ' . $upcontext['language'] . '.<br><br>Please make certain you uploaded all the files included in the package, even the theme and language files for the default theme.<br> [<a href="' . $upgradeurl . '?lang=english">Try English</a>]'); |
|
624 | - else |
|
625 | - require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
658 | + if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) { |
|
659 | + return throw_error('The upgrader could not find the "Install" language file for the forum default language, ' . $upcontext['language'] . '.<br><br>Please make certain you uploaded all the files included in the package, even the theme and language files for the default theme.<br> [<a href="' . $upgradeurl . '?lang=english">Try English</a>]'); |
|
660 | + } else { |
|
661 | + require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
|
662 | + } |
|
626 | 663 | |
627 | - if (!$check) |
|
628 | - // Don't tell them what files exactly because it's a spot check - just like teachers don't tell which problems they are spot checking, that's dumb. |
|
664 | + if (!$check) { |
|
665 | + // Don't tell them what files exactly because it's a spot check - just like teachers don't tell which problems they are spot checking, that's dumb. |
|
629 | 666 | return throw_error('The upgrader was unable to find some crucial files.<br><br>Please make sure you uploaded all of the files included in the package, including the Themes, Sources, and other directories.'); |
667 | + } |
|
630 | 668 | |
631 | 669 | // Do they meet the install requirements? |
632 | - if (!php_version_check()) |
|
633 | - return throw_error('Warning! You do not appear to have a version of PHP installed on your webserver that meets SMF\'s minimum installations requirements.<br><br>Please ask your host to upgrade.'); |
|
670 | + if (!php_version_check()) { |
|
671 | + return throw_error('Warning! You do not appear to have a version of PHP installed on your webserver that meets SMF\'s minimum installations requirements.<br><br>Please ask your host to upgrade.'); |
|
672 | + } |
|
634 | 673 | |
635 | - if (!db_version_check()) |
|
636 | - return throw_error('Your ' . $databases[$db_type]['name'] . ' version does not meet the minimum requirements of SMF.<br><br>Please ask your host to upgrade.'); |
|
674 | + if (!db_version_check()) { |
|
675 | + return throw_error('Your ' . $databases[$db_type]['name'] . ' version does not meet the minimum requirements of SMF.<br><br>Please ask your host to upgrade.'); |
|
676 | + } |
|
637 | 677 | |
638 | 678 | // Do some checks to make sure they have proper privileges |
639 | 679 | db_extend('packages'); |
@@ -648,14 +688,16 @@ discard block |
||
648 | 688 | $drop = $smcFunc['db_drop_table']('{db_prefix}priv_check'); |
649 | 689 | |
650 | 690 | // Sorry... we need CREATE, ALTER and DROP |
651 | - if (!$create || !$alter || !$drop) |
|
652 | - return throw_error('The ' . $databases[$db_type]['name'] . ' user you have set in Settings.php does not have proper privileges.<br><br>Please ask your host to give this user the ALTER, CREATE, and DROP privileges.'); |
|
691 | + if (!$create || !$alter || !$drop) { |
|
692 | + return throw_error('The ' . $databases[$db_type]['name'] . ' user you have set in Settings.php does not have proper privileges.<br><br>Please ask your host to give this user the ALTER, CREATE, and DROP privileges.'); |
|
693 | + } |
|
653 | 694 | |
654 | 695 | // Do a quick version spot check. |
655 | 696 | $temp = substr(@implode('', @file($boarddir . '/index.php')), 0, 4096); |
656 | 697 | preg_match('~\*\s@version\s+(.+)[\s]{2}~i', $temp, $match); |
657 | - if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) |
|
658 | - return throw_error('The upgrader found some old or outdated files.<br><br>Please make certain you uploaded the new versions of all the files included in the package.'); |
|
698 | + if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) { |
|
699 | + return throw_error('The upgrader found some old or outdated files.<br><br>Please make certain you uploaded the new versions of all the files included in the package.'); |
|
700 | + } |
|
659 | 701 | |
660 | 702 | // What absolutely needs to be writable? |
661 | 703 | $writable_files = array( |
@@ -677,12 +719,13 @@ discard block |
||
677 | 719 | quickFileWritable($custom_av_dir); |
678 | 720 | |
679 | 721 | // Are we good now? |
680 | - if (!is_writable($custom_av_dir)) |
|
681 | - return throw_error(sprintf('The directory: %1$s has to be writable to continue the upgrade. Please make sure permissions are correctly set to allow this.', $custom_av_dir)); |
|
682 | - elseif ($need_settings_update) |
|
722 | + if (!is_writable($custom_av_dir)) { |
|
723 | + return throw_error(sprintf('The directory: %1$s has to be writable to continue the upgrade. Please make sure permissions are correctly set to allow this.', $custom_av_dir)); |
|
724 | + } elseif ($need_settings_update) |
|
683 | 725 | { |
684 | - if (!function_exists('cache_put_data')) |
|
685 | - require_once($sourcedir . '/Load.php'); |
|
726 | + if (!function_exists('cache_put_data')) { |
|
727 | + require_once($sourcedir . '/Load.php'); |
|
728 | + } |
|
686 | 729 | updateSettings(array('custom_avatar_dir' => $custom_av_dir)); |
687 | 730 | updateSettings(array('custom_avatar_url' => $custom_av_url)); |
688 | 731 | } |
@@ -691,28 +734,33 @@ discard block |
||
691 | 734 | |
692 | 735 | // Check the cache directory. |
693 | 736 | $cachedir_temp = empty($cachedir) ? $boarddir . '/cache' : $cachedir; |
694 | - if (!file_exists($cachedir_temp)) |
|
695 | - @mkdir($cachedir_temp); |
|
696 | - if (!file_exists($cachedir_temp)) |
|
697 | - return throw_error('The cache directory could not be found.<br><br>Please make sure you have a directory called "cache" in your forum directory before continuing.'); |
|
698 | - |
|
699 | - if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) |
|
700 | - return throw_error('The upgrader was unable to find language files for the language specified in Settings.php.<br>SMF will not work without the primary language files installed.<br><br>Please either install them, or <a href="' . $upgradeurl . '?step=0;lang=english">use english instead</a>.'); |
|
701 | - elseif (!isset($_GET['skiplang'])) |
|
737 | + if (!file_exists($cachedir_temp)) { |
|
738 | + @mkdir($cachedir_temp); |
|
739 | + } |
|
740 | + if (!file_exists($cachedir_temp)) { |
|
741 | + return throw_error('The cache directory could not be found.<br><br>Please make sure you have a directory called "cache" in your forum directory before continuing.'); |
|
742 | + } |
|
743 | + |
|
744 | + if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) { |
|
745 | + return throw_error('The upgrader was unable to find language files for the language specified in Settings.php.<br>SMF will not work without the primary language files installed.<br><br>Please either install them, or <a href="' . $upgradeurl . '?step=0;lang=english">use english instead</a>.'); |
|
746 | + } elseif (!isset($_GET['skiplang'])) |
|
702 | 747 | { |
703 | 748 | $temp = substr(@implode('', @file($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php')), 0, 4096); |
704 | 749 | preg_match('~(?://|/\*)\s*Version:\s+(.+?);\s*index(?:[\s]{2}|\*/)~i', $temp, $match); |
705 | 750 | |
706 | - if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) |
|
707 | - return throw_error('The upgrader found some old or outdated language files, for the forum default language, ' . $upcontext['language'] . '.<br><br>Please make certain you uploaded the new versions of all the files included in the package, even the theme and language files for the default theme.<br> [<a href="' . $upgradeurl . '?skiplang">SKIP</a>] [<a href="' . $upgradeurl . '?lang=english">Try English</a>]'); |
|
751 | + if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) { |
|
752 | + return throw_error('The upgrader found some old or outdated language files, for the forum default language, ' . $upcontext['language'] . '.<br><br>Please make certain you uploaded the new versions of all the files included in the package, even the theme and language files for the default theme.<br> [<a href="' . $upgradeurl . '?skiplang">SKIP</a>] [<a href="' . $upgradeurl . '?lang=english">Try English</a>]'); |
|
753 | + } |
|
708 | 754 | } |
709 | 755 | |
710 | - if (!makeFilesWritable($writable_files)) |
|
711 | - return false; |
|
756 | + if (!makeFilesWritable($writable_files)) { |
|
757 | + return false; |
|
758 | + } |
|
712 | 759 | |
713 | 760 | // Check agreement.txt. (it may not exist, in which case $boarddir must be writable.) |
714 | - if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) |
|
715 | - return throw_error('The upgrader was unable to obtain write access to agreement.txt.<br><br>If you are using a linux or unix based server, please ensure that the file is chmod\'d to 777, or if it does not exist that the directory this upgrader is in is 777.<br>If your server is running Windows, please ensure that the internet guest account has the proper permissions on it or its folder.'); |
|
761 | + if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) { |
|
762 | + return throw_error('The upgrader was unable to obtain write access to agreement.txt.<br><br>If you are using a linux or unix based server, please ensure that the file is chmod\'d to 777, or if it does not exist that the directory this upgrader is in is 777.<br>If your server is running Windows, please ensure that the internet guest account has the proper permissions on it or its folder.'); |
|
763 | + } |
|
716 | 764 | |
717 | 765 | // Upgrade the agreement. |
718 | 766 | elseif (isset($modSettings['agreement'])) |
@@ -723,8 +771,8 @@ discard block |
||
723 | 771 | } |
724 | 772 | |
725 | 773 | // We're going to check that their board dir setting is right in case they've been moving stuff around. |
726 | - if (strtr($boarddir, array('/' => '', '\\' => '')) != strtr(dirname(__FILE__), array('/' => '', '\\' => ''))) |
|
727 | - $upcontext['warning'] = ' |
|
774 | + if (strtr($boarddir, array('/' => '', '\\' => '')) != strtr(dirname(__FILE__), array('/' => '', '\\' => ''))) { |
|
775 | + $upcontext['warning'] = ' |
|
728 | 776 | It looks as if your board directory settings <em>might</em> be incorrect. Your board directory is currently set to "' . $boarddir . '" but should probably be "' . dirname(__FILE__) . '". Settings.php currently lists your paths as:<br> |
729 | 777 | <ul> |
730 | 778 | <li>Board Directory: ' . $boarddir . '</li> |
@@ -732,19 +780,23 @@ discard block |
||
732 | 780 | <li>Cache Directory: ' . $cachedir_temp . '</li> |
733 | 781 | </ul> |
734 | 782 | If these seem incorrect please open Settings.php in a text editor before proceeding with this upgrade. If they are incorrect due to you moving your forum to a new location please download and execute the <a href="https://download.simplemachines.org/?tools">Repair Settings</a> tool from the Simple Machines website before continuing.'; |
783 | + } |
|
735 | 784 | |
736 | 785 | // Confirm mbstring is loaded... |
737 | - if (!extension_loaded('mbstring')) |
|
738 | - return throw_error($txt['install_no_mbstring']); |
|
786 | + if (!extension_loaded('mbstring')) { |
|
787 | + return throw_error($txt['install_no_mbstring']); |
|
788 | + } |
|
739 | 789 | |
740 | 790 | // Check for https stream support. |
741 | 791 | $supported_streams = stream_get_wrappers(); |
742 | - if (!in_array('https', $supported_streams)) |
|
743 | - $upcontext['custom_warning'] = $txt['install_no_https']; |
|
792 | + if (!in_array('https', $supported_streams)) { |
|
793 | + $upcontext['custom_warning'] = $txt['install_no_https']; |
|
794 | + } |
|
744 | 795 | |
745 | 796 | // Either we're logged in or we're going to present the login. |
746 | - if (checkLogin()) |
|
747 | - return true; |
|
797 | + if (checkLogin()) { |
|
798 | + return true; |
|
799 | + } |
|
748 | 800 | |
749 | 801 | $upcontext += createToken('login'); |
750 | 802 | |
@@ -758,15 +810,17 @@ discard block |
||
758 | 810 | global $smcFunc, $db_type, $support_js; |
759 | 811 | |
760 | 812 | // Don't bother if the security is disabled. |
761 | - if ($disable_security) |
|
762 | - return true; |
|
813 | + if ($disable_security) { |
|
814 | + return true; |
|
815 | + } |
|
763 | 816 | |
764 | 817 | // Are we trying to login? |
765 | 818 | if (isset($_POST['contbutt']) && (!empty($_POST['user']))) |
766 | 819 | { |
767 | 820 | // If we've disabled security pick a suitable name! |
768 | - if (empty($_POST['user'])) |
|
769 | - $_POST['user'] = 'Administrator'; |
|
821 | + if (empty($_POST['user'])) { |
|
822 | + $_POST['user'] = 'Administrator'; |
|
823 | + } |
|
770 | 824 | |
771 | 825 | // Before 2.0 these column names were different! |
772 | 826 | $oldDB = false; |
@@ -781,16 +835,17 @@ discard block |
||
781 | 835 | 'db_error_skip' => true, |
782 | 836 | ) |
783 | 837 | ); |
784 | - if ($smcFunc['db_num_rows']($request) != 0) |
|
785 | - $oldDB = true; |
|
838 | + if ($smcFunc['db_num_rows']($request) != 0) { |
|
839 | + $oldDB = true; |
|
840 | + } |
|
786 | 841 | $smcFunc['db_free_result']($request); |
787 | 842 | } |
788 | 843 | |
789 | 844 | // Get what we believe to be their details. |
790 | 845 | if (!$disable_security) |
791 | 846 | { |
792 | - if ($oldDB) |
|
793 | - $request = $smcFunc['db_query']('', ' |
|
847 | + if ($oldDB) { |
|
848 | + $request = $smcFunc['db_query']('', ' |
|
794 | 849 | SELECT id_member, memberName AS member_name, passwd, id_group, |
795 | 850 | additionalGroups AS additional_groups, lngfile |
796 | 851 | FROM {db_prefix}members |
@@ -800,8 +855,8 @@ discard block |
||
800 | 855 | 'db_error_skip' => true, |
801 | 856 | ) |
802 | 857 | ); |
803 | - else |
|
804 | - $request = $smcFunc['db_query']('', ' |
|
858 | + } else { |
|
859 | + $request = $smcFunc['db_query']('', ' |
|
805 | 860 | SELECT id_member, member_name, passwd, id_group, additional_groups, lngfile |
806 | 861 | FROM {db_prefix}members |
807 | 862 | WHERE member_name = {string:member_name}', |
@@ -810,6 +865,7 @@ discard block |
||
810 | 865 | 'db_error_skip' => true, |
811 | 866 | ) |
812 | 867 | ); |
868 | + } |
|
813 | 869 | if ($smcFunc['db_num_rows']($request) != 0) |
814 | 870 | { |
815 | 871 | list ($id_member, $name, $password, $id_group, $addGroups, $user_language) = $smcFunc['db_fetch_row']($request); |
@@ -817,16 +873,17 @@ discard block |
||
817 | 873 | $groups = explode(',', $addGroups); |
818 | 874 | $groups[] = $id_group; |
819 | 875 | |
820 | - foreach ($groups as $k => $v) |
|
821 | - $groups[$k] = (int) $v; |
|
876 | + foreach ($groups as $k => $v) { |
|
877 | + $groups[$k] = (int) $v; |
|
878 | + } |
|
822 | 879 | |
823 | 880 | $sha_passwd = sha1(strtolower($name) . un_htmlspecialchars($_REQUEST['passwrd'])); |
824 | 881 | |
825 | 882 | // We don't use "-utf8" anymore... |
826 | 883 | $user_language = str_ireplace('-utf8', '', $user_language); |
884 | + } else { |
|
885 | + $upcontext['username_incorrect'] = true; |
|
827 | 886 | } |
828 | - else |
|
829 | - $upcontext['username_incorrect'] = true; |
|
830 | 887 | $smcFunc['db_free_result']($request); |
831 | 888 | } |
832 | 889 | $upcontext['username'] = $_POST['user']; |
@@ -836,13 +893,14 @@ discard block |
||
836 | 893 | { |
837 | 894 | $upcontext['upgrade_status']['js'] = 1; |
838 | 895 | $support_js = 1; |
896 | + } else { |
|
897 | + $support_js = 0; |
|
839 | 898 | } |
840 | - else |
|
841 | - $support_js = 0; |
|
842 | 899 | |
843 | 900 | // Note down the version we are coming from. |
844 | - if (!empty($modSettings['smfVersion']) && empty($upcontext['user']['version'])) |
|
845 | - $upcontext['user']['version'] = $modSettings['smfVersion']; |
|
901 | + if (!empty($modSettings['smfVersion']) && empty($upcontext['user']['version'])) { |
|
902 | + $upcontext['user']['version'] = $modSettings['smfVersion']; |
|
903 | + } |
|
846 | 904 | |
847 | 905 | // Didn't get anywhere? |
848 | 906 | if (!$disable_security && (empty($sha_passwd) || (!empty($password) ? $password : '') != $sha_passwd) && !hash_verify_password((!empty($name) ? $name : ''), $_REQUEST['passwrd'], (!empty($password) ? $password : '')) && empty($upcontext['username_incorrect'])) |
@@ -876,15 +934,15 @@ discard block |
||
876 | 934 | 'db_error_skip' => true, |
877 | 935 | ) |
878 | 936 | ); |
879 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
880 | - return throw_error('You need to be an admin to perform an upgrade!'); |
|
937 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
938 | + return throw_error('You need to be an admin to perform an upgrade!'); |
|
939 | + } |
|
881 | 940 | $smcFunc['db_free_result']($request); |
882 | 941 | } |
883 | 942 | |
884 | 943 | $upcontext['user']['id'] = $id_member; |
885 | 944 | $upcontext['user']['name'] = $name; |
886 | - } |
|
887 | - else |
|
945 | + } else |
|
888 | 946 | { |
889 | 947 | $upcontext['user']['id'] = 1; |
890 | 948 | $upcontext['user']['name'] = 'Administrator'; |
@@ -900,11 +958,11 @@ discard block |
||
900 | 958 | $temp = substr(@implode('', @file($modSettings['theme_dir'] . '/languages/index.' . $user_language . '.php')), 0, 4096); |
901 | 959 | preg_match('~(?://|/\*)\s*Version:\s+(.+?);\s*index(?:[\s]{2}|\*/)~i', $temp, $match); |
902 | 960 | |
903 | - if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) |
|
904 | - $upcontext['upgrade_options_warning'] = 'The language files for your selected language, ' . $user_language . ', have not been updated to the latest version. Upgrade will continue with the forum default, ' . $upcontext['language'] . '.'; |
|
905 | - elseif (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . basename($user_language, '.lng') . '.php')) |
|
906 | - $upcontext['upgrade_options_warning'] = 'The language files for your selected language, ' . $user_language . ', have not been uploaded/updated as the "Install" language file is missing. Upgrade will continue with the forum default, ' . $upcontext['language'] . '.'; |
|
907 | - else |
|
961 | + if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) { |
|
962 | + $upcontext['upgrade_options_warning'] = 'The language files for your selected language, ' . $user_language . ', have not been updated to the latest version. Upgrade will continue with the forum default, ' . $upcontext['language'] . '.'; |
|
963 | + } elseif (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . basename($user_language, '.lng') . '.php')) { |
|
964 | + $upcontext['upgrade_options_warning'] = 'The language files for your selected language, ' . $user_language . ', have not been uploaded/updated as the "Install" language file is missing. Upgrade will continue with the forum default, ' . $upcontext['language'] . '.'; |
|
965 | + } else |
|
908 | 966 | { |
909 | 967 | // Set this as the new language. |
910 | 968 | $upcontext['language'] = $user_language; |
@@ -948,8 +1006,9 @@ discard block |
||
948 | 1006 | unset($member_columns); |
949 | 1007 | |
950 | 1008 | // If we've not submitted then we're done. |
951 | - if (empty($_POST['upcont'])) |
|
952 | - return false; |
|
1009 | + if (empty($_POST['upcont'])) { |
|
1010 | + return false; |
|
1011 | + } |
|
953 | 1012 | |
954 | 1013 | // Firstly, if they're enabling SM stat collection just do it. |
955 | 1014 | if (!empty($_POST['stats']) && substr($boardurl, 0, 16) != 'http://localhost' && empty($modSettings['allow_sm_stats']) && empty($modSettings['enable_sm_stats'])) |
@@ -969,16 +1028,17 @@ discard block |
||
969 | 1028 | fwrite($fp, $out); |
970 | 1029 | |
971 | 1030 | $return_data = ''; |
972 | - while (!feof($fp)) |
|
973 | - $return_data .= fgets($fp, 128); |
|
1031 | + while (!feof($fp)) { |
|
1032 | + $return_data .= fgets($fp, 128); |
|
1033 | + } |
|
974 | 1034 | |
975 | 1035 | fclose($fp); |
976 | 1036 | |
977 | 1037 | // Get the unique site ID. |
978 | 1038 | preg_match('~SITE-ID:\s(\w{10})~', $return_data, $ID); |
979 | 1039 | |
980 | - if (!empty($ID[1])) |
|
981 | - $smcFunc['db_insert']('replace', |
|
1040 | + if (!empty($ID[1])) { |
|
1041 | + $smcFunc['db_insert']('replace', |
|
982 | 1042 | $db_prefix . 'settings', |
983 | 1043 | array('variable' => 'string', 'value' => 'string'), |
984 | 1044 | array( |
@@ -987,9 +1047,9 @@ discard block |
||
987 | 1047 | ), |
988 | 1048 | array('variable') |
989 | 1049 | ); |
1050 | + } |
|
990 | 1051 | } |
991 | - } |
|
992 | - else |
|
1052 | + } else |
|
993 | 1053 | { |
994 | 1054 | $smcFunc['db_insert']('replace', |
995 | 1055 | $db_prefix . 'settings', |
@@ -1000,8 +1060,8 @@ discard block |
||
1000 | 1060 | } |
1001 | 1061 | } |
1002 | 1062 | // Don't remove stat collection unless we unchecked the box for real, not from the loop. |
1003 | - elseif (empty($_POST['stats']) && empty($upcontext['allow_sm_stats'])) |
|
1004 | - $smcFunc['db_query']('', ' |
|
1063 | + elseif (empty($_POST['stats']) && empty($upcontext['allow_sm_stats'])) { |
|
1064 | + $smcFunc['db_query']('', ' |
|
1005 | 1065 | DELETE FROM {db_prefix}settings |
1006 | 1066 | WHERE variable = {string:enable_sm_stats}', |
1007 | 1067 | array( |
@@ -1009,6 +1069,7 @@ discard block |
||
1009 | 1069 | 'db_error_skip' => true, |
1010 | 1070 | ) |
1011 | 1071 | ); |
1072 | + } |
|
1012 | 1073 | |
1013 | 1074 | // Deleting old karma stuff? |
1014 | 1075 | if (!empty($_POST['delete_karma'])) |
@@ -1023,20 +1084,22 @@ discard block |
||
1023 | 1084 | ); |
1024 | 1085 | |
1025 | 1086 | // Cleaning up old karma member settings. |
1026 | - if ($upcontext['karma_installed']['good']) |
|
1027 | - $smcFunc['db_query']('', ' |
|
1087 | + if ($upcontext['karma_installed']['good']) { |
|
1088 | + $smcFunc['db_query']('', ' |
|
1028 | 1089 | ALTER TABLE {db_prefix}members |
1029 | 1090 | DROP karma_good', |
1030 | 1091 | array() |
1031 | 1092 | ); |
1093 | + } |
|
1032 | 1094 | |
1033 | 1095 | // Does karma bad was enable? |
1034 | - if ($upcontext['karma_installed']['bad']) |
|
1035 | - $smcFunc['db_query']('', ' |
|
1096 | + if ($upcontext['karma_installed']['bad']) { |
|
1097 | + $smcFunc['db_query']('', ' |
|
1036 | 1098 | ALTER TABLE {db_prefix}members |
1037 | 1099 | DROP karma_bad', |
1038 | 1100 | array() |
1039 | 1101 | ); |
1102 | + } |
|
1040 | 1103 | |
1041 | 1104 | // Cleaning up old karma permissions. |
1042 | 1105 | $smcFunc['db_query']('', ' |
@@ -1049,32 +1112,37 @@ discard block |
||
1049 | 1112 | } |
1050 | 1113 | |
1051 | 1114 | // Emptying the error log? |
1052 | - if (!empty($_POST['empty_error'])) |
|
1053 | - $smcFunc['db_query']('truncate_table', ' |
|
1115 | + if (!empty($_POST['empty_error'])) { |
|
1116 | + $smcFunc['db_query']('truncate_table', ' |
|
1054 | 1117 | TRUNCATE {db_prefix}log_errors', |
1055 | 1118 | array( |
1056 | 1119 | ) |
1057 | 1120 | ); |
1121 | + } |
|
1058 | 1122 | |
1059 | 1123 | $changes = array(); |
1060 | 1124 | |
1061 | 1125 | // Add proxy settings. |
1062 | - if (!isset($GLOBALS['image_proxy_maxsize'])) |
|
1063 | - $changes += array( |
|
1126 | + if (!isset($GLOBALS['image_proxy_maxsize'])) { |
|
1127 | + $changes += array( |
|
1064 | 1128 | 'image_proxy_secret' => '\'' . substr(sha1(mt_rand()), 0, 20) . '\'', |
1065 | 1129 | 'image_proxy_maxsize' => 5190, |
1066 | 1130 | 'image_proxy_enabled' => 0, |
1067 | 1131 | ); |
1132 | + } |
|
1068 | 1133 | |
1069 | 1134 | // If $boardurl reflects https, set force_ssl |
1070 | - if (!function_exists('cache_put_data')) |
|
1071 | - require_once($sourcedir . '/Load.php'); |
|
1072 | - if (stripos($boardurl, 'https://') !== false) |
|
1073 | - updateSettings(array('force_ssl' => '2')); |
|
1135 | + if (!function_exists('cache_put_data')) { |
|
1136 | + require_once($sourcedir . '/Load.php'); |
|
1137 | + } |
|
1138 | + if (stripos($boardurl, 'https://') !== false) { |
|
1139 | + updateSettings(array('force_ssl' => '2')); |
|
1140 | + } |
|
1074 | 1141 | |
1075 | 1142 | // If we're overriding the language follow it through. |
1076 | - if (isset($_GET['lang']) && file_exists($modSettings['theme_dir'] . '/languages/index.' . $_GET['lang'] . '.php')) |
|
1077 | - $changes['language'] = '\'' . $_GET['lang'] . '\''; |
|
1143 | + if (isset($_GET['lang']) && file_exists($modSettings['theme_dir'] . '/languages/index.' . $_GET['lang'] . '.php')) { |
|
1144 | + $changes['language'] = '\'' . $_GET['lang'] . '\''; |
|
1145 | + } |
|
1078 | 1146 | |
1079 | 1147 | if (!empty($_POST['maint'])) |
1080 | 1148 | { |
@@ -1086,26 +1154,29 @@ discard block |
||
1086 | 1154 | { |
1087 | 1155 | $changes['mtitle'] = '\'' . addslashes($_POST['maintitle']) . '\''; |
1088 | 1156 | $changes['mmessage'] = '\'' . addslashes($_POST['mainmessage']) . '\''; |
1089 | - } |
|
1090 | - else |
|
1157 | + } else |
|
1091 | 1158 | { |
1092 | 1159 | $changes['mtitle'] = '\'Upgrading the forum...\''; |
1093 | 1160 | $changes['mmessage'] = '\'Don\\\'t worry, we will be back shortly with an updated forum. It will only be a minute ;).\''; |
1094 | 1161 | } |
1095 | 1162 | } |
1096 | 1163 | |
1097 | - if ($command_line) |
|
1098 | - echo ' * Updating Settings.php...'; |
|
1164 | + if ($command_line) { |
|
1165 | + echo ' * Updating Settings.php...'; |
|
1166 | + } |
|
1099 | 1167 | |
1100 | 1168 | // Fix some old paths. |
1101 | - if (substr($boarddir, 0, 1) == '.') |
|
1102 | - $changes['boarddir'] = '\'' . fixRelativePath($boarddir) . '\''; |
|
1169 | + if (substr($boarddir, 0, 1) == '.') { |
|
1170 | + $changes['boarddir'] = '\'' . fixRelativePath($boarddir) . '\''; |
|
1171 | + } |
|
1103 | 1172 | |
1104 | - if (substr($sourcedir, 0, 1) == '.') |
|
1105 | - $changes['sourcedir'] = '\'' . fixRelativePath($sourcedir) . '\''; |
|
1173 | + if (substr($sourcedir, 0, 1) == '.') { |
|
1174 | + $changes['sourcedir'] = '\'' . fixRelativePath($sourcedir) . '\''; |
|
1175 | + } |
|
1106 | 1176 | |
1107 | - if (empty($cachedir) || substr($cachedir, 0, 1) == '.') |
|
1108 | - $changes['cachedir'] = '\'' . fixRelativePath($boarddir) . '/cache\''; |
|
1177 | + if (empty($cachedir) || substr($cachedir, 0, 1) == '.') { |
|
1178 | + $changes['cachedir'] = '\'' . fixRelativePath($boarddir) . '/cache\''; |
|
1179 | + } |
|
1109 | 1180 | |
1110 | 1181 | // If they have a "host:port" setup for the host, split that into separate values |
1111 | 1182 | // You should never have a : in the hostname if you're not on MySQL, but better safe than sorry |
@@ -1116,32 +1187,36 @@ discard block |
||
1116 | 1187 | $changes['db_server'] = '\'' . $db_server . '\''; |
1117 | 1188 | |
1118 | 1189 | // Only set this if we're not using the default port |
1119 | - if ($db_port != ini_get('mysqli.default_port')) |
|
1120 | - $changes['db_port'] = (int) $db_port; |
|
1121 | - } |
|
1122 | - elseif (!empty($db_port)) |
|
1190 | + if ($db_port != ini_get('mysqli.default_port')) { |
|
1191 | + $changes['db_port'] = (int) $db_port; |
|
1192 | + } |
|
1193 | + } elseif (!empty($db_port)) |
|
1123 | 1194 | { |
1124 | 1195 | // If db_port is set and is the same as the default, set it to '' |
1125 | 1196 | if ($db_type == 'mysql') |
1126 | 1197 | { |
1127 | - if ($db_port == ini_get('mysqli.default_port')) |
|
1128 | - $changes['db_port'] = '\'\''; |
|
1129 | - elseif ($db_type == 'postgresql' && $db_port == 5432) |
|
1130 | - $changes['db_port'] = '\'\''; |
|
1198 | + if ($db_port == ini_get('mysqli.default_port')) { |
|
1199 | + $changes['db_port'] = '\'\''; |
|
1200 | + } elseif ($db_type == 'postgresql' && $db_port == 5432) { |
|
1201 | + $changes['db_port'] = '\'\''; |
|
1202 | + } |
|
1131 | 1203 | } |
1132 | 1204 | } |
1133 | 1205 | |
1134 | 1206 | // Maybe we haven't had this option yet? |
1135 | - if (empty($packagesdir)) |
|
1136 | - $changes['packagesdir'] = '\'' . fixRelativePath($boarddir) . '/Packages\''; |
|
1207 | + if (empty($packagesdir)) { |
|
1208 | + $changes['packagesdir'] = '\'' . fixRelativePath($boarddir) . '/Packages\''; |
|
1209 | + } |
|
1137 | 1210 | |
1138 | 1211 | // Add support for $tasksdir var. |
1139 | - if (empty($tasksdir)) |
|
1140 | - $changes['tasksdir'] = '\'' . fixRelativePath($sourcedir) . '/tasks\''; |
|
1212 | + if (empty($tasksdir)) { |
|
1213 | + $changes['tasksdir'] = '\'' . fixRelativePath($sourcedir) . '/tasks\''; |
|
1214 | + } |
|
1141 | 1215 | |
1142 | 1216 | // Make sure we fix the language as well. |
1143 | - if (stristr($language, '-utf8')) |
|
1144 | - $changes['language'] = '\'' . str_ireplace('-utf8', '', $language) . '\''; |
|
1217 | + if (stristr($language, '-utf8')) { |
|
1218 | + $changes['language'] = '\'' . str_ireplace('-utf8', '', $language) . '\''; |
|
1219 | + } |
|
1145 | 1220 | |
1146 | 1221 | // @todo Maybe change the cookie name if going to 1.1, too? |
1147 | 1222 | |
@@ -1149,8 +1224,9 @@ discard block |
||
1149 | 1224 | require_once($sourcedir . '/Subs-Admin.php'); |
1150 | 1225 | updateSettingsFile($changes); |
1151 | 1226 | |
1152 | - if ($command_line) |
|
1153 | - echo ' Successful.' . "\n"; |
|
1227 | + if ($command_line) { |
|
1228 | + echo ' Successful.' . "\n"; |
|
1229 | + } |
|
1154 | 1230 | |
1155 | 1231 | // Are we doing debug? |
1156 | 1232 | if (isset($_POST['debug'])) |
@@ -1160,8 +1236,9 @@ discard block |
||
1160 | 1236 | } |
1161 | 1237 | |
1162 | 1238 | // If we're not backing up then jump one. |
1163 | - if (empty($_POST['backup'])) |
|
1164 | - $upcontext['current_step']++; |
|
1239 | + if (empty($_POST['backup'])) { |
|
1240 | + $upcontext['current_step']++; |
|
1241 | + } |
|
1165 | 1242 | |
1166 | 1243 | // If we've got here then let's proceed to the next step! |
1167 | 1244 | return true; |
@@ -1176,8 +1253,9 @@ discard block |
||
1176 | 1253 | $upcontext['page_title'] = 'Backup Database'; |
1177 | 1254 | |
1178 | 1255 | // Done it already - js wise? |
1179 | - if (!empty($_POST['backup_done'])) |
|
1180 | - return true; |
|
1256 | + if (!empty($_POST['backup_done'])) { |
|
1257 | + return true; |
|
1258 | + } |
|
1181 | 1259 | |
1182 | 1260 | // Some useful stuff here. |
1183 | 1261 | db_extend(); |
@@ -1191,9 +1269,10 @@ discard block |
||
1191 | 1269 | $tables = $smcFunc['db_list_tables']($db, $filter); |
1192 | 1270 | |
1193 | 1271 | $table_names = array(); |
1194 | - foreach ($tables as $table) |
|
1195 | - if (substr($table, 0, 7) !== 'backup_') |
|
1272 | + foreach ($tables as $table) { |
|
1273 | + if (substr($table, 0, 7) !== 'backup_') |
|
1196 | 1274 | $table_names[] = $table; |
1275 | + } |
|
1197 | 1276 | |
1198 | 1277 | $upcontext['table_count'] = count($table_names); |
1199 | 1278 | $upcontext['cur_table_num'] = $_GET['substep']; |
@@ -1203,12 +1282,14 @@ discard block |
||
1203 | 1282 | $file_steps = $upcontext['table_count']; |
1204 | 1283 | |
1205 | 1284 | // What ones have we already done? |
1206 | - foreach ($table_names as $id => $table) |
|
1207 | - if ($id < $_GET['substep']) |
|
1285 | + foreach ($table_names as $id => $table) { |
|
1286 | + if ($id < $_GET['substep']) |
|
1208 | 1287 | $upcontext['previous_tables'][] = $table; |
1288 | + } |
|
1209 | 1289 | |
1210 | - if ($command_line) |
|
1211 | - echo 'Backing Up Tables.'; |
|
1290 | + if ($command_line) { |
|
1291 | + echo 'Backing Up Tables.'; |
|
1292 | + } |
|
1212 | 1293 | |
1213 | 1294 | // If we don't support javascript we backup here. |
1214 | 1295 | if (!$support_js || isset($_GET['xml'])) |
@@ -1227,8 +1308,9 @@ discard block |
||
1227 | 1308 | backupTable($table_names[$substep]); |
1228 | 1309 | |
1229 | 1310 | // If this is XML to keep it nice for the user do one table at a time anyway! |
1230 | - if (isset($_GET['xml'])) |
|
1231 | - return upgradeExit(); |
|
1311 | + if (isset($_GET['xml'])) { |
|
1312 | + return upgradeExit(); |
|
1313 | + } |
|
1232 | 1314 | } |
1233 | 1315 | |
1234 | 1316 | if ($command_line) |
@@ -1261,9 +1343,10 @@ discard block |
||
1261 | 1343 | |
1262 | 1344 | $smcFunc['db_backup_table']($table, 'backup_' . $table); |
1263 | 1345 | |
1264 | - if ($command_line) |
|
1265 | - echo ' done.'; |
|
1266 | -} |
|
1346 | + if ($command_line) { |
|
1347 | + echo ' done.'; |
|
1348 | + } |
|
1349 | + } |
|
1267 | 1350 | |
1268 | 1351 | // Step 2: Everything. |
1269 | 1352 | function DatabaseChanges() |
@@ -1272,8 +1355,9 @@ discard block |
||
1272 | 1355 | global $upcontext, $support_js, $db_type; |
1273 | 1356 | |
1274 | 1357 | // Have we just completed this? |
1275 | - if (!empty($_POST['database_done'])) |
|
1276 | - return true; |
|
1358 | + if (!empty($_POST['database_done'])) { |
|
1359 | + return true; |
|
1360 | + } |
|
1277 | 1361 | |
1278 | 1362 | $upcontext['sub_template'] = isset($_GET['xml']) ? 'database_xml' : 'database_changes'; |
1279 | 1363 | $upcontext['page_title'] = 'Database Changes'; |
@@ -1288,15 +1372,16 @@ discard block |
||
1288 | 1372 | ); |
1289 | 1373 | |
1290 | 1374 | // How many files are there in total? |
1291 | - if (isset($_GET['filecount'])) |
|
1292 | - $upcontext['file_count'] = (int) $_GET['filecount']; |
|
1293 | - else |
|
1375 | + if (isset($_GET['filecount'])) { |
|
1376 | + $upcontext['file_count'] = (int) $_GET['filecount']; |
|
1377 | + } else |
|
1294 | 1378 | { |
1295 | 1379 | $upcontext['file_count'] = 0; |
1296 | 1380 | foreach ($files as $file) |
1297 | 1381 | { |
1298 | - if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < $file[1]) |
|
1299 | - $upcontext['file_count']++; |
|
1382 | + if (!isset($modSettings['smfVersion']) || $modSettings['smfVersion'] < $file[1]) { |
|
1383 | + $upcontext['file_count']++; |
|
1384 | + } |
|
1300 | 1385 | } |
1301 | 1386 | } |
1302 | 1387 | |
@@ -1306,9 +1391,9 @@ discard block |
||
1306 | 1391 | $upcontext['cur_file_num'] = 0; |
1307 | 1392 | foreach ($files as $file) |
1308 | 1393 | { |
1309 | - if ($did_not_do) |
|
1310 | - $did_not_do--; |
|
1311 | - else |
|
1394 | + if ($did_not_do) { |
|
1395 | + $did_not_do--; |
|
1396 | + } else |
|
1312 | 1397 | { |
1313 | 1398 | $upcontext['cur_file_num']++; |
1314 | 1399 | $upcontext['cur_file_name'] = $file[0]; |
@@ -1335,12 +1420,13 @@ discard block |
||
1335 | 1420 | // Flag to move on to the next. |
1336 | 1421 | $upcontext['completed_step'] = true; |
1337 | 1422 | // Did we complete the whole file? |
1338 | - if ($nextFile) |
|
1339 | - $upcontext['current_debug_item_num'] = -1; |
|
1423 | + if ($nextFile) { |
|
1424 | + $upcontext['current_debug_item_num'] = -1; |
|
1425 | + } |
|
1340 | 1426 | return upgradeExit(); |
1427 | + } elseif ($support_js) { |
|
1428 | + break; |
|
1341 | 1429 | } |
1342 | - elseif ($support_js) |
|
1343 | - break; |
|
1344 | 1430 | } |
1345 | 1431 | // Set the progress bar to be right as if we had - even if we hadn't... |
1346 | 1432 | $upcontext['step_progress'] = ($upcontext['cur_file_num'] / $upcontext['file_count']) * 100; |
@@ -1365,8 +1451,9 @@ discard block |
||
1365 | 1451 | global $command_line, $language, $upcontext, $sourcedir, $forum_version, $user_info, $maintenance, $smcFunc, $db_type; |
1366 | 1452 | |
1367 | 1453 | // Now it's nice to have some of the basic SMF source files. |
1368 | - if (!isset($_GET['ssi']) && !$command_line) |
|
1369 | - redirectLocation('&ssi=1'); |
|
1454 | + if (!isset($_GET['ssi']) && !$command_line) { |
|
1455 | + redirectLocation('&ssi=1'); |
|
1456 | + } |
|
1370 | 1457 | |
1371 | 1458 | $upcontext['sub_template'] = 'upgrade_complete'; |
1372 | 1459 | $upcontext['page_title'] = 'Upgrade Complete'; |
@@ -1382,14 +1469,16 @@ discard block |
||
1382 | 1469 | // Are we in maintenance mode? |
1383 | 1470 | if (isset($upcontext['user']['main'])) |
1384 | 1471 | { |
1385 | - if ($command_line) |
|
1386 | - echo ' * '; |
|
1472 | + if ($command_line) { |
|
1473 | + echo ' * '; |
|
1474 | + } |
|
1387 | 1475 | $upcontext['removed_maintenance'] = true; |
1388 | 1476 | $changes['maintenance'] = $upcontext['user']['main']; |
1389 | 1477 | } |
1390 | 1478 | // Otherwise if somehow we are in 2 let's go to 1. |
1391 | - elseif (!empty($maintenance) && $maintenance == 2) |
|
1392 | - $changes['maintenance'] = 1; |
|
1479 | + elseif (!empty($maintenance) && $maintenance == 2) { |
|
1480 | + $changes['maintenance'] = 1; |
|
1481 | + } |
|
1393 | 1482 | |
1394 | 1483 | // Wipe this out... |
1395 | 1484 | $upcontext['user'] = array(); |
@@ -1404,9 +1493,9 @@ discard block |
||
1404 | 1493 | $upcontext['can_delete_script'] = is_writable(dirname(__FILE__)) || is_writable(__FILE__); |
1405 | 1494 | |
1406 | 1495 | // Now is the perfect time to fetch the SM files. |
1407 | - if ($command_line) |
|
1408 | - cli_scheduled_fetchSMfiles(); |
|
1409 | - else |
|
1496 | + if ($command_line) { |
|
1497 | + cli_scheduled_fetchSMfiles(); |
|
1498 | + } else |
|
1410 | 1499 | { |
1411 | 1500 | require_once($sourcedir . '/ScheduledTasks.php'); |
1412 | 1501 | $forum_version = SMF_VERSION; // The variable is usually defined in index.php so lets just use the constant to do it for us. |
@@ -1414,8 +1503,9 @@ discard block |
||
1414 | 1503 | } |
1415 | 1504 | |
1416 | 1505 | // Log what we've done. |
1417 | - if (empty($user_info['id'])) |
|
1418 | - $user_info['id'] = !empty($upcontext['user']['id']) ? $upcontext['user']['id'] : 0; |
|
1506 | + if (empty($user_info['id'])) { |
|
1507 | + $user_info['id'] = !empty($upcontext['user']['id']) ? $upcontext['user']['id'] : 0; |
|
1508 | + } |
|
1419 | 1509 | |
1420 | 1510 | // Log the action manually, so CLI still works. |
1421 | 1511 | $smcFunc['db_insert']('', |
@@ -1434,8 +1524,9 @@ discard block |
||
1434 | 1524 | |
1435 | 1525 | // Save the current database version. |
1436 | 1526 | $server_version = $smcFunc['db_server_info'](); |
1437 | - if ($db_type == 'mysql' && in_array(substr($server_version, 0, 6), array('5.0.50', '5.0.51'))) |
|
1438 | - updateSettings(array('db_mysql_group_by_fix' => '1')); |
|
1527 | + if ($db_type == 'mysql' && in_array(substr($server_version, 0, 6), array('5.0.50', '5.0.51'))) { |
|
1528 | + updateSettings(array('db_mysql_group_by_fix' => '1')); |
|
1529 | + } |
|
1439 | 1530 | |
1440 | 1531 | if ($command_line) |
1441 | 1532 | { |
@@ -1447,8 +1538,9 @@ discard block |
||
1447 | 1538 | |
1448 | 1539 | // Make sure it says we're done. |
1449 | 1540 | $upcontext['overall_percent'] = 100; |
1450 | - if (isset($upcontext['step_progress'])) |
|
1451 | - unset($upcontext['step_progress']); |
|
1541 | + if (isset($upcontext['step_progress'])) { |
|
1542 | + unset($upcontext['step_progress']); |
|
1543 | + } |
|
1452 | 1544 | |
1453 | 1545 | $_GET['substep'] = 0; |
1454 | 1546 | return false; |
@@ -1459,8 +1551,9 @@ discard block |
||
1459 | 1551 | { |
1460 | 1552 | global $sourcedir, $language, $forum_version, $modSettings, $smcFunc; |
1461 | 1553 | |
1462 | - if (empty($modSettings['time_format'])) |
|
1463 | - $modSettings['time_format'] = '%B %d, %Y, %I:%M:%S %p'; |
|
1554 | + if (empty($modSettings['time_format'])) { |
|
1555 | + $modSettings['time_format'] = '%B %d, %Y, %I:%M:%S %p'; |
|
1556 | + } |
|
1464 | 1557 | |
1465 | 1558 | // What files do we want to get |
1466 | 1559 | $request = $smcFunc['db_query']('', ' |
@@ -1494,8 +1587,9 @@ discard block |
||
1494 | 1587 | $file_data = fetch_web_data($url); |
1495 | 1588 | |
1496 | 1589 | // If we got an error - give up - the site might be down. |
1497 | - if ($file_data === false) |
|
1498 | - return throw_error(sprintf('Could not retrieve the file %1$s.', $url)); |
|
1590 | + if ($file_data === false) { |
|
1591 | + return throw_error(sprintf('Could not retrieve the file %1$s.', $url)); |
|
1592 | + } |
|
1499 | 1593 | |
1500 | 1594 | // Save the file to the database. |
1501 | 1595 | $smcFunc['db_query']('substring', ' |
@@ -1537,8 +1631,9 @@ discard block |
||
1537 | 1631 | $themeData = array(); |
1538 | 1632 | foreach ($values as $variable => $value) |
1539 | 1633 | { |
1540 | - if (!isset($value) || $value === null) |
|
1541 | - $value = 0; |
|
1634 | + if (!isset($value) || $value === null) { |
|
1635 | + $value = 0; |
|
1636 | + } |
|
1542 | 1637 | |
1543 | 1638 | $themeData[] = array(0, 1, $variable, $value); |
1544 | 1639 | } |
@@ -1567,8 +1662,9 @@ discard block |
||
1567 | 1662 | |
1568 | 1663 | foreach ($values as $variable => $value) |
1569 | 1664 | { |
1570 | - if (empty($modSettings[$value[0]])) |
|
1571 | - continue; |
|
1665 | + if (empty($modSettings[$value[0]])) { |
|
1666 | + continue; |
|
1667 | + } |
|
1572 | 1668 | |
1573 | 1669 | $smcFunc['db_query']('', ' |
1574 | 1670 | INSERT IGNORE INTO {db_prefix}themes |
@@ -1654,19 +1750,21 @@ discard block |
||
1654 | 1750 | set_error_handler( |
1655 | 1751 | function ($errno, $errstr, $errfile, $errline) use ($support_js) |
1656 | 1752 | { |
1657 | - if ($support_js) |
|
1658 | - return true; |
|
1659 | - else |
|
1660 | - echo 'Error: ' . $errstr . ' File: ' . $errfile . ' Line: ' . $errline; |
|
1753 | + if ($support_js) { |
|
1754 | + return true; |
|
1755 | + } else { |
|
1756 | + echo 'Error: ' . $errstr . ' File: ' . $errfile . ' Line: ' . $errline; |
|
1757 | + } |
|
1661 | 1758 | } |
1662 | 1759 | ); |
1663 | 1760 | |
1664 | 1761 | // If we're on MySQL, set {db_collation}; this approach is used throughout upgrade_2-0_mysql.php to set new tables to utf8 |
1665 | 1762 | // Note it is expected to be in the format: ENGINE=MyISAM{$db_collation}; |
1666 | - if ($db_type == 'mysql') |
|
1667 | - $db_collation = ' DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci'; |
|
1668 | - else |
|
1669 | - $db_collation = ''; |
|
1763 | + if ($db_type == 'mysql') { |
|
1764 | + $db_collation = ' DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci'; |
|
1765 | + } else { |
|
1766 | + $db_collation = ''; |
|
1767 | + } |
|
1670 | 1768 | |
1671 | 1769 | $endl = $command_line ? "\n" : '<br>' . "\n"; |
1672 | 1770 | |
@@ -1678,8 +1776,9 @@ discard block |
||
1678 | 1776 | $last_step = ''; |
1679 | 1777 | |
1680 | 1778 | // Make sure all newly created tables will have the proper characters set; this approach is used throughout upgrade_2-1_mysql.php |
1681 | - if (isset($db_character_set) && $db_character_set === 'utf8') |
|
1682 | - $lines = str_replace(') ENGINE=MyISAM;', ') ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;', $lines); |
|
1779 | + if (isset($db_character_set) && $db_character_set === 'utf8') { |
|
1780 | + $lines = str_replace(') ENGINE=MyISAM;', ') ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;', $lines); |
|
1781 | + } |
|
1683 | 1782 | |
1684 | 1783 | // Count the total number of steps within this file - for progress. |
1685 | 1784 | $file_steps = substr_count(implode('', $lines), '---#'); |
@@ -1699,15 +1798,18 @@ discard block |
||
1699 | 1798 | $do_current = $substep >= $_GET['substep']; |
1700 | 1799 | |
1701 | 1800 | // Get rid of any comments in the beginning of the line... |
1702 | - if (substr(trim($line), 0, 2) === '/*') |
|
1703 | - $line = preg_replace('~/\*.+?\*/~', '', $line); |
|
1801 | + if (substr(trim($line), 0, 2) === '/*') { |
|
1802 | + $line = preg_replace('~/\*.+?\*/~', '', $line); |
|
1803 | + } |
|
1704 | 1804 | |
1705 | 1805 | // Always flush. Flush, flush, flush. Flush, flush, flush, flush! FLUSH! |
1706 | - if ($is_debug && !$support_js && $command_line) |
|
1707 | - flush(); |
|
1806 | + if ($is_debug && !$support_js && $command_line) { |
|
1807 | + flush(); |
|
1808 | + } |
|
1708 | 1809 | |
1709 | - if (trim($line) === '') |
|
1710 | - continue; |
|
1810 | + if (trim($line) === '') { |
|
1811 | + continue; |
|
1812 | + } |
|
1711 | 1813 | |
1712 | 1814 | if (trim(substr($line, 0, 3)) === '---') |
1713 | 1815 | { |
@@ -1717,8 +1819,9 @@ discard block |
||
1717 | 1819 | if (trim($current_data) != '' && $type !== '}') |
1718 | 1820 | { |
1719 | 1821 | $upcontext['error_message'] = 'Error in upgrade script - line ' . $line_number . '!' . $endl; |
1720 | - if ($command_line) |
|
1721 | - echo $upcontext['error_message']; |
|
1822 | + if ($command_line) { |
|
1823 | + echo $upcontext['error_message']; |
|
1824 | + } |
|
1722 | 1825 | } |
1723 | 1826 | |
1724 | 1827 | if ($type == ' ') |
@@ -1736,17 +1839,18 @@ discard block |
||
1736 | 1839 | if ($do_current) |
1737 | 1840 | { |
1738 | 1841 | $upcontext['actioned_items'][] = $last_step; |
1739 | - if ($command_line) |
|
1740 | - echo ' * '; |
|
1842 | + if ($command_line) { |
|
1843 | + echo ' * '; |
|
1844 | + } |
|
1741 | 1845 | } |
1742 | - } |
|
1743 | - elseif ($type == '#') |
|
1846 | + } elseif ($type == '#') |
|
1744 | 1847 | { |
1745 | 1848 | $upcontext['step_progress'] += (100 / $upcontext['file_count']) / $file_steps; |
1746 | 1849 | |
1747 | 1850 | $upcontext['current_debug_item_num']++; |
1748 | - if (trim($line) != '---#') |
|
1749 | - $upcontext['current_debug_item_name'] = htmlspecialchars(rtrim(substr($line, 4))); |
|
1851 | + if (trim($line) != '---#') { |
|
1852 | + $upcontext['current_debug_item_name'] = htmlspecialchars(rtrim(substr($line, 4))); |
|
1853 | + } |
|
1750 | 1854 | |
1751 | 1855 | // Have we already done something? |
1752 | 1856 | if (isset($_GET['xml']) && $done_something) |
@@ -1757,34 +1861,36 @@ discard block |
||
1757 | 1861 | |
1758 | 1862 | if ($do_current) |
1759 | 1863 | { |
1760 | - if (trim($line) == '---#' && $command_line) |
|
1761 | - echo ' done.', $endl; |
|
1762 | - elseif ($command_line) |
|
1763 | - echo ' +++ ', rtrim(substr($line, 4)); |
|
1764 | - elseif (trim($line) != '---#') |
|
1864 | + if (trim($line) == '---#' && $command_line) { |
|
1865 | + echo ' done.', $endl; |
|
1866 | + } elseif ($command_line) { |
|
1867 | + echo ' +++ ', rtrim(substr($line, 4)); |
|
1868 | + } elseif (trim($line) != '---#') |
|
1765 | 1869 | { |
1766 | - if ($is_debug) |
|
1767 | - $upcontext['actioned_items'][] = htmlspecialchars(rtrim(substr($line, 4))); |
|
1870 | + if ($is_debug) { |
|
1871 | + $upcontext['actioned_items'][] = htmlspecialchars(rtrim(substr($line, 4))); |
|
1872 | + } |
|
1768 | 1873 | } |
1769 | 1874 | } |
1770 | 1875 | |
1771 | 1876 | if ($substep < $_GET['substep'] && $substep + 1 >= $_GET['substep']) |
1772 | 1877 | { |
1773 | - if ($command_line) |
|
1774 | - echo ' * '; |
|
1775 | - else |
|
1776 | - $upcontext['actioned_items'][] = $last_step; |
|
1878 | + if ($command_line) { |
|
1879 | + echo ' * '; |
|
1880 | + } else { |
|
1881 | + $upcontext['actioned_items'][] = $last_step; |
|
1882 | + } |
|
1777 | 1883 | } |
1778 | 1884 | |
1779 | 1885 | // Small step - only if we're actually doing stuff. |
1780 | - if ($do_current) |
|
1781 | - nextSubstep(++$substep); |
|
1782 | - else |
|
1783 | - $substep++; |
|
1784 | - } |
|
1785 | - elseif ($type == '{') |
|
1786 | - $current_type = 'code'; |
|
1787 | - elseif ($type == '}') |
|
1886 | + if ($do_current) { |
|
1887 | + nextSubstep(++$substep); |
|
1888 | + } else { |
|
1889 | + $substep++; |
|
1890 | + } |
|
1891 | + } elseif ($type == '{') { |
|
1892 | + $current_type = 'code'; |
|
1893 | + } elseif ($type == '}') |
|
1788 | 1894 | { |
1789 | 1895 | $current_type = 'sql'; |
1790 | 1896 | |
@@ -1797,8 +1903,9 @@ discard block |
||
1797 | 1903 | if (eval('global $db_prefix, $modSettings, $smcFunc; ' . $current_data) === false) |
1798 | 1904 | { |
1799 | 1905 | $upcontext['error_message'] = 'Error in upgrade script ' . basename($filename) . ' on line ' . $line_number . '!' . $endl; |
1800 | - if ($command_line) |
|
1801 | - echo $upcontext['error_message']; |
|
1906 | + if ($command_line) { |
|
1907 | + echo $upcontext['error_message']; |
|
1908 | + } |
|
1802 | 1909 | } |
1803 | 1910 | |
1804 | 1911 | // Done with code! |
@@ -1878,8 +1985,9 @@ discard block |
||
1878 | 1985 | $db_unbuffered = false; |
1879 | 1986 | |
1880 | 1987 | // Failure?! |
1881 | - if ($result !== false) |
|
1882 | - return $result; |
|
1988 | + if ($result !== false) { |
|
1989 | + return $result; |
|
1990 | + } |
|
1883 | 1991 | |
1884 | 1992 | $db_error_message = $smcFunc['db_error']($db_connection); |
1885 | 1993 | // If MySQL we do something more clever. |
@@ -1907,54 +2015,61 @@ discard block |
||
1907 | 2015 | { |
1908 | 2016 | mysqli_query($db_connection, 'REPAIR TABLE `' . $match[1] . '`'); |
1909 | 2017 | $result = mysqli_query($db_connection, $string); |
1910 | - if ($result !== false) |
|
1911 | - return $result; |
|
2018 | + if ($result !== false) { |
|
2019 | + return $result; |
|
2020 | + } |
|
1912 | 2021 | } |
1913 | - } |
|
1914 | - elseif ($mysqli_errno == 2013) |
|
2022 | + } elseif ($mysqli_errno == 2013) |
|
1915 | 2023 | { |
1916 | 2024 | $db_connection = mysqli_connect($db_server, $db_user, $db_passwd); |
1917 | 2025 | mysqli_select_db($db_connection, $db_name); |
1918 | 2026 | if ($db_connection) |
1919 | 2027 | { |
1920 | 2028 | $result = mysqli_query($db_connection, $string); |
1921 | - if ($result !== false) |
|
1922 | - return $result; |
|
2029 | + if ($result !== false) { |
|
2030 | + return $result; |
|
2031 | + } |
|
1923 | 2032 | } |
1924 | 2033 | } |
1925 | 2034 | // Duplicate column name... should be okay ;). |
1926 | - elseif (in_array($mysqli_errno, array(1060, 1061, 1068, 1091))) |
|
1927 | - return false; |
|
2035 | + elseif (in_array($mysqli_errno, array(1060, 1061, 1068, 1091))) { |
|
2036 | + return false; |
|
2037 | + } |
|
1928 | 2038 | // Duplicate insert... make sure it's the proper type of query ;). |
1929 | - elseif (in_array($mysqli_errno, array(1054, 1062, 1146)) && $error_query) |
|
1930 | - return false; |
|
2039 | + elseif (in_array($mysqli_errno, array(1054, 1062, 1146)) && $error_query) { |
|
2040 | + return false; |
|
2041 | + } |
|
1931 | 2042 | // Creating an index on a non-existent column. |
1932 | - elseif ($mysqli_errno == 1072) |
|
1933 | - return false; |
|
1934 | - elseif ($mysqli_errno == 1050 && substr(trim($string), 0, 12) == 'RENAME TABLE') |
|
1935 | - return false; |
|
2043 | + elseif ($mysqli_errno == 1072) { |
|
2044 | + return false; |
|
2045 | + } elseif ($mysqli_errno == 1050 && substr(trim($string), 0, 12) == 'RENAME TABLE') { |
|
2046 | + return false; |
|
2047 | + } |
|
1936 | 2048 | } |
1937 | 2049 | // If a table already exists don't go potty. |
1938 | 2050 | else |
1939 | 2051 | { |
1940 | 2052 | if (in_array(substr(trim($string), 0, 8), array('CREATE T', 'CREATE S', 'DROP TABL', 'ALTER TA', 'CREATE I', 'CREATE U'))) |
1941 | 2053 | { |
1942 | - if (strpos($db_error_message, 'exist') !== false) |
|
1943 | - return true; |
|
1944 | - } |
|
1945 | - elseif (strpos(trim($string), 'INSERT ') !== false) |
|
2054 | + if (strpos($db_error_message, 'exist') !== false) { |
|
2055 | + return true; |
|
2056 | + } |
|
2057 | + } elseif (strpos(trim($string), 'INSERT ') !== false) |
|
1946 | 2058 | { |
1947 | - if (strpos($db_error_message, 'duplicate') !== false) |
|
1948 | - return true; |
|
2059 | + if (strpos($db_error_message, 'duplicate') !== false) { |
|
2060 | + return true; |
|
2061 | + } |
|
1949 | 2062 | } |
1950 | 2063 | } |
1951 | 2064 | |
1952 | 2065 | // Get the query string so we pass everything. |
1953 | 2066 | $query_string = ''; |
1954 | - foreach ($_GET as $k => $v) |
|
1955 | - $query_string .= ';' . $k . '=' . $v; |
|
1956 | - if (strlen($query_string) != 0) |
|
1957 | - $query_string = '?' . substr($query_string, 1); |
|
2067 | + foreach ($_GET as $k => $v) { |
|
2068 | + $query_string .= ';' . $k . '=' . $v; |
|
2069 | + } |
|
2070 | + if (strlen($query_string) != 0) { |
|
2071 | + $query_string = '?' . substr($query_string, 1); |
|
2072 | + } |
|
1958 | 2073 | |
1959 | 2074 | if ($command_line) |
1960 | 2075 | { |
@@ -2009,16 +2124,18 @@ discard block |
||
2009 | 2124 | { |
2010 | 2125 | $found |= 1; |
2011 | 2126 | // Do some checks on the data if we have it set. |
2012 | - if (isset($change['col_type'])) |
|
2013 | - $found &= $change['col_type'] === $column['type']; |
|
2014 | - if (isset($change['null_allowed'])) |
|
2015 | - $found &= $column['null'] == $change['null_allowed']; |
|
2016 | - if (isset($change['default'])) |
|
2017 | - $found &= $change['default'] === $column['default']; |
|
2127 | + if (isset($change['col_type'])) { |
|
2128 | + $found &= $change['col_type'] === $column['type']; |
|
2129 | + } |
|
2130 | + if (isset($change['null_allowed'])) { |
|
2131 | + $found &= $column['null'] == $change['null_allowed']; |
|
2132 | + } |
|
2133 | + if (isset($change['default'])) { |
|
2134 | + $found &= $change['default'] === $column['default']; |
|
2135 | + } |
|
2018 | 2136 | } |
2019 | 2137 | } |
2020 | - } |
|
2021 | - elseif ($change['type'] === 'index') |
|
2138 | + } elseif ($change['type'] === 'index') |
|
2022 | 2139 | { |
2023 | 2140 | $request = upgrade_query(' |
2024 | 2141 | SHOW INDEX |
@@ -2027,9 +2144,10 @@ discard block |
||
2027 | 2144 | { |
2028 | 2145 | $cur_index = array(); |
2029 | 2146 | |
2030 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2031 | - if ($row['Key_name'] === $change['name']) |
|
2147 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2148 | + if ($row['Key_name'] === $change['name']) |
|
2032 | 2149 | $cur_index[(int) $row['Seq_in_index']] = $row['Column_name']; |
2150 | + } |
|
2033 | 2151 | |
2034 | 2152 | ksort($cur_index, SORT_NUMERIC); |
2035 | 2153 | $found = array_values($cur_index) === $change['target_columns']; |
@@ -2039,14 +2157,17 @@ discard block |
||
2039 | 2157 | } |
2040 | 2158 | |
2041 | 2159 | // If we're trying to add and it's added, we're done. |
2042 | - if ($found && in_array($change['method'], array('add', 'change'))) |
|
2043 | - return true; |
|
2160 | + if ($found && in_array($change['method'], array('add', 'change'))) { |
|
2161 | + return true; |
|
2162 | + } |
|
2044 | 2163 | // Otherwise if we're removing and it wasn't found we're also done. |
2045 | - elseif (!$found && in_array($change['method'], array('remove', 'change_remove'))) |
|
2046 | - return true; |
|
2164 | + elseif (!$found && in_array($change['method'], array('remove', 'change_remove'))) { |
|
2165 | + return true; |
|
2166 | + } |
|
2047 | 2167 | // Otherwise is it just a test? |
2048 | - elseif ($is_test) |
|
2049 | - return false; |
|
2168 | + elseif ($is_test) { |
|
2169 | + return false; |
|
2170 | + } |
|
2050 | 2171 | |
2051 | 2172 | // Not found it yet? Bummer! How about we see if we're currently doing it? |
2052 | 2173 | $running = false; |
@@ -2057,8 +2178,9 @@ discard block |
||
2057 | 2178 | SHOW FULL PROCESSLIST'); |
2058 | 2179 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
2059 | 2180 | { |
2060 | - if (strpos($row['Info'], 'ALTER TABLE ' . $db_prefix . $change['table']) !== false && strpos($row['Info'], $change['text']) !== false) |
|
2061 | - $found = true; |
|
2181 | + if (strpos($row['Info'], 'ALTER TABLE ' . $db_prefix . $change['table']) !== false && strpos($row['Info'], $change['text']) !== false) { |
|
2182 | + $found = true; |
|
2183 | + } |
|
2062 | 2184 | } |
2063 | 2185 | |
2064 | 2186 | // Can't find it? Then we need to run it fools! |
@@ -2070,8 +2192,9 @@ discard block |
||
2070 | 2192 | ALTER TABLE ' . $db_prefix . $change['table'] . ' |
2071 | 2193 | ' . $change['text'], true) !== false; |
2072 | 2194 | |
2073 | - if (!$success) |
|
2074 | - return false; |
|
2195 | + if (!$success) { |
|
2196 | + return false; |
|
2197 | + } |
|
2075 | 2198 | |
2076 | 2199 | // Return |
2077 | 2200 | $running = true; |
@@ -2113,8 +2236,9 @@ discard block |
||
2113 | 2236 | 'db_error_skip' => true, |
2114 | 2237 | ) |
2115 | 2238 | ); |
2116 | - if ($smcFunc['db_num_rows']($request) === 0) |
|
2117 | - die('Unable to find column ' . $change['column'] . ' inside table ' . $db_prefix . $change['table']); |
|
2239 | + if ($smcFunc['db_num_rows']($request) === 0) { |
|
2240 | + die('Unable to find column ' . $change['column'] . ' inside table ' . $db_prefix . $change['table']); |
|
2241 | + } |
|
2118 | 2242 | $table_row = $smcFunc['db_fetch_assoc']($request); |
2119 | 2243 | $smcFunc['db_free_result']($request); |
2120 | 2244 | |
@@ -2136,18 +2260,19 @@ discard block |
||
2136 | 2260 | ) |
2137 | 2261 | ); |
2138 | 2262 | // No results? Just forget it all together. |
2139 | - if ($smcFunc['db_num_rows']($request) === 0) |
|
2140 | - unset($table_row['Collation']); |
|
2141 | - else |
|
2142 | - $collation_info = $smcFunc['db_fetch_assoc']($request); |
|
2263 | + if ($smcFunc['db_num_rows']($request) === 0) { |
|
2264 | + unset($table_row['Collation']); |
|
2265 | + } else { |
|
2266 | + $collation_info = $smcFunc['db_fetch_assoc']($request); |
|
2267 | + } |
|
2143 | 2268 | $smcFunc['db_free_result']($request); |
2144 | 2269 | } |
2145 | 2270 | |
2146 | 2271 | if ($column_fix) |
2147 | 2272 | { |
2148 | 2273 | // Make sure there are no NULL's left. |
2149 | - if ($null_fix) |
|
2150 | - $smcFunc['db_query']('', ' |
|
2274 | + if ($null_fix) { |
|
2275 | + $smcFunc['db_query']('', ' |
|
2151 | 2276 | UPDATE {db_prefix}' . $change['table'] . ' |
2152 | 2277 | SET ' . $change['column'] . ' = {string:default} |
2153 | 2278 | WHERE ' . $change['column'] . ' IS NULL', |
@@ -2156,6 +2281,7 @@ discard block |
||
2156 | 2281 | 'db_error_skip' => true, |
2157 | 2282 | ) |
2158 | 2283 | ); |
2284 | + } |
|
2159 | 2285 | |
2160 | 2286 | // Do the actual alteration. |
2161 | 2287 | $smcFunc['db_query']('', ' |
@@ -2184,8 +2310,9 @@ discard block |
||
2184 | 2310 | } |
2185 | 2311 | |
2186 | 2312 | // Not a column we need to check on? |
2187 | - if (!in_array($change['name'], array('memberGroups', 'passwordSalt'))) |
|
2188 | - return; |
|
2313 | + if (!in_array($change['name'], array('memberGroups', 'passwordSalt'))) { |
|
2314 | + return; |
|
2315 | + } |
|
2189 | 2316 | |
2190 | 2317 | // Break it up you (six|seven). |
2191 | 2318 | $temp = explode(' ', str_replace('NOT NULL', 'NOT_NULL', $change['text'])); |
@@ -2204,13 +2331,13 @@ discard block |
||
2204 | 2331 | 'new_name' => $temp[2], |
2205 | 2332 | )); |
2206 | 2333 | // !!! This doesn't technically work because we don't pass request into it, but it hasn't broke anything yet. |
2207 | - if ($smcFunc['db_num_rows'] != 1) |
|
2208 | - return; |
|
2334 | + if ($smcFunc['db_num_rows'] != 1) { |
|
2335 | + return; |
|
2336 | + } |
|
2209 | 2337 | |
2210 | 2338 | list (, $current_type) = $smcFunc['db_fetch_assoc']($request); |
2211 | 2339 | $smcFunc['db_free_result']($request); |
2212 | - } |
|
2213 | - else |
|
2340 | + } else |
|
2214 | 2341 | { |
2215 | 2342 | // Do this the old fashion, sure method way. |
2216 | 2343 | $request = $smcFunc['db_query']('', ' |
@@ -2221,21 +2348,24 @@ discard block |
||
2221 | 2348 | )); |
2222 | 2349 | // Mayday! |
2223 | 2350 | // !!! This doesn't technically work because we don't pass request into it, but it hasn't broke anything yet. |
2224 | - if ($smcFunc['db_num_rows'] == 0) |
|
2225 | - return; |
|
2351 | + if ($smcFunc['db_num_rows'] == 0) { |
|
2352 | + return; |
|
2353 | + } |
|
2226 | 2354 | |
2227 | 2355 | // Oh where, oh where has my little field gone. Oh where can it be... |
2228 | - while ($row = $smcFunc['db_query']($request)) |
|
2229 | - if ($row['Field'] == $temp[1] || $row['Field'] == $temp[2]) |
|
2356 | + while ($row = $smcFunc['db_query']($request)) { |
|
2357 | + if ($row['Field'] == $temp[1] || $row['Field'] == $temp[2]) |
|
2230 | 2358 | { |
2231 | 2359 | $current_type = $row['Type']; |
2360 | + } |
|
2232 | 2361 | break; |
2233 | 2362 | } |
2234 | 2363 | } |
2235 | 2364 | |
2236 | 2365 | // If this doesn't match, the column may of been altered for a reason. |
2237 | - if (trim($current_type) != trim($temp[3])) |
|
2238 | - $temp[3] = $current_type; |
|
2366 | + if (trim($current_type) != trim($temp[3])) { |
|
2367 | + $temp[3] = $current_type; |
|
2368 | + } |
|
2239 | 2369 | |
2240 | 2370 | // Piece this back together. |
2241 | 2371 | $change['text'] = str_replace('NOT_NULL', 'NOT NULL', implode(' ', $temp)); |
@@ -2247,8 +2377,9 @@ discard block |
||
2247 | 2377 | global $start_time, $timeLimitThreshold, $command_line, $custom_warning; |
2248 | 2378 | global $step_progress, $is_debug, $upcontext; |
2249 | 2379 | |
2250 | - if ($_GET['substep'] < $substep) |
|
2251 | - $_GET['substep'] = $substep; |
|
2380 | + if ($_GET['substep'] < $substep) { |
|
2381 | + $_GET['substep'] = $substep; |
|
2382 | + } |
|
2252 | 2383 | |
2253 | 2384 | if ($command_line) |
2254 | 2385 | { |
@@ -2261,29 +2392,33 @@ discard block |
||
2261 | 2392 | } |
2262 | 2393 | |
2263 | 2394 | @set_time_limit(300); |
2264 | - if (function_exists('apache_reset_timeout')) |
|
2265 | - @apache_reset_timeout(); |
|
2395 | + if (function_exists('apache_reset_timeout')) { |
|
2396 | + @apache_reset_timeout(); |
|
2397 | + } |
|
2266 | 2398 | |
2267 | - if (time() - $start_time <= $timeLimitThreshold) |
|
2268 | - return; |
|
2399 | + if (time() - $start_time <= $timeLimitThreshold) { |
|
2400 | + return; |
|
2401 | + } |
|
2269 | 2402 | |
2270 | 2403 | // Do we have some custom step progress stuff? |
2271 | 2404 | if (!empty($step_progress)) |
2272 | 2405 | { |
2273 | 2406 | $upcontext['substep_progress'] = 0; |
2274 | 2407 | $upcontext['substep_progress_name'] = $step_progress['name']; |
2275 | - if ($step_progress['current'] > $step_progress['total']) |
|
2276 | - $upcontext['substep_progress'] = 99.9; |
|
2277 | - else |
|
2278 | - $upcontext['substep_progress'] = ($step_progress['current'] / $step_progress['total']) * 100; |
|
2408 | + if ($step_progress['current'] > $step_progress['total']) { |
|
2409 | + $upcontext['substep_progress'] = 99.9; |
|
2410 | + } else { |
|
2411 | + $upcontext['substep_progress'] = ($step_progress['current'] / $step_progress['total']) * 100; |
|
2412 | + } |
|
2279 | 2413 | |
2280 | 2414 | // Make it nicely rounded. |
2281 | 2415 | $upcontext['substep_progress'] = round($upcontext['substep_progress'], 1); |
2282 | 2416 | } |
2283 | 2417 | |
2284 | 2418 | // If this is XML we just exit right away! |
2285 | - if (isset($_GET['xml'])) |
|
2286 | - return upgradeExit(); |
|
2419 | + if (isset($_GET['xml'])) { |
|
2420 | + return upgradeExit(); |
|
2421 | + } |
|
2287 | 2422 | |
2288 | 2423 | // We're going to pause after this! |
2289 | 2424 | $upcontext['pause'] = true; |
@@ -2291,13 +2426,15 @@ discard block |
||
2291 | 2426 | $upcontext['query_string'] = ''; |
2292 | 2427 | foreach ($_GET as $k => $v) |
2293 | 2428 | { |
2294 | - if ($k != 'data' && $k != 'substep' && $k != 'step') |
|
2295 | - $upcontext['query_string'] .= ';' . $k . '=' . $v; |
|
2429 | + if ($k != 'data' && $k != 'substep' && $k != 'step') { |
|
2430 | + $upcontext['query_string'] .= ';' . $k . '=' . $v; |
|
2431 | + } |
|
2296 | 2432 | } |
2297 | 2433 | |
2298 | 2434 | // Custom warning? |
2299 | - if (!empty($custom_warning)) |
|
2300 | - $upcontext['custom_warning'] = $custom_warning; |
|
2435 | + if (!empty($custom_warning)) { |
|
2436 | + $upcontext['custom_warning'] = $custom_warning; |
|
2437 | + } |
|
2301 | 2438 | |
2302 | 2439 | upgradeExit(); |
2303 | 2440 | } |
@@ -2312,25 +2449,26 @@ discard block |
||
2312 | 2449 | ob_implicit_flush(true); |
2313 | 2450 | @set_time_limit(600); |
2314 | 2451 | |
2315 | - if (!isset($_SERVER['argv'])) |
|
2316 | - $_SERVER['argv'] = array(); |
|
2452 | + if (!isset($_SERVER['argv'])) { |
|
2453 | + $_SERVER['argv'] = array(); |
|
2454 | + } |
|
2317 | 2455 | $_GET['maint'] = 1; |
2318 | 2456 | |
2319 | 2457 | foreach ($_SERVER['argv'] as $i => $arg) |
2320 | 2458 | { |
2321 | - if (preg_match('~^--language=(.+)$~', $arg, $match) != 0) |
|
2322 | - $_GET['lang'] = $match[1]; |
|
2323 | - elseif (preg_match('~^--path=(.+)$~', $arg) != 0) |
|
2324 | - continue; |
|
2325 | - elseif ($arg == '--no-maintenance') |
|
2326 | - $_GET['maint'] = 0; |
|
2327 | - elseif ($arg == '--debug') |
|
2328 | - $is_debug = true; |
|
2329 | - elseif ($arg == '--backup') |
|
2330 | - $_POST['backup'] = 1; |
|
2331 | - elseif ($arg == '--template' && (file_exists($boarddir . '/template.php') || file_exists($boarddir . '/template.html') && !file_exists($modSettings['theme_dir'] . '/converted'))) |
|
2332 | - $_GET['conv'] = 1; |
|
2333 | - elseif ($i != 0) |
|
2459 | + if (preg_match('~^--language=(.+)$~', $arg, $match) != 0) { |
|
2460 | + $_GET['lang'] = $match[1]; |
|
2461 | + } elseif (preg_match('~^--path=(.+)$~', $arg) != 0) { |
|
2462 | + continue; |
|
2463 | + } elseif ($arg == '--no-maintenance') { |
|
2464 | + $_GET['maint'] = 0; |
|
2465 | + } elseif ($arg == '--debug') { |
|
2466 | + $is_debug = true; |
|
2467 | + } elseif ($arg == '--backup') { |
|
2468 | + $_POST['backup'] = 1; |
|
2469 | + } elseif ($arg == '--template' && (file_exists($boarddir . '/template.php') || file_exists($boarddir . '/template.html') && !file_exists($modSettings['theme_dir'] . '/converted'))) { |
|
2470 | + $_GET['conv'] = 1; |
|
2471 | + } elseif ($i != 0) |
|
2334 | 2472 | { |
2335 | 2473 | echo 'SMF Command-line Upgrader |
2336 | 2474 | Usage: /path/to/php -f ' . basename(__FILE__) . ' -- [OPTION]... |
@@ -2344,10 +2482,12 @@ discard block |
||
2344 | 2482 | } |
2345 | 2483 | } |
2346 | 2484 | |
2347 | - if (!php_version_check()) |
|
2348 | - print_error('Error: PHP ' . PHP_VERSION . ' does not match version requirements.', true); |
|
2349 | - if (!db_version_check()) |
|
2350 | - print_error('Error: ' . $databases[$db_type]['name'] . ' ' . $databases[$db_type]['version'] . ' does not match minimum requirements.', true); |
|
2485 | + if (!php_version_check()) { |
|
2486 | + print_error('Error: PHP ' . PHP_VERSION . ' does not match version requirements.', true); |
|
2487 | + } |
|
2488 | + if (!db_version_check()) { |
|
2489 | + print_error('Error: ' . $databases[$db_type]['name'] . ' ' . $databases[$db_type]['version'] . ' does not match minimum requirements.', true); |
|
2490 | + } |
|
2351 | 2491 | |
2352 | 2492 | // Do some checks to make sure they have proper privileges |
2353 | 2493 | db_extend('packages'); |
@@ -2362,39 +2502,45 @@ discard block |
||
2362 | 2502 | $drop = $smcFunc['db_drop_table']('{db_prefix}priv_check'); |
2363 | 2503 | |
2364 | 2504 | // Sorry... we need CREATE, ALTER and DROP |
2365 | - if (!$create || !$alter || !$drop) |
|
2366 | - print_error("The " . $databases[$db_type]['name'] . " user you have set in Settings.php does not have proper privileges.\n\nPlease ask your host to give this user the ALTER, CREATE, and DROP privileges.", true); |
|
2505 | + if (!$create || !$alter || !$drop) { |
|
2506 | + print_error("The " . $databases[$db_type]['name'] . " user you have set in Settings.php does not have proper privileges.\n\nPlease ask your host to give this user the ALTER, CREATE, and DROP privileges.", true); |
|
2507 | + } |
|
2367 | 2508 | |
2368 | 2509 | $check = @file_exists($modSettings['theme_dir'] . '/index.template.php') |
2369 | 2510 | && @file_exists($sourcedir . '/QueryString.php') |
2370 | 2511 | && @file_exists($sourcedir . '/ManageBoards.php'); |
2371 | - if (!$check && !isset($modSettings['smfVersion'])) |
|
2372 | - print_error('Error: Some files are missing or out-of-date.', true); |
|
2512 | + if (!$check && !isset($modSettings['smfVersion'])) { |
|
2513 | + print_error('Error: Some files are missing or out-of-date.', true); |
|
2514 | + } |
|
2373 | 2515 | |
2374 | 2516 | // Do a quick version spot check. |
2375 | 2517 | $temp = substr(@implode('', @file($boarddir . '/index.php')), 0, 4096); |
2376 | 2518 | preg_match('~\*\s@version\s+(.+)[\s]{2}~i', $temp, $match); |
2377 | - if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) |
|
2378 | - print_error('Error: Some files have not yet been updated properly.'); |
|
2519 | + if (empty($match[1]) || (trim($match[1]) != SMF_VERSION)) { |
|
2520 | + print_error('Error: Some files have not yet been updated properly.'); |
|
2521 | + } |
|
2379 | 2522 | |
2380 | 2523 | // Make sure Settings.php is writable. |
2381 | 2524 | quickFileWritable($boarddir . '/Settings.php'); |
2382 | - if (!is_writable($boarddir . '/Settings.php')) |
|
2383 | - print_error('Error: Unable to obtain write access to "Settings.php".', true); |
|
2525 | + if (!is_writable($boarddir . '/Settings.php')) { |
|
2526 | + print_error('Error: Unable to obtain write access to "Settings.php".', true); |
|
2527 | + } |
|
2384 | 2528 | |
2385 | 2529 | // Make sure Settings_bak.php is writable. |
2386 | 2530 | quickFileWritable($boarddir . '/Settings_bak.php'); |
2387 | - if (!is_writable($boarddir . '/Settings_bak.php')) |
|
2388 | - print_error('Error: Unable to obtain write access to "Settings_bak.php".'); |
|
2531 | + if (!is_writable($boarddir . '/Settings_bak.php')) { |
|
2532 | + print_error('Error: Unable to obtain write access to "Settings_bak.php".'); |
|
2533 | + } |
|
2389 | 2534 | |
2390 | 2535 | // Make sure db_last_error.php is writable. |
2391 | 2536 | quickFileWritable($boarddir . '/db_last_error.php'); |
2392 | - if (!is_writable($boarddir . '/db_last_error.php')) |
|
2393 | - print_error('Error: Unable to obtain write access to "db_last_error.php".'); |
|
2537 | + if (!is_writable($boarddir . '/db_last_error.php')) { |
|
2538 | + print_error('Error: Unable to obtain write access to "db_last_error.php".'); |
|
2539 | + } |
|
2394 | 2540 | |
2395 | - if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) |
|
2396 | - print_error('Error: Unable to obtain write access to "agreement.txt".'); |
|
2397 | - elseif (isset($modSettings['agreement'])) |
|
2541 | + if (isset($modSettings['agreement']) && (!is_writable($boarddir) || file_exists($boarddir . '/agreement.txt')) && !is_writable($boarddir . '/agreement.txt')) { |
|
2542 | + print_error('Error: Unable to obtain write access to "agreement.txt".'); |
|
2543 | + } elseif (isset($modSettings['agreement'])) |
|
2398 | 2544 | { |
2399 | 2545 | $fp = fopen($boarddir . '/agreement.txt', 'w'); |
2400 | 2546 | fwrite($fp, $modSettings['agreement']); |
@@ -2404,31 +2550,36 @@ discard block |
||
2404 | 2550 | // Make sure Themes is writable. |
2405 | 2551 | quickFileWritable($modSettings['theme_dir']); |
2406 | 2552 | |
2407 | - if (!is_writable($modSettings['theme_dir']) && !isset($modSettings['smfVersion'])) |
|
2408 | - print_error('Error: Unable to obtain write access to "Themes".'); |
|
2553 | + if (!is_writable($modSettings['theme_dir']) && !isset($modSettings['smfVersion'])) { |
|
2554 | + print_error('Error: Unable to obtain write access to "Themes".'); |
|
2555 | + } |
|
2409 | 2556 | |
2410 | 2557 | // Make sure cache directory exists and is writable! |
2411 | 2558 | $cachedir_temp = empty($cachedir) ? $boarddir . '/cache' : $cachedir; |
2412 | - if (!file_exists($cachedir_temp)) |
|
2413 | - @mkdir($cachedir_temp); |
|
2559 | + if (!file_exists($cachedir_temp)) { |
|
2560 | + @mkdir($cachedir_temp); |
|
2561 | + } |
|
2414 | 2562 | |
2415 | 2563 | // Make sure the cache temp dir is writable. |
2416 | 2564 | quickFileWritable($cachedir_temp); |
2417 | 2565 | |
2418 | - if (!is_writable($cachedir_temp)) |
|
2419 | - print_error('Error: Unable to obtain write access to "cache".', true); |
|
2566 | + if (!is_writable($cachedir_temp)) { |
|
2567 | + print_error('Error: Unable to obtain write access to "cache".', true); |
|
2568 | + } |
|
2420 | 2569 | |
2421 | - if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) |
|
2422 | - print_error('Error: Unable to find language files!', true); |
|
2423 | - else |
|
2570 | + if (!file_exists($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php') && !isset($modSettings['smfVersion']) && !isset($_GET['lang'])) { |
|
2571 | + print_error('Error: Unable to find language files!', true); |
|
2572 | + } else |
|
2424 | 2573 | { |
2425 | 2574 | $temp = substr(@implode('', @file($modSettings['theme_dir'] . '/languages/index.' . $upcontext['language'] . '.php')), 0, 4096); |
2426 | 2575 | preg_match('~(?://|/\*)\s*Version:\s+(.+?);\s*index(?:[\s]{2}|\*/)~i', $temp, $match); |
2427 | 2576 | |
2428 | - if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) |
|
2429 | - print_error('Error: Language files out of date.', true); |
|
2430 | - if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) |
|
2431 | - print_error('Error: Install language is missing for selected language.', true); |
|
2577 | + if (empty($match[1]) || $match[1] != SMF_LANG_VERSION) { |
|
2578 | + print_error('Error: Language files out of date.', true); |
|
2579 | + } |
|
2580 | + if (!file_exists($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php')) { |
|
2581 | + print_error('Error: Install language is missing for selected language.', true); |
|
2582 | + } |
|
2432 | 2583 | |
2433 | 2584 | // Otherwise include it! |
2434 | 2585 | require_once($modSettings['theme_dir'] . '/languages/Install.' . $upcontext['language'] . '.php'); |
@@ -2447,8 +2598,9 @@ discard block |
||
2447 | 2598 | global $upcontext, $db_character_set, $sourcedir, $smcFunc, $modSettings, $language, $db_prefix, $db_type, $command_line, $support_js; |
2448 | 2599 | |
2449 | 2600 | // Done it already? |
2450 | - if (!empty($_POST['utf8_done'])) |
|
2451 | - return true; |
|
2601 | + if (!empty($_POST['utf8_done'])) { |
|
2602 | + return true; |
|
2603 | + } |
|
2452 | 2604 | |
2453 | 2605 | // First make sure they aren't already on UTF-8 before we go anywhere... |
2454 | 2606 | if ($db_type == 'postgresql' || ($db_character_set === 'utf8' && !empty($modSettings['global_character_set']) && $modSettings['global_character_set'] === 'UTF-8')) |
@@ -2461,8 +2613,7 @@ discard block |
||
2461 | 2613 | ); |
2462 | 2614 | |
2463 | 2615 | return true; |
2464 | - } |
|
2465 | - else |
|
2616 | + } else |
|
2466 | 2617 | { |
2467 | 2618 | $upcontext['page_title'] = 'Converting to UTF8'; |
2468 | 2619 | $upcontext['sub_template'] = isset($_GET['xml']) ? 'convert_xml' : 'convert_utf8'; |
@@ -2506,8 +2657,9 @@ discard block |
||
2506 | 2657 | ) |
2507 | 2658 | ); |
2508 | 2659 | $db_charsets = array(); |
2509 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2510 | - $db_charsets[] = $row['Charset']; |
|
2660 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2661 | + $db_charsets[] = $row['Charset']; |
|
2662 | + } |
|
2511 | 2663 | |
2512 | 2664 | $smcFunc['db_free_result']($request); |
2513 | 2665 | |
@@ -2543,13 +2695,15 @@ discard block |
||
2543 | 2695 | // If there's a fulltext index, we need to drop it first... |
2544 | 2696 | if ($request !== false || $smcFunc['db_num_rows']($request) != 0) |
2545 | 2697 | { |
2546 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
2547 | - if ($row['Column_name'] == 'body' && (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT' || isset($row['Comment']) && $row['Comment'] == 'FULLTEXT')) |
|
2698 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
2699 | + if ($row['Column_name'] == 'body' && (isset($row['Index_type']) && $row['Index_type'] == 'FULLTEXT' || isset($row['Comment']) && $row['Comment'] == 'FULLTEXT')) |
|
2548 | 2700 | $upcontext['fulltext_index'][] = $row['Key_name']; |
2701 | + } |
|
2549 | 2702 | $smcFunc['db_free_result']($request); |
2550 | 2703 | |
2551 | - if (isset($upcontext['fulltext_index'])) |
|
2552 | - $upcontext['fulltext_index'] = array_unique($upcontext['fulltext_index']); |
|
2704 | + if (isset($upcontext['fulltext_index'])) { |
|
2705 | + $upcontext['fulltext_index'] = array_unique($upcontext['fulltext_index']); |
|
2706 | + } |
|
2553 | 2707 | } |
2554 | 2708 | |
2555 | 2709 | // Drop it and make a note... |
@@ -2739,8 +2893,9 @@ discard block |
||
2739 | 2893 | $replace = '%field%'; |
2740 | 2894 | |
2741 | 2895 | // Build a huge REPLACE statement... |
2742 | - foreach ($translation_tables[$upcontext['charset_detected']] as $from => $to) |
|
2743 | - $replace = 'REPLACE(' . $replace . ', ' . $from . ', ' . $to . ')'; |
|
2896 | + foreach ($translation_tables[$upcontext['charset_detected']] as $from => $to) { |
|
2897 | + $replace = 'REPLACE(' . $replace . ', ' . $from . ', ' . $to . ')'; |
|
2898 | + } |
|
2744 | 2899 | } |
2745 | 2900 | |
2746 | 2901 | // Get a list of table names ahead of time... This makes it easier to set our substep and such |
@@ -2750,9 +2905,10 @@ discard block |
||
2750 | 2905 | $upcontext['table_count'] = count($queryTables); |
2751 | 2906 | |
2752 | 2907 | // What ones have we already done? |
2753 | - foreach ($queryTables as $id => $table) |
|
2754 | - if ($id < $_GET['substep']) |
|
2908 | + foreach ($queryTables as $id => $table) { |
|
2909 | + if ($id < $_GET['substep']) |
|
2755 | 2910 | $upcontext['previous_tables'][] = $table; |
2911 | + } |
|
2756 | 2912 | |
2757 | 2913 | $upcontext['cur_table_num'] = $_GET['substep']; |
2758 | 2914 | $upcontext['cur_table_name'] = str_replace($db_prefix, '', $queryTables[$_GET['substep']]); |
@@ -2789,8 +2945,9 @@ discard block |
||
2789 | 2945 | nextSubstep($substep); |
2790 | 2946 | |
2791 | 2947 | // Just to make sure it doesn't time out. |
2792 | - if (function_exists('apache_reset_timeout')) |
|
2793 | - @apache_reset_timeout(); |
|
2948 | + if (function_exists('apache_reset_timeout')) { |
|
2949 | + @apache_reset_timeout(); |
|
2950 | + } |
|
2794 | 2951 | |
2795 | 2952 | $table_charsets = array(); |
2796 | 2953 | |
@@ -2813,8 +2970,9 @@ discard block |
||
2813 | 2970 | |
2814 | 2971 | // Build structure of columns to operate on organized by charset; only operate on columns not yet utf8 |
2815 | 2972 | if ($charset != 'utf8') { |
2816 | - if (!isset($table_charsets[$charset])) |
|
2817 | - $table_charsets[$charset] = array(); |
|
2973 | + if (!isset($table_charsets[$charset])) { |
|
2974 | + $table_charsets[$charset] = array(); |
|
2975 | + } |
|
2818 | 2976 | |
2819 | 2977 | $table_charsets[$charset][] = $column_info; |
2820 | 2978 | } |
@@ -2855,10 +3013,11 @@ discard block |
||
2855 | 3013 | if (isset($translation_tables[$upcontext['charset_detected']])) |
2856 | 3014 | { |
2857 | 3015 | $update = ''; |
2858 | - foreach ($table_charsets as $charset => $columns) |
|
2859 | - foreach ($columns as $column) |
|
3016 | + foreach ($table_charsets as $charset => $columns) { |
|
3017 | + foreach ($columns as $column) |
|
2860 | 3018 | $update .= ' |
2861 | 3019 | ' . $column['Field'] . ' = ' . strtr($replace, array('%field%' => $column['Field'])) . ','; |
3020 | + } |
|
2862 | 3021 | |
2863 | 3022 | $smcFunc['db_query']('', ' |
2864 | 3023 | UPDATE {raw:table_name} |
@@ -2883,8 +3042,9 @@ discard block |
||
2883 | 3042 | // Now do the actual conversion (if still needed). |
2884 | 3043 | if ($charsets[$upcontext['charset_detected']] !== 'utf8') |
2885 | 3044 | { |
2886 | - if ($command_line) |
|
2887 | - echo 'Converting table ' . $table_info['Name'] . ' to UTF-8...'; |
|
3045 | + if ($command_line) { |
|
3046 | + echo 'Converting table ' . $table_info['Name'] . ' to UTF-8...'; |
|
3047 | + } |
|
2888 | 3048 | |
2889 | 3049 | $smcFunc['db_query']('', ' |
2890 | 3050 | ALTER TABLE {raw:table_name} |
@@ -2894,12 +3054,14 @@ discard block |
||
2894 | 3054 | ) |
2895 | 3055 | ); |
2896 | 3056 | |
2897 | - if ($command_line) |
|
2898 | - echo " done.\n"; |
|
3057 | + if ($command_line) { |
|
3058 | + echo " done.\n"; |
|
3059 | + } |
|
2899 | 3060 | } |
2900 | 3061 | // If this is XML to keep it nice for the user do one table at a time anyway! |
2901 | - if (isset($_GET['xml']) && $upcontext['cur_table_num'] < $upcontext['table_count']) |
|
2902 | - return upgradeExit(); |
|
3062 | + if (isset($_GET['xml']) && $upcontext['cur_table_num'] < $upcontext['table_count']) { |
|
3063 | + return upgradeExit(); |
|
3064 | + } |
|
2903 | 3065 | } |
2904 | 3066 | |
2905 | 3067 | $prev_charset = empty($translation_tables[$upcontext['charset_detected']]) ? $charsets[$upcontext['charset_detected']] : $translation_tables[$upcontext['charset_detected']]; |
@@ -2928,8 +3090,8 @@ discard block |
||
2928 | 3090 | ); |
2929 | 3091 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
2930 | 3092 | { |
2931 | - if (@safe_unserialize($row['extra']) === false && preg_match('~^(a:3:{s:5:"topic";i:\d+;s:7:"subject";s:)(\d+):"(.+)"(;s:6:"member";s:5:"\d+";})$~', $row['extra'], $matches) === 1) |
|
2932 | - $smcFunc['db_query']('', ' |
|
3093 | + if (@safe_unserialize($row['extra']) === false && preg_match('~^(a:3:{s:5:"topic";i:\d+;s:7:"subject";s:)(\d+):"(.+)"(;s:6:"member";s:5:"\d+";})$~', $row['extra'], $matches) === 1) { |
|
3094 | + $smcFunc['db_query']('', ' |
|
2933 | 3095 | UPDATE {db_prefix}log_actions |
2934 | 3096 | SET extra = {string:extra} |
2935 | 3097 | WHERE id_action = {int:current_action}', |
@@ -2938,6 +3100,7 @@ discard block |
||
2938 | 3100 | 'extra' => $matches[1] . strlen($matches[3]) . ':"' . $matches[3] . '"' . $matches[4], |
2939 | 3101 | ) |
2940 | 3102 | ); |
3103 | + } |
|
2941 | 3104 | } |
2942 | 3105 | $smcFunc['db_free_result']($request); |
2943 | 3106 | |
@@ -2959,15 +3122,17 @@ discard block |
||
2959 | 3122 | // First thing's first - did we already do this? |
2960 | 3123 | if (!empty($modSettings['json_done'])) |
2961 | 3124 | { |
2962 | - if ($command_line) |
|
2963 | - return DeleteUpgrade(); |
|
2964 | - else |
|
2965 | - return true; |
|
3125 | + if ($command_line) { |
|
3126 | + return DeleteUpgrade(); |
|
3127 | + } else { |
|
3128 | + return true; |
|
3129 | + } |
|
2966 | 3130 | } |
2967 | 3131 | |
2968 | 3132 | // Done it already - js wise? |
2969 | - if (!empty($_POST['json_done'])) |
|
2970 | - return true; |
|
3133 | + if (!empty($_POST['json_done'])) { |
|
3134 | + return true; |
|
3135 | + } |
|
2971 | 3136 | |
2972 | 3137 | // List of tables affected by this function |
2973 | 3138 | // name => array('key', col1[,col2|true[,col3]]) |
@@ -2999,12 +3164,14 @@ discard block |
||
2999 | 3164 | $upcontext['cur_table_name'] = isset($keys[$_GET['substep']]) ? $keys[$_GET['substep']] : $keys[0]; |
3000 | 3165 | $upcontext['step_progress'] = (int) (($upcontext['cur_table_num'] / $upcontext['table_count']) * 100); |
3001 | 3166 | |
3002 | - foreach ($keys as $id => $table) |
|
3003 | - if ($id < $_GET['substep']) |
|
3167 | + foreach ($keys as $id => $table) { |
|
3168 | + if ($id < $_GET['substep']) |
|
3004 | 3169 | $upcontext['previous_tables'][] = $table; |
3170 | + } |
|
3005 | 3171 | |
3006 | - if ($command_line) |
|
3007 | - echo 'Converting data from serialize() to json_encode().'; |
|
3172 | + if ($command_line) { |
|
3173 | + echo 'Converting data from serialize() to json_encode().'; |
|
3174 | + } |
|
3008 | 3175 | |
3009 | 3176 | if (!$support_js || isset($_GET['xml'])) |
3010 | 3177 | { |
@@ -3044,8 +3211,9 @@ discard block |
||
3044 | 3211 | |
3045 | 3212 | // Loop through and fix these... |
3046 | 3213 | $new_settings = array(); |
3047 | - if ($command_line) |
|
3048 | - echo "\n" . 'Fixing some settings...'; |
|
3214 | + if ($command_line) { |
|
3215 | + echo "\n" . 'Fixing some settings...'; |
|
3216 | + } |
|
3049 | 3217 | |
3050 | 3218 | foreach ($serialized_settings as $var) |
3051 | 3219 | { |
@@ -3053,22 +3221,24 @@ discard block |
||
3053 | 3221 | { |
3054 | 3222 | // Attempt to unserialize the setting |
3055 | 3223 | $temp = @safe_unserialize($modSettings[$var]); |
3056 | - if (!$temp && $command_line) |
|
3057 | - echo "\n - Failed to unserialize the '" . $var . "' setting. Skipping."; |
|
3058 | - elseif ($temp !== false) |
|
3059 | - $new_settings[$var] = json_encode($temp); |
|
3224 | + if (!$temp && $command_line) { |
|
3225 | + echo "\n - Failed to unserialize the '" . $var . "' setting. Skipping."; |
|
3226 | + } elseif ($temp !== false) { |
|
3227 | + $new_settings[$var] = json_encode($temp); |
|
3228 | + } |
|
3060 | 3229 | } |
3061 | 3230 | } |
3062 | 3231 | |
3063 | 3232 | // Update everything at once |
3064 | - if (!function_exists('cache_put_data')) |
|
3065 | - require_once($sourcedir . '/Load.php'); |
|
3233 | + if (!function_exists('cache_put_data')) { |
|
3234 | + require_once($sourcedir . '/Load.php'); |
|
3235 | + } |
|
3066 | 3236 | updateSettings($new_settings, true); |
3067 | 3237 | |
3068 | - if ($command_line) |
|
3069 | - echo ' done.'; |
|
3070 | - } |
|
3071 | - elseif ($table == 'themes') |
|
3238 | + if ($command_line) { |
|
3239 | + echo ' done.'; |
|
3240 | + } |
|
3241 | + } elseif ($table == 'themes') |
|
3072 | 3242 | { |
3073 | 3243 | // Finally, fix the admin prefs. Unfortunately this is stored per theme, but hopefully they only have one theme installed at this point... |
3074 | 3244 | $query = $smcFunc['db_query']('', ' |
@@ -3087,10 +3257,11 @@ discard block |
||
3087 | 3257 | |
3088 | 3258 | if ($command_line) |
3089 | 3259 | { |
3090 | - if ($temp === false) |
|
3091 | - echo "\n" . 'Unserialize of admin_preferences for user ' . $row['id_member'] . ' failed. Skipping.'; |
|
3092 | - else |
|
3093 | - echo "\n" . 'Fixing admin preferences...'; |
|
3260 | + if ($temp === false) { |
|
3261 | + echo "\n" . 'Unserialize of admin_preferences for user ' . $row['id_member'] . ' failed. Skipping.'; |
|
3262 | + } else { |
|
3263 | + echo "\n" . 'Fixing admin preferences...'; |
|
3264 | + } |
|
3094 | 3265 | } |
3095 | 3266 | |
3096 | 3267 | if ($temp !== false) |
@@ -3112,15 +3283,15 @@ discard block |
||
3112 | 3283 | ) |
3113 | 3284 | ); |
3114 | 3285 | |
3115 | - if ($command_line) |
|
3116 | - echo ' done.'; |
|
3286 | + if ($command_line) { |
|
3287 | + echo ' done.'; |
|
3288 | + } |
|
3117 | 3289 | } |
3118 | 3290 | } |
3119 | 3291 | |
3120 | 3292 | $smcFunc['db_free_result']($query); |
3121 | 3293 | } |
3122 | - } |
|
3123 | - else |
|
3294 | + } else |
|
3124 | 3295 | { |
3125 | 3296 | // First item is always the key... |
3126 | 3297 | $key = $info[0]; |
@@ -3131,8 +3302,7 @@ discard block |
||
3131 | 3302 | { |
3132 | 3303 | $col_select = $info[1]; |
3133 | 3304 | $where = ' WHERE ' . $info[1] . ' != {empty}'; |
3134 | - } |
|
3135 | - else |
|
3305 | + } else |
|
3136 | 3306 | { |
3137 | 3307 | $col_select = implode(', ', $info); |
3138 | 3308 | } |
@@ -3165,8 +3335,7 @@ discard block |
||
3165 | 3335 | if ($temp === false && $command_line) |
3166 | 3336 | { |
3167 | 3337 | echo "\nFailed to unserialize " . $row[$col] . "... Skipping\n"; |
3168 | - } |
|
3169 | - else |
|
3338 | + } else |
|
3170 | 3339 | { |
3171 | 3340 | $row[$col] = json_encode($temp); |
3172 | 3341 | |
@@ -3191,16 +3360,18 @@ discard block |
||
3191 | 3360 | } |
3192 | 3361 | } |
3193 | 3362 | |
3194 | - if ($command_line) |
|
3195 | - echo ' done.'; |
|
3363 | + if ($command_line) { |
|
3364 | + echo ' done.'; |
|
3365 | + } |
|
3196 | 3366 | |
3197 | 3367 | // Free up some memory... |
3198 | 3368 | $smcFunc['db_free_result']($query); |
3199 | 3369 | } |
3200 | 3370 | } |
3201 | 3371 | // If this is XML to keep it nice for the user do one table at a time anyway! |
3202 | - if (isset($_GET['xml'])) |
|
3203 | - return upgradeExit(); |
|
3372 | + if (isset($_GET['xml'])) { |
|
3373 | + return upgradeExit(); |
|
3374 | + } |
|
3204 | 3375 | } |
3205 | 3376 | |
3206 | 3377 | if ($command_line) |
@@ -3215,8 +3386,9 @@ discard block |
||
3215 | 3386 | |
3216 | 3387 | $_GET['substep'] = 0; |
3217 | 3388 | // Make sure we move on! |
3218 | - if ($command_line) |
|
3219 | - return DeleteUpgrade(); |
|
3389 | + if ($command_line) { |
|
3390 | + return DeleteUpgrade(); |
|
3391 | + } |
|
3220 | 3392 | |
3221 | 3393 | return true; |
3222 | 3394 | } |
@@ -3236,14 +3408,16 @@ discard block |
||
3236 | 3408 | global $upcontext, $txt, $settings; |
3237 | 3409 | |
3238 | 3410 | // Don't call me twice! |
3239 | - if (!empty($upcontext['chmod_called'])) |
|
3240 | - return; |
|
3411 | + if (!empty($upcontext['chmod_called'])) { |
|
3412 | + return; |
|
3413 | + } |
|
3241 | 3414 | |
3242 | 3415 | $upcontext['chmod_called'] = true; |
3243 | 3416 | |
3244 | 3417 | // Nothing? |
3245 | - if (empty($upcontext['chmod']['files']) && empty($upcontext['chmod']['ftp_error'])) |
|
3246 | - return; |
|
3418 | + if (empty($upcontext['chmod']['files']) && empty($upcontext['chmod']['ftp_error'])) { |
|
3419 | + return; |
|
3420 | + } |
|
3247 | 3421 | |
3248 | 3422 | // Was it a problem with Windows? |
3249 | 3423 | if (!empty($upcontext['chmod']['ftp_error']) && $upcontext['chmod']['ftp_error'] == 'total_mess') |
@@ -3275,11 +3449,12 @@ discard block |
||
3275 | 3449 | content.write(\'<div class="windowbg description">\n\t\t\t<h4>The following files needs to be made writable to continue:</h4>\n\t\t\t\'); |
3276 | 3450 | content.write(\'<p>', implode('<br>\n\t\t\t', $upcontext['chmod']['files']), '</p>\n\t\t\t\');'; |
3277 | 3451 | |
3278 | - if (isset($upcontext['systemos']) && $upcontext['systemos'] == 'linux') |
|
3279 | - echo ' |
|
3452 | + if (isset($upcontext['systemos']) && $upcontext['systemos'] == 'linux') { |
|
3453 | + echo ' |
|
3280 | 3454 | content.write(\'<hr>\n\t\t\t\'); |
3281 | 3455 | content.write(\'<p>If you have a shell account, the convenient below command can automatically correct permissions on these files</p>\n\t\t\t\'); |
3282 | 3456 | content.write(\'<tt># chmod a+w ', implode(' ', $upcontext['chmod']['files']), '</tt>\n\t\t\t\');'; |
3457 | + } |
|
3283 | 3458 | |
3284 | 3459 | echo ' |
3285 | 3460 | content.write(\'<a href="javascript:self.close();">close</a>\n\t\t</div>\n\t</body>\n</html>\'); |
@@ -3287,17 +3462,19 @@ discard block |
||
3287 | 3462 | } |
3288 | 3463 | </script>'; |
3289 | 3464 | |
3290 | - if (!empty($upcontext['chmod']['ftp_error'])) |
|
3291 | - echo ' |
|
3465 | + if (!empty($upcontext['chmod']['ftp_error'])) { |
|
3466 | + echo ' |
|
3292 | 3467 | <div class="error_message red"> |
3293 | 3468 | The following error was encountered when trying to connect:<br><br> |
3294 | 3469 | <code>', $upcontext['chmod']['ftp_error'], '</code> |
3295 | 3470 | </div> |
3296 | 3471 | <br>'; |
3472 | + } |
|
3297 | 3473 | |
3298 | - if (empty($upcontext['chmod_in_form'])) |
|
3299 | - echo ' |
|
3474 | + if (empty($upcontext['chmod_in_form'])) { |
|
3475 | + echo ' |
|
3300 | 3476 | <form action="', $upcontext['form_url'], '" method="post">'; |
3477 | + } |
|
3301 | 3478 | |
3302 | 3479 | echo ' |
3303 | 3480 | <table width="520" border="0" align="center" style="margin-bottom: 1ex;"> |
@@ -3332,10 +3509,11 @@ discard block |
||
3332 | 3509 | <div class="righttext" style="margin: 1ex;"><input type="submit" value="', $txt['ftp_connect'], '" class="button"></div> |
3333 | 3510 | </div>'; |
3334 | 3511 | |
3335 | - if (empty($upcontext['chmod_in_form'])) |
|
3336 | - echo ' |
|
3512 | + if (empty($upcontext['chmod_in_form'])) { |
|
3513 | + echo ' |
|
3337 | 3514 | </form>'; |
3338 | -} |
|
3515 | + } |
|
3516 | + } |
|
3339 | 3517 | |
3340 | 3518 | function template_upgrade_above() |
3341 | 3519 | { |
@@ -3395,9 +3573,10 @@ discard block |
||
3395 | 3573 | <h2>', $txt['upgrade_progress'], '</h2> |
3396 | 3574 | <ul>'; |
3397 | 3575 | |
3398 | - foreach ($upcontext['steps'] as $num => $step) |
|
3399 | - echo ' |
|
3576 | + foreach ($upcontext['steps'] as $num => $step) { |
|
3577 | + echo ' |
|
3400 | 3578 | <li class="', $num < $upcontext['current_step'] ? 'stepdone' : ($num == $upcontext['current_step'] ? 'stepcurrent' : 'stepwaiting'), '">', $txt['upgrade_step'], ' ', $step[0], ': ', $step[1], '</li>'; |
3579 | + } |
|
3401 | 3580 | |
3402 | 3581 | echo ' |
3403 | 3582 | </ul> |
@@ -3410,8 +3589,8 @@ discard block |
||
3410 | 3589 | </div> |
3411 | 3590 | </div>'; |
3412 | 3591 | |
3413 | - if (isset($upcontext['step_progress'])) |
|
3414 | - echo ' |
|
3592 | + if (isset($upcontext['step_progress'])) { |
|
3593 | + echo ' |
|
3415 | 3594 | <br> |
3416 | 3595 | <br> |
3417 | 3596 | <div id="progress_bar_step"> |
@@ -3420,6 +3599,7 @@ discard block |
||
3420 | 3599 | <span>', $txt['upgrade_step_progress'], '</span> |
3421 | 3600 | </div> |
3422 | 3601 | </div>'; |
3602 | + } |
|
3423 | 3603 | |
3424 | 3604 | echo ' |
3425 | 3605 | <div id="substep_bar_div" class="smalltext" style="float: left;width: 50%;margin-top: 0.6em;display: ', isset($upcontext['substep_progress']) ? '' : 'none', ';">', isset($upcontext['substep_progress_name']) ? trim(strtr($upcontext['substep_progress_name'], array('.' => ''))) : '', ':</div> |
@@ -3450,32 +3630,36 @@ discard block |
||
3450 | 3630 | { |
3451 | 3631 | global $upcontext, $txt; |
3452 | 3632 | |
3453 | - if (!empty($upcontext['pause'])) |
|
3454 | - echo ' |
|
3633 | + if (!empty($upcontext['pause'])) { |
|
3634 | + echo ' |
|
3455 | 3635 | <em>', $txt['upgrade_incomplete'], '.</em><br> |
3456 | 3636 | |
3457 | 3637 | <h2 style="margin-top: 2ex;">', $txt['upgrade_not_quite_done'], '</h2> |
3458 | 3638 | <h3> |
3459 | 3639 | ', $txt['upgrade_paused_overload'], ' |
3460 | 3640 | </h3>'; |
3641 | + } |
|
3461 | 3642 | |
3462 | - if (!empty($upcontext['custom_warning'])) |
|
3463 | - echo ' |
|
3643 | + if (!empty($upcontext['custom_warning'])) { |
|
3644 | + echo ' |
|
3464 | 3645 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
3465 | 3646 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
3466 | 3647 | <strong style="text-decoration: underline;">', $txt['upgrade_note'], '</strong><br> |
3467 | 3648 | <div style="padding-left: 6ex;">', $upcontext['custom_warning'], '</div> |
3468 | 3649 | </div>'; |
3650 | + } |
|
3469 | 3651 | |
3470 | 3652 | echo ' |
3471 | 3653 | <div class="righttext" style="margin: 1ex;">'; |
3472 | 3654 | |
3473 | - if (!empty($upcontext['continue'])) |
|
3474 | - echo ' |
|
3655 | + if (!empty($upcontext['continue'])) { |
|
3656 | + echo ' |
|
3475 | 3657 | <input type="submit" id="contbutt" name="contbutt" value="', $txt['upgrade_continue'], '"', $upcontext['continue'] == 2 ? ' disabled' : '', ' class="button">'; |
3476 | - if (!empty($upcontext['skip'])) |
|
3477 | - echo ' |
|
3658 | + } |
|
3659 | + if (!empty($upcontext['skip'])) { |
|
3660 | + echo ' |
|
3478 | 3661 | <input type="submit" id="skip" name="skip" value="', $txt['upgrade_skip'], '" onclick="dontSubmit = true; document.getElementById(\'contbutt\').disabled = \'disabled\'; return true;" class="button">'; |
3662 | + } |
|
3479 | 3663 | |
3480 | 3664 | echo ' |
3481 | 3665 | </div> |
@@ -3525,11 +3709,12 @@ discard block |
||
3525 | 3709 | echo '<', '?xml version="1.0" encoding="UTF-8"?', '> |
3526 | 3710 | <smf>'; |
3527 | 3711 | |
3528 | - if (!empty($upcontext['get_data'])) |
|
3529 | - foreach ($upcontext['get_data'] as $k => $v) |
|
3712 | + if (!empty($upcontext['get_data'])) { |
|
3713 | + foreach ($upcontext['get_data'] as $k => $v) |
|
3530 | 3714 | echo ' |
3531 | 3715 | <get key="', $k, '">', $v, '</get>'; |
3532 | -} |
|
3716 | + } |
|
3717 | + } |
|
3533 | 3718 | |
3534 | 3719 | function template_xml_below() |
3535 | 3720 | { |
@@ -3570,8 +3755,8 @@ discard block |
||
3570 | 3755 | template_chmod(); |
3571 | 3756 | |
3572 | 3757 | // For large, pre 1.1 RC2 forums give them a warning about the possible impact of this upgrade! |
3573 | - if ($upcontext['is_large_forum']) |
|
3574 | - echo ' |
|
3758 | + if ($upcontext['is_large_forum']) { |
|
3759 | + echo ' |
|
3575 | 3760 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
3576 | 3761 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
3577 | 3762 | <strong style="text-decoration: underline;">', $txt['upgrade_warning'], '</strong><br> |
@@ -3579,10 +3764,11 @@ discard block |
||
3579 | 3764 | ', $txt['upgrade_warning_lots_data'], ' |
3580 | 3765 | </div> |
3581 | 3766 | </div>'; |
3767 | + } |
|
3582 | 3768 | |
3583 | 3769 | // A warning message? |
3584 | - if (!empty($upcontext['warning'])) |
|
3585 | - echo ' |
|
3770 | + if (!empty($upcontext['warning'])) { |
|
3771 | + echo ' |
|
3586 | 3772 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
3587 | 3773 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
3588 | 3774 | <strong style="text-decoration: underline;">', $txt['upgrade_warning'], '</strong><br> |
@@ -3590,6 +3776,7 @@ discard block |
||
3590 | 3776 | ', $upcontext['warning'], ' |
3591 | 3777 | </div> |
3592 | 3778 | </div>'; |
3779 | + } |
|
3593 | 3780 | |
3594 | 3781 | // Paths are incorrect? |
3595 | 3782 | echo ' |
@@ -3605,20 +3792,22 @@ discard block |
||
3605 | 3792 | if (!empty($upcontext['user']['id']) && (time() - $upcontext['started'] < 72600 || time() - $upcontext['updated'] < 3600)) |
3606 | 3793 | { |
3607 | 3794 | $ago = time() - $upcontext['started']; |
3608 | - if ($ago < 60) |
|
3609 | - $ago = $ago . ' seconds'; |
|
3610 | - elseif ($ago < 3600) |
|
3611 | - $ago = (int) ($ago / 60) . ' minutes'; |
|
3612 | - else |
|
3613 | - $ago = (int) ($ago / 3600) . ' hours'; |
|
3795 | + if ($ago < 60) { |
|
3796 | + $ago = $ago . ' seconds'; |
|
3797 | + } elseif ($ago < 3600) { |
|
3798 | + $ago = (int) ($ago / 60) . ' minutes'; |
|
3799 | + } else { |
|
3800 | + $ago = (int) ($ago / 3600) . ' hours'; |
|
3801 | + } |
|
3614 | 3802 | |
3615 | 3803 | $active = time() - $upcontext['updated']; |
3616 | - if ($active < 60) |
|
3617 | - $updated = $active . ' seconds'; |
|
3618 | - elseif ($active < 3600) |
|
3619 | - $updated = (int) ($active / 60) . ' minutes'; |
|
3620 | - else |
|
3621 | - $updated = (int) ($active / 3600) . ' hours'; |
|
3804 | + if ($active < 60) { |
|
3805 | + $updated = $active . ' seconds'; |
|
3806 | + } elseif ($active < 3600) { |
|
3807 | + $updated = (int) ($active / 60) . ' minutes'; |
|
3808 | + } else { |
|
3809 | + $updated = (int) ($active / 3600) . ' hours'; |
|
3810 | + } |
|
3622 | 3811 | |
3623 | 3812 | echo ' |
3624 | 3813 | <div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
@@ -3627,16 +3816,18 @@ discard block |
||
3627 | 3816 | <div style="padding-left: 6ex;"> |
3628 | 3817 | "', $upcontext['user']['name'], '" has been running the upgrade script for the last ', $ago, ' - and was last active ', $updated, ' ago.'; |
3629 | 3818 | |
3630 | - if ($active < 600) |
|
3631 | - echo ' |
|
3819 | + if ($active < 600) { |
|
3820 | + echo ' |
|
3632 | 3821 | We recommend that you do not run this script unless you are sure that ', $upcontext['user']['name'], ' has completed their upgrade.'; |
3822 | + } |
|
3633 | 3823 | |
3634 | - if ($active > $upcontext['inactive_timeout']) |
|
3635 | - echo ' |
|
3824 | + if ($active > $upcontext['inactive_timeout']) { |
|
3825 | + echo ' |
|
3636 | 3826 | <br><br>You can choose to either run the upgrade again from the beginning - or alternatively continue from the last step reached during the last upgrade.'; |
3637 | - else |
|
3638 | - echo ' |
|
3827 | + } else { |
|
3828 | + echo ' |
|
3639 | 3829 | <br><br>This upgrade script cannot be run until ', $upcontext['user']['name'], ' has been inactive for at least ', ($upcontext['inactive_timeout'] > 120 ? round($upcontext['inactive_timeout'] / 60, 1) . ' minutes!' : $upcontext['inactive_timeout'] . ' seconds!'); |
3830 | + } |
|
3640 | 3831 | |
3641 | 3832 | echo ' |
3642 | 3833 | </div> |
@@ -3652,9 +3843,10 @@ discard block |
||
3652 | 3843 | <td> |
3653 | 3844 | <input type="text" name="user" value="', !empty($upcontext['username']) ? $upcontext['username'] : '', '"', $disable_security ? ' disabled' : '', '>'; |
3654 | 3845 | |
3655 | - if (!empty($upcontext['username_incorrect'])) |
|
3656 | - echo ' |
|
3846 | + if (!empty($upcontext['username_incorrect'])) { |
|
3847 | + echo ' |
|
3657 | 3848 | <div class="smalltext" style="color: red;">Username Incorrect</div>'; |
3849 | + } |
|
3658 | 3850 | |
3659 | 3851 | echo ' |
3660 | 3852 | </td> |
@@ -3665,9 +3857,10 @@ discard block |
||
3665 | 3857 | <input type="password" name="passwrd" value=""', $disable_security ? ' disabled' : '', '> |
3666 | 3858 | <input type="hidden" name="hash_passwrd" value="">'; |
3667 | 3859 | |
3668 | - if (!empty($upcontext['password_failed'])) |
|
3669 | - echo ' |
|
3860 | + if (!empty($upcontext['password_failed'])) { |
|
3861 | + echo ' |
|
3670 | 3862 | <div class="smalltext" style="color: red;">Password Incorrect</div>'; |
3863 | + } |
|
3671 | 3864 | |
3672 | 3865 | echo ' |
3673 | 3866 | </td> |
@@ -3738,8 +3931,8 @@ discard block |
||
3738 | 3931 | <form action="', $upcontext['form_url'], '" method="post" name="upform" id="upform">'; |
3739 | 3932 | |
3740 | 3933 | // Warning message? |
3741 | - if (!empty($upcontext['upgrade_options_warning'])) |
|
3742 | - echo ' |
|
3934 | + if (!empty($upcontext['upgrade_options_warning'])) { |
|
3935 | + echo ' |
|
3743 | 3936 | <div style="margin: 1ex; padding: 1ex; border: 1px dashed #cc3344; color: black; background-color: #ffe4e9;"> |
3744 | 3937 | <div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div> |
3745 | 3938 | <strong style="text-decoration: underline;">Warning!</strong><br> |
@@ -3747,6 +3940,7 @@ discard block |
||
3747 | 3940 | ', $upcontext['upgrade_options_warning'], ' |
3748 | 3941 | </div> |
3749 | 3942 | </div>'; |
3943 | + } |
|
3750 | 3944 | |
3751 | 3945 | echo ' |
3752 | 3946 | <table> |
@@ -3789,8 +3983,8 @@ discard block |
||
3789 | 3983 | </td> |
3790 | 3984 | </tr>'; |
3791 | 3985 | |
3792 | - if (!empty($upcontext['karma_installed']['good']) || !empty($upcontext['karma_installed']['bad'])) |
|
3793 | - echo ' |
|
3986 | + if (!empty($upcontext['karma_installed']['good']) || !empty($upcontext['karma_installed']['bad'])) { |
|
3987 | + echo ' |
|
3794 | 3988 | <tr valign="top"> |
3795 | 3989 | <td width="2%"> |
3796 | 3990 | <input type="checkbox" name="delete_karma" id="delete_karma" value="1"> |
@@ -3799,6 +3993,7 @@ discard block |
||
3799 | 3993 | <label for="delete_karma">Delete all karma settings and info from the DB</label> |
3800 | 3994 | </td> |
3801 | 3995 | </tr>'; |
3996 | + } |
|
3802 | 3997 | |
3803 | 3998 | echo ' |
3804 | 3999 | <tr valign="top"> |
@@ -3836,10 +4031,11 @@ discard block |
||
3836 | 4031 | </div>'; |
3837 | 4032 | |
3838 | 4033 | // Dont any tables so far? |
3839 | - if (!empty($upcontext['previous_tables'])) |
|
3840 | - foreach ($upcontext['previous_tables'] as $table) |
|
4034 | + if (!empty($upcontext['previous_tables'])) { |
|
4035 | + foreach ($upcontext['previous_tables'] as $table) |
|
3841 | 4036 | echo ' |
3842 | 4037 | <br>Completed Table: "', $table, '".'; |
4038 | + } |
|
3843 | 4039 | |
3844 | 4040 | echo ' |
3845 | 4041 | <h3 id="current_tab_div">Current Table: "<span id="current_table">', $upcontext['cur_table_name'], '</span>"</h3> |
@@ -3876,12 +4072,13 @@ discard block |
||
3876 | 4072 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
3877 | 4073 | |
3878 | 4074 | // If debug flood the screen. |
3879 | - if ($is_debug) |
|
3880 | - echo ' |
|
4075 | + if ($is_debug) { |
|
4076 | + echo ' |
|
3881 | 4077 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>Completed Table: "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
3882 | 4078 | |
3883 | 4079 | if (document.getElementById(\'debug_section\').scrollHeight) |
3884 | 4080 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
4081 | + } |
|
3885 | 4082 | |
3886 | 4083 | echo ' |
3887 | 4084 | // Get the next update... |
@@ -3914,8 +4111,9 @@ discard block |
||
3914 | 4111 | { |
3915 | 4112 | global $upcontext, $support_js, $is_debug, $timeLimitThreshold; |
3916 | 4113 | |
3917 | - if (empty($is_debug) && !empty($upcontext['upgrade_status']['debug'])) |
|
3918 | - $is_debug = true; |
|
4114 | + if (empty($is_debug) && !empty($upcontext['upgrade_status']['debug'])) { |
|
4115 | + $is_debug = true; |
|
4116 | + } |
|
3919 | 4117 | |
3920 | 4118 | echo ' |
3921 | 4119 | <h3>Executing database changes</h3> |
@@ -3930,8 +4128,9 @@ discard block |
||
3930 | 4128 | { |
3931 | 4129 | foreach ($upcontext['actioned_items'] as $num => $item) |
3932 | 4130 | { |
3933 | - if ($num != 0) |
|
3934 | - echo ' Successful!'; |
|
4131 | + if ($num != 0) { |
|
4132 | + echo ' Successful!'; |
|
4133 | + } |
|
3935 | 4134 | echo '<br>' . $item; |
3936 | 4135 | } |
3937 | 4136 | if (!empty($upcontext['changes_complete'])) |
@@ -3944,28 +4143,32 @@ discard block |
||
3944 | 4143 | $seconds = intval($active % 60); |
3945 | 4144 | |
3946 | 4145 | $totalTime = ''; |
3947 | - if ($hours > 0) |
|
3948 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
3949 | - if ($minutes > 0) |
|
3950 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
3951 | - if ($seconds > 0) |
|
3952 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
4146 | + if ($hours > 0) { |
|
4147 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
4148 | + } |
|
4149 | + if ($minutes > 0) { |
|
4150 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
4151 | + } |
|
4152 | + if ($seconds > 0) { |
|
4153 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
4154 | + } |
|
3953 | 4155 | } |
3954 | 4156 | |
3955 | - if ($is_debug && !empty($totalTime)) |
|
3956 | - echo ' Successful! Completed in ', $totalTime, '<br><br>'; |
|
3957 | - else |
|
3958 | - echo ' Successful!<br><br>'; |
|
4157 | + if ($is_debug && !empty($totalTime)) { |
|
4158 | + echo ' Successful! Completed in ', $totalTime, '<br><br>'; |
|
4159 | + } else { |
|
4160 | + echo ' Successful!<br><br>'; |
|
4161 | + } |
|
3959 | 4162 | |
3960 | 4163 | echo '<span id="commess" style="font-weight: bold;">1 Database Updates Complete! Click Continue to Proceed.</span><br>'; |
3961 | 4164 | } |
3962 | - } |
|
3963 | - else |
|
4165 | + } else |
|
3964 | 4166 | { |
3965 | 4167 | // Tell them how many files we have in total. |
3966 | - if ($upcontext['file_count'] > 1) |
|
3967 | - echo ' |
|
4168 | + if ($upcontext['file_count'] > 1) { |
|
4169 | + echo ' |
|
3968 | 4170 | <strong id="info1">Executing upgrade script <span id="file_done">', $upcontext['cur_file_num'], '</span> of ', $upcontext['file_count'], '.</strong>'; |
4171 | + } |
|
3969 | 4172 | |
3970 | 4173 | echo ' |
3971 | 4174 | <h3 id="info2"><strong>Executing:</strong> "<span id="cur_item_name">', $upcontext['current_item_name'], '</span>" (<span id="item_num">', $upcontext['current_item_num'], '</span> of <span id="total_items"><span id="item_count">', $upcontext['total_items'], '</span>', $upcontext['file_count'] > 1 ? ' - of this script' : '', ')</span></h3> |
@@ -3981,19 +4184,23 @@ discard block |
||
3981 | 4184 | $seconds = intval($active % 60); |
3982 | 4185 | |
3983 | 4186 | $totalTime = ''; |
3984 | - if ($hours > 0) |
|
3985 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
3986 | - if ($minutes > 0) |
|
3987 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
3988 | - if ($seconds > 0) |
|
3989 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
4187 | + if ($hours > 0) { |
|
4188 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
4189 | + } |
|
4190 | + if ($minutes > 0) { |
|
4191 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
4192 | + } |
|
4193 | + if ($seconds > 0) { |
|
4194 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
4195 | + } |
|
3990 | 4196 | } |
3991 | 4197 | |
3992 | 4198 | echo ' |
3993 | 4199 | <br><span id="upgradeCompleted">'; |
3994 | 4200 | |
3995 | - if (!empty($totalTime)) |
|
3996 | - echo 'Completed in ', $totalTime, '<br>'; |
|
4201 | + if (!empty($totalTime)) { |
|
4202 | + echo 'Completed in ', $totalTime, '<br>'; |
|
4203 | + } |
|
3997 | 4204 | |
3998 | 4205 | echo '</span> |
3999 | 4206 | <div id="debug_section" style="height: 59px; overflow: auto;"> |
@@ -4030,9 +4237,10 @@ discard block |
||
4030 | 4237 | var getData = ""; |
4031 | 4238 | var debugItems = ', $upcontext['debug_items'], ';'; |
4032 | 4239 | |
4033 | - if ($is_debug) |
|
4034 | - echo ' |
|
4240 | + if ($is_debug) { |
|
4241 | + echo ' |
|
4035 | 4242 | var upgradeStartTime = ' . $upcontext['started'] . ';'; |
4243 | + } |
|
4036 | 4244 | |
4037 | 4245 | echo ' |
4038 | 4246 | function getNextItem() |
@@ -4072,9 +4280,10 @@ discard block |
||
4072 | 4280 | document.getElementById("error_block").style.display = ""; |
4073 | 4281 | setInnerHTML(document.getElementById("error_message"), "Error retrieving information on step: " + (sDebugName == "" ? sLastString : sDebugName));'; |
4074 | 4282 | |
4075 | - if ($is_debug) |
|
4076 | - echo ' |
|
4283 | + if ($is_debug) { |
|
4284 | + echo ' |
|
4077 | 4285 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<span style="color: red;">failed<\' + \'/span><span id="debuginfo"><\' + \'/span>\');'; |
4286 | + } |
|
4078 | 4287 | |
4079 | 4288 | echo ' |
4080 | 4289 | } |
@@ -4095,9 +4304,10 @@ discard block |
||
4095 | 4304 | document.getElementById("error_block").style.display = ""; |
4096 | 4305 | setInnerHTML(document.getElementById("error_message"), "Upgrade script appears to be going into a loop - step: " + sDebugName);'; |
4097 | 4306 | |
4098 | - if ($is_debug) |
|
4099 | - echo ' |
|
4307 | + if ($is_debug) { |
|
4308 | + echo ' |
|
4100 | 4309 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<span style="color: red;">failed<\' + \'/span><span id="debuginfo"><\' + \'/span>\');'; |
4310 | + } |
|
4101 | 4311 | |
4102 | 4312 | echo ' |
4103 | 4313 | } |
@@ -4156,8 +4366,8 @@ discard block |
||
4156 | 4366 | if (bIsComplete && iDebugNum == -1 && curFile >= ', $upcontext['file_count'], ') |
4157 | 4367 | {'; |
4158 | 4368 | |
4159 | - if ($is_debug) |
|
4160 | - echo ' |
|
4369 | + if ($is_debug) { |
|
4370 | + echo ' |
|
4161 | 4371 | document.getElementById(\'debug_section\').style.display = "none"; |
4162 | 4372 | |
4163 | 4373 | var upgradeFinishedTime = parseInt(oXMLDoc.getElementsByTagName("curtime")[0].childNodes[0].nodeValue); |
@@ -4175,6 +4385,7 @@ discard block |
||
4175 | 4385 | totalTime = totalTime + diffSeconds + " second" + (diffSeconds > 1 ? "s" : ""); |
4176 | 4386 | |
4177 | 4387 | setInnerHTML(document.getElementById("upgradeCompleted"), "Completed in " + totalTime);'; |
4388 | + } |
|
4178 | 4389 | |
4179 | 4390 | echo ' |
4180 | 4391 | |
@@ -4182,9 +4393,10 @@ discard block |
||
4182 | 4393 | document.getElementById(\'contbutt\').disabled = 0; |
4183 | 4394 | document.getElementById(\'database_done\').value = 1;'; |
4184 | 4395 | |
4185 | - if ($upcontext['file_count'] > 1) |
|
4186 | - echo ' |
|
4396 | + if ($upcontext['file_count'] > 1) { |
|
4397 | + echo ' |
|
4187 | 4398 | document.getElementById(\'info1\').style.display = "none";'; |
4399 | + } |
|
4188 | 4400 | |
4189 | 4401 | echo ' |
4190 | 4402 | document.getElementById(\'info2\').style.display = "none"; |
@@ -4197,9 +4409,10 @@ discard block |
||
4197 | 4409 | lastItem = 0; |
4198 | 4410 | prevFile = curFile;'; |
4199 | 4411 | |
4200 | - if ($is_debug) |
|
4201 | - echo ' |
|
4412 | + if ($is_debug) { |
|
4413 | + echo ' |
|
4202 | 4414 | setOuterHTML(document.getElementById(\'debuginfo\'), \'Moving to next script file...done<br><span id="debuginfo"><\' + \'/span>\');'; |
4415 | + } |
|
4203 | 4416 | |
4204 | 4417 | echo ' |
4205 | 4418 | getNextItem(); |
@@ -4207,8 +4420,8 @@ discard block |
||
4207 | 4420 | }'; |
4208 | 4421 | |
4209 | 4422 | // If debug scroll the screen. |
4210 | - if ($is_debug) |
|
4211 | - echo ' |
|
4423 | + if ($is_debug) { |
|
4424 | + echo ' |
|
4212 | 4425 | if (iLastSubStepProgress == -1) |
4213 | 4426 | { |
4214 | 4427 | // Give it consistent dots. |
@@ -4227,6 +4440,7 @@ discard block |
||
4227 | 4440 | |
4228 | 4441 | if (document.getElementById(\'debug_section\').scrollHeight) |
4229 | 4442 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
4443 | + } |
|
4230 | 4444 | |
4231 | 4445 | echo ' |
4232 | 4446 | // Update the page. |
@@ -4287,9 +4501,10 @@ discard block |
||
4287 | 4501 | }'; |
4288 | 4502 | |
4289 | 4503 | // Start things off assuming we've not errored. |
4290 | - if (empty($upcontext['error_message'])) |
|
4291 | - echo ' |
|
4504 | + if (empty($upcontext['error_message'])) { |
|
4505 | + echo ' |
|
4292 | 4506 | getNextItem();'; |
4507 | + } |
|
4293 | 4508 | |
4294 | 4509 | echo ' |
4295 | 4510 | //# sourceURL=dynamicScript-dbch.js |
@@ -4307,18 +4522,21 @@ discard block |
||
4307 | 4522 | <item num="', $upcontext['current_item_num'], '">', $upcontext['current_item_name'], '</item> |
4308 | 4523 | <debug num="', $upcontext['current_debug_item_num'], '" percent="', isset($upcontext['substep_progress']) ? $upcontext['substep_progress'] : '-1', '" complete="', empty($upcontext['completed_step']) ? 0 : 1, '">', $upcontext['current_debug_item_name'], '</debug>'; |
4309 | 4524 | |
4310 | - if (!empty($upcontext['error_message'])) |
|
4311 | - echo ' |
|
4525 | + if (!empty($upcontext['error_message'])) { |
|
4526 | + echo ' |
|
4312 | 4527 | <error>', $upcontext['error_message'], '</error>'; |
4528 | + } |
|
4313 | 4529 | |
4314 | - if (!empty($upcontext['error_string'])) |
|
4315 | - echo ' |
|
4530 | + if (!empty($upcontext['error_string'])) { |
|
4531 | + echo ' |
|
4316 | 4532 | <sql>', $upcontext['error_string'], '</sql>'; |
4533 | + } |
|
4317 | 4534 | |
4318 | - if ($is_debug) |
|
4319 | - echo ' |
|
4535 | + if ($is_debug) { |
|
4536 | + echo ' |
|
4320 | 4537 | <curtime>', time(), '</curtime>'; |
4321 | -} |
|
4538 | + } |
|
4539 | + } |
|
4322 | 4540 | |
4323 | 4541 | // Template for the UTF-8 conversion step. Basically a copy of the backup stuff with slight modifications.... |
4324 | 4542 | function template_convert_utf8() |
@@ -4337,18 +4555,20 @@ discard block |
||
4337 | 4555 | </div>'; |
4338 | 4556 | |
4339 | 4557 | // Done any tables so far? |
4340 | - if (!empty($upcontext['previous_tables'])) |
|
4341 | - foreach ($upcontext['previous_tables'] as $table) |
|
4558 | + if (!empty($upcontext['previous_tables'])) { |
|
4559 | + foreach ($upcontext['previous_tables'] as $table) |
|
4342 | 4560 | echo ' |
4343 | 4561 | <br>Completed Table: "', $table, '".'; |
4562 | + } |
|
4344 | 4563 | |
4345 | 4564 | echo ' |
4346 | 4565 | <h3 id="current_tab_div">Current Table: "<span id="current_table">', $upcontext['cur_table_name'], '</span>"</h3>'; |
4347 | 4566 | |
4348 | 4567 | // If we dropped their index, let's let them know |
4349 | - if ($upcontext['dropping_index']) |
|
4350 | - echo ' |
|
4568 | + if ($upcontext['dropping_index']) { |
|
4569 | + echo ' |
|
4351 | 4570 | <br><span id="indexmsg" style="font-weight: bold; font-style: italic; display: ', $upcontext['cur_table_num'] == $upcontext['table_count'] ? 'inline' : 'none', ';">Please note that your fulltext index was dropped to facilitate the conversion and will need to be recreated in the admin area after the upgrade is complete.</span>'; |
4571 | + } |
|
4352 | 4572 | |
4353 | 4573 | // Completion notification |
4354 | 4574 | echo ' |
@@ -4385,12 +4605,13 @@ discard block |
||
4385 | 4605 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
4386 | 4606 | |
4387 | 4607 | // If debug flood the screen. |
4388 | - if ($is_debug) |
|
4389 | - echo ' |
|
4608 | + if ($is_debug) { |
|
4609 | + echo ' |
|
4390 | 4610 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>Completed Table: "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
4391 | 4611 | |
4392 | 4612 | if (document.getElementById(\'debug_section\').scrollHeight) |
4393 | 4613 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
4614 | + } |
|
4394 | 4615 | |
4395 | 4616 | echo ' |
4396 | 4617 | // Get the next update... |
@@ -4438,19 +4659,21 @@ discard block |
||
4438 | 4659 | </div>'; |
4439 | 4660 | |
4440 | 4661 | // Dont any tables so far? |
4441 | - if (!empty($upcontext['previous_tables'])) |
|
4442 | - foreach ($upcontext['previous_tables'] as $table) |
|
4662 | + if (!empty($upcontext['previous_tables'])) { |
|
4663 | + foreach ($upcontext['previous_tables'] as $table) |
|
4443 | 4664 | echo ' |
4444 | 4665 | <br>Completed Table: "', $table, '".'; |
4666 | + } |
|
4445 | 4667 | |
4446 | 4668 | echo ' |
4447 | 4669 | <h3 id="current_tab_div">Current Table: "<span id="current_table">', $upcontext['cur_table_name'], '</span>"</h3> |
4448 | 4670 | <br><span id="commess" style="font-weight: bold; display: ', $upcontext['cur_table_num'] == $upcontext['table_count'] ? 'inline' : 'none', ';">Convert to JSON Complete! Click Continue to Proceed.</span>'; |
4449 | 4671 | |
4450 | 4672 | // Try to make sure substep was reset. |
4451 | - if ($upcontext['cur_table_num'] == $upcontext['table_count']) |
|
4452 | - echo ' |
|
4673 | + if ($upcontext['cur_table_num'] == $upcontext['table_count']) { |
|
4674 | + echo ' |
|
4453 | 4675 | <input type="hidden" name="substep" id="substep" value="0">'; |
4676 | + } |
|
4454 | 4677 | |
4455 | 4678 | // Continue please! |
4456 | 4679 | $upcontext['continue'] = $support_js ? 2 : 1; |
@@ -4483,12 +4706,13 @@ discard block |
||
4483 | 4706 | updateStepProgress(iTableNum, ', $upcontext['table_count'], ', ', $upcontext['step_weight'] * ((100 - $upcontext['step_progress']) / 100), ');'; |
4484 | 4707 | |
4485 | 4708 | // If debug flood the screen. |
4486 | - if ($is_debug) |
|
4487 | - echo ' |
|
4709 | + if ($is_debug) { |
|
4710 | + echo ' |
|
4488 | 4711 | setOuterHTML(document.getElementById(\'debuginfo\'), \'<br>Completed Table: "\' + sCompletedTableName + \'".<span id="debuginfo"><\' + \'/span>\'); |
4489 | 4712 | |
4490 | 4713 | if (document.getElementById(\'debug_section\').scrollHeight) |
4491 | 4714 | document.getElementById(\'debug_section\').scrollTop = document.getElementById(\'debug_section\').scrollHeight'; |
4715 | + } |
|
4492 | 4716 | |
4493 | 4717 | echo ' |
4494 | 4718 | // Get the next update... |
@@ -4524,8 +4748,8 @@ discard block |
||
4524 | 4748 | <h3>That wasn\'t so hard, was it? Now you are ready to use <a href="', $boardurl, '/index.php">your installation of SMF</a>. Hope you like it!</h3> |
4525 | 4749 | <form action="', $boardurl, '/index.php">'; |
4526 | 4750 | |
4527 | - if (!empty($upcontext['can_delete_script'])) |
|
4528 | - echo ' |
|
4751 | + if (!empty($upcontext['can_delete_script'])) { |
|
4752 | + echo ' |
|
4529 | 4753 | <label for="delete_self"><input type="checkbox" id="delete_self" onclick="doTheDelete(this);"> Delete upgrade.php and its data files now</label> <em>(doesn\'t work on all servers).</em> |
4530 | 4754 | <script> |
4531 | 4755 | function doTheDelete(theCheck) |
@@ -4537,6 +4761,7 @@ discard block |
||
4537 | 4761 | } |
4538 | 4762 | </script> |
4539 | 4763 | <img src="', $settings['default_theme_url'], '/images/blank.png" alt="" id="delete_upgrader"><br>'; |
4764 | + } |
|
4540 | 4765 | |
4541 | 4766 | $active = time() - $upcontext['started']; |
4542 | 4767 | $hours = floor($active / 3600); |
@@ -4546,16 +4771,20 @@ discard block |
||
4546 | 4771 | if ($is_debug) |
4547 | 4772 | { |
4548 | 4773 | $totalTime = ''; |
4549 | - if ($hours > 0) |
|
4550 | - $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
4551 | - if ($minutes > 0) |
|
4552 | - $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
4553 | - if ($seconds > 0) |
|
4554 | - $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
4774 | + if ($hours > 0) { |
|
4775 | + $totalTime .= $hours . ' hour' . ($hours > 1 ? 's' : '') . ' '; |
|
4776 | + } |
|
4777 | + if ($minutes > 0) { |
|
4778 | + $totalTime .= $minutes . ' minute' . ($minutes > 1 ? 's' : '') . ' '; |
|
4779 | + } |
|
4780 | + if ($seconds > 0) { |
|
4781 | + $totalTime .= $seconds . ' second' . ($seconds > 1 ? 's' : '') . ' '; |
|
4782 | + } |
|
4555 | 4783 | } |
4556 | 4784 | |
4557 | - if ($is_debug && !empty($totalTime)) |
|
4558 | - echo '<br> Upgrade completed in ', $totalTime, '<br><br>'; |
|
4785 | + if ($is_debug && !empty($totalTime)) { |
|
4786 | + echo '<br> Upgrade completed in ', $totalTime, '<br><br>'; |
|
4787 | + } |
|
4559 | 4788 | |
4560 | 4789 | echo '<br> |
4561 | 4790 | If you had any problems with this upgrade, or have any problems using SMF, please don\'t hesitate to <a href="https://www.simplemachines.org/community/index.php">look to us for assistance</a>.<br> |
@@ -4582,8 +4811,9 @@ discard block |
||
4582 | 4811 | |
4583 | 4812 | $current_substep = $_GET['substep']; |
4584 | 4813 | |
4585 | - if (empty($_GET['a'])) |
|
4586 | - $_GET['a'] = 0; |
|
4814 | + if (empty($_GET['a'])) { |
|
4815 | + $_GET['a'] = 0; |
|
4816 | + } |
|
4587 | 4817 | $step_progress['name'] = 'Converting ips'; |
4588 | 4818 | $step_progress['current'] = $_GET['a']; |
4589 | 4819 | |
@@ -4626,16 +4856,19 @@ discard block |
||
4626 | 4856 | 'empty' => '', |
4627 | 4857 | 'limit' => $limit, |
4628 | 4858 | )); |
4629 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
4630 | - $arIp[] = $row[$oldCol]; |
|
4859 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
4860 | + $arIp[] = $row[$oldCol]; |
|
4861 | + } |
|
4631 | 4862 | $smcFunc['db_free_result']($request); |
4632 | 4863 | |
4633 | 4864 | // Special case, null ip could keep us in a loop. |
4634 | - if (is_null($arIp[0])) |
|
4635 | - unset($arIp[0]); |
|
4865 | + if (is_null($arIp[0])) { |
|
4866 | + unset($arIp[0]); |
|
4867 | + } |
|
4636 | 4868 | |
4637 | - if (empty($arIp)) |
|
4638 | - $is_done = true; |
|
4869 | + if (empty($arIp)) { |
|
4870 | + $is_done = true; |
|
4871 | + } |
|
4639 | 4872 | |
4640 | 4873 | $updates = array(); |
4641 | 4874 | $cases = array(); |
@@ -4644,16 +4877,18 @@ discard block |
||
4644 | 4877 | { |
4645 | 4878 | $arIp[$i] = trim($arIp[$i]); |
4646 | 4879 | |
4647 | - if (empty($arIp[$i])) |
|
4648 | - continue; |
|
4880 | + if (empty($arIp[$i])) { |
|
4881 | + continue; |
|
4882 | + } |
|
4649 | 4883 | |
4650 | 4884 | $updates['ip' . $i] = $arIp[$i]; |
4651 | 4885 | $cases[$arIp[$i]] = 'WHEN ' . $oldCol . ' = {string:ip' . $i . '} THEN {inet:ip' . $i . '}'; |
4652 | 4886 | |
4653 | 4887 | if ($setSize > 0 && $i % $setSize === 0) |
4654 | 4888 | { |
4655 | - if (count($updates) == 1) |
|
4656 | - continue; |
|
4889 | + if (count($updates) == 1) { |
|
4890 | + continue; |
|
4891 | + } |
|
4657 | 4892 | |
4658 | 4893 | $updates['whereSet'] = array_values($updates); |
4659 | 4894 | $smcFunc['db_query']('', ' |
@@ -4687,8 +4922,7 @@ discard block |
||
4687 | 4922 | 'ip' => $ip |
4688 | 4923 | )); |
4689 | 4924 | } |
4690 | - } |
|
4691 | - else |
|
4925 | + } else |
|
4692 | 4926 | { |
4693 | 4927 | $updates['whereSet'] = array_values($updates); |
4694 | 4928 | $smcFunc['db_query']('', ' |
@@ -4702,9 +4936,9 @@ discard block |
||
4702 | 4936 | $updates |
4703 | 4937 | ); |
4704 | 4938 | } |
4939 | + } else { |
|
4940 | + $is_done = true; |
|
4705 | 4941 | } |
4706 | - else |
|
4707 | - $is_done = true; |
|
4708 | 4942 | |
4709 | 4943 | $_GET['a'] += $limit; |
4710 | 4944 | $step_progress['current'] = $_GET['a']; |
@@ -4730,10 +4964,11 @@ discard block |
||
4730 | 4964 | |
4731 | 4965 | $columns = $smcFunc['db_list_columns']($targetTable, true); |
4732 | 4966 | |
4733 | - if (isset($columns[$column])) |
|
4734 | - return $columns[$column]; |
|
4735 | - else |
|
4736 | - return null; |
|
4737 | -} |
|
4967 | + if (isset($columns[$column])) { |
|
4968 | + return $columns[$column]; |
|
4969 | + } else { |
|
4970 | + return null; |
|
4971 | + } |
|
4972 | + } |
|
4738 | 4973 | |
4739 | 4974 | ?> |
4740 | 4975 | \ No newline at end of file |