@@ -15,8 +15,9 @@ discard block |
||
| 15 | 15 | * @version 2.1 Beta 4 |
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | -if (!defined('SMF')) |
|
| 18 | +if (!defined('SMF')) { |
|
| 19 | 19 | die('No direct access...'); |
| 20 | +} |
|
| 20 | 21 | |
| 21 | 22 | /** |
| 22 | 23 | * The main designating function for modifying profiles. Loads up info, determins what to do, etc. |
@@ -29,18 +30,21 @@ discard block |
||
| 29 | 30 | global $modSettings, $memberContext, $profile_vars, $post_errors, $smcFunc; |
| 30 | 31 | |
| 31 | 32 | // Don't reload this as we may have processed error strings. |
| 32 | - if (empty($post_errors)) |
|
| 33 | - loadLanguage('Profile+Drafts'); |
|
| 33 | + if (empty($post_errors)) { |
|
| 34 | + loadLanguage('Profile+Drafts'); |
|
| 35 | + } |
|
| 34 | 36 | loadTemplate('Profile'); |
| 35 | 37 | |
| 36 | 38 | require_once($sourcedir . '/Subs-Menu.php'); |
| 37 | 39 | |
| 38 | 40 | // Did we get the user by name... |
| 39 | - if (isset($_REQUEST['user'])) |
|
| 40 | - $memberResult = loadMemberData($_REQUEST['user'], true, 'profile'); |
|
| 41 | + if (isset($_REQUEST['user'])) { |
|
| 42 | + $memberResult = loadMemberData($_REQUEST['user'], true, 'profile'); |
|
| 43 | + } |
|
| 41 | 44 | // ... or by id_member? |
| 42 | - elseif (!empty($_REQUEST['u'])) |
|
| 43 | - $memberResult = loadMemberData((int) $_REQUEST['u'], false, 'profile'); |
|
| 45 | + elseif (!empty($_REQUEST['u'])) { |
|
| 46 | + $memberResult = loadMemberData((int) $_REQUEST['u'], false, 'profile'); |
|
| 47 | + } |
|
| 44 | 48 | // If it was just ?action=profile, edit your own profile, but only if you're not a guest. |
| 45 | 49 | else |
| 46 | 50 | { |
@@ -50,8 +54,9 @@ discard block |
||
| 50 | 54 | } |
| 51 | 55 | |
| 52 | 56 | // Check if loadMemberData() has returned a valid result. |
| 53 | - if (!$memberResult) |
|
| 54 | - fatal_lang_error('not_a_user', false, 404); |
|
| 57 | + if (!$memberResult) { |
|
| 58 | + fatal_lang_error('not_a_user', false, 404); |
|
| 59 | + } |
|
| 55 | 60 | |
| 56 | 61 | // If all went well, we have a valid member ID! |
| 57 | 62 | list ($memID) = $memberResult; |
@@ -67,8 +72,9 @@ discard block |
||
| 67 | 72 | |
| 68 | 73 | // Group management isn't actually a permission. But we need it to be for this, so we need a phantom permission. |
| 69 | 74 | // And we care about what the current user can do, not what the user whose profile it is. |
| 70 | - if ($user_info['mod_cache']['gq'] != '0=1') |
|
| 71 | - $user_info['permissions'][] = 'approve_group_requests'; |
|
| 75 | + if ($user_info['mod_cache']['gq'] != '0=1') { |
|
| 76 | + $user_info['permissions'][] = 'approve_group_requests'; |
|
| 77 | + } |
|
| 72 | 78 | |
| 73 | 79 | // If paid subscriptions are enabled, make sure we actually have at least one subscription available... |
| 74 | 80 | $context['subs_available'] = false; |
@@ -436,21 +442,25 @@ discard block |
||
| 436 | 442 | foreach ($section['areas'] as $area_id => $area) |
| 437 | 443 | { |
| 438 | 444 | // If it said no permissions that meant it wasn't valid! |
| 439 | - if (empty($area['permission'][$context['user']['is_owner'] ? 'own' : 'any'])) |
|
| 440 | - $profile_areas[$section_id]['areas'][$area_id]['enabled'] = false; |
|
| 445 | + if (empty($area['permission'][$context['user']['is_owner'] ? 'own' : 'any'])) { |
|
| 446 | + $profile_areas[$section_id]['areas'][$area_id]['enabled'] = false; |
|
| 447 | + } |
|
| 441 | 448 | // Otherwise pick the right set. |
| 442 | - else |
|
| 443 | - $profile_areas[$section_id]['areas'][$area_id]['permission'] = $area['permission'][$context['user']['is_owner'] ? 'own' : 'any']; |
|
| 449 | + else { |
|
| 450 | + $profile_areas[$section_id]['areas'][$area_id]['permission'] = $area['permission'][$context['user']['is_owner'] ? 'own' : 'any']; |
|
| 451 | + } |
|
| 444 | 452 | |
| 445 | 453 | // Password required in most cases |
| 446 | - if (!empty($area['password'])) |
|
| 447 | - $context['password_areas'][] = $area_id; |
|
| 454 | + if (!empty($area['password'])) { |
|
| 455 | + $context['password_areas'][] = $area_id; |
|
| 456 | + } |
|
| 448 | 457 | } |
| 449 | 458 | } |
| 450 | 459 | |
| 451 | 460 | // Is there an updated message to show? |
| 452 | - if (isset($_GET['updated'])) |
|
| 453 | - $context['profile_updated'] = $txt['profile_updated_own']; |
|
| 461 | + if (isset($_GET['updated'])) { |
|
| 462 | + $context['profile_updated'] = $txt['profile_updated_own']; |
|
| 463 | + } |
|
| 454 | 464 | |
| 455 | 465 | // Set a few options for the menu. |
| 456 | 466 | $menuOptions = array( |
@@ -465,8 +475,9 @@ discard block |
||
| 465 | 475 | $profile_include_data = createMenu($profile_areas, $menuOptions); |
| 466 | 476 | |
| 467 | 477 | // No menu means no access. |
| 468 | - if (!$profile_include_data && (!$user_info['is_guest'] || validateSession())) |
|
| 469 | - fatal_lang_error('no_access', false); |
|
| 478 | + if (!$profile_include_data && (!$user_info['is_guest'] || validateSession())) { |
|
| 479 | + fatal_lang_error('no_access', false); |
|
| 480 | + } |
|
| 470 | 481 | |
| 471 | 482 | // Make a note of the Unique ID for this menu. |
| 472 | 483 | $context['profile_menu_id'] = $context['max_menu_id']; |
@@ -492,8 +503,9 @@ discard block |
||
| 492 | 503 | if ($current_area == $area_id) |
| 493 | 504 | { |
| 494 | 505 | // This can't happen - but is a security check. |
| 495 | - if ((isset($section['enabled']) && $section['enabled'] == false) || (isset($area['enabled']) && $area['enabled'] == false)) |
|
| 496 | - fatal_lang_error('no_access', false); |
|
| 506 | + if ((isset($section['enabled']) && $section['enabled'] == false) || (isset($area['enabled']) && $area['enabled'] == false)) { |
|
| 507 | + fatal_lang_error('no_access', false); |
|
| 508 | + } |
|
| 497 | 509 | |
| 498 | 510 | // Are we saving data in a valid area? |
| 499 | 511 | if (isset($area['sc']) && (isset($_REQUEST['save']) || $context['do_preview'])) |
@@ -512,12 +524,14 @@ discard block |
||
| 512 | 524 | } |
| 513 | 525 | |
| 514 | 526 | // Does this require session validating? |
| 515 | - if (!empty($area['validate']) || (isset($_REQUEST['save']) && !$context['user']['is_owner'])) |
|
| 516 | - $security_checks['validate'] = true; |
|
| 527 | + if (!empty($area['validate']) || (isset($_REQUEST['save']) && !$context['user']['is_owner'])) { |
|
| 528 | + $security_checks['validate'] = true; |
|
| 529 | + } |
|
| 517 | 530 | |
| 518 | 531 | // Permissions for good measure. |
| 519 | - if (!empty($profile_include_data['permission'])) |
|
| 520 | - $security_checks['permission'] = $profile_include_data['permission']; |
|
| 532 | + if (!empty($profile_include_data['permission'])) { |
|
| 533 | + $security_checks['permission'] = $profile_include_data['permission']; |
|
| 534 | + } |
|
| 521 | 535 | |
| 522 | 536 | // Either way got something. |
| 523 | 537 | $found_area = true; |
@@ -526,21 +540,26 @@ discard block |
||
| 526 | 540 | } |
| 527 | 541 | |
| 528 | 542 | // Oh dear, some serious security lapse is going on here... we'll put a stop to that! |
| 529 | - if (!$found_area) |
|
| 530 | - fatal_lang_error('no_access', false); |
|
| 543 | + if (!$found_area) { |
|
| 544 | + fatal_lang_error('no_access', false); |
|
| 545 | + } |
|
| 531 | 546 | |
| 532 | 547 | // Release this now. |
| 533 | 548 | unset($profile_areas); |
| 534 | 549 | |
| 535 | 550 | // Now the context is setup have we got any security checks to carry out additional to that above? |
| 536 | - if (isset($security_checks['session'])) |
|
| 537 | - checkSession($security_checks['session']); |
|
| 538 | - if (isset($security_checks['validate'])) |
|
| 539 | - validateSession(); |
|
| 540 | - if (isset($security_checks['validateToken'])) |
|
| 541 | - validateToken($token_name, $token_type); |
|
| 542 | - if (isset($security_checks['permission'])) |
|
| 543 | - isAllowedTo($security_checks['permission']); |
|
| 551 | + if (isset($security_checks['session'])) { |
|
| 552 | + checkSession($security_checks['session']); |
|
| 553 | + } |
|
| 554 | + if (isset($security_checks['validate'])) { |
|
| 555 | + validateSession(); |
|
| 556 | + } |
|
| 557 | + if (isset($security_checks['validateToken'])) { |
|
| 558 | + validateToken($token_name, $token_type); |
|
| 559 | + } |
|
| 560 | + if (isset($security_checks['permission'])) { |
|
| 561 | + isAllowedTo($security_checks['permission']); |
|
| 562 | + } |
|
| 544 | 563 | |
| 545 | 564 | // Create a token if needed. |
| 546 | 565 | if (isset($security_checks['needsToken']) || isset($security_checks['validateToken'])) |
@@ -550,8 +569,9 @@ discard block |
||
| 550 | 569 | } |
| 551 | 570 | |
| 552 | 571 | // File to include? |
| 553 | - if (isset($profile_include_data['file'])) |
|
| 554 | - require_once($sourcedir . '/' . $profile_include_data['file']); |
|
| 572 | + if (isset($profile_include_data['file'])) { |
|
| 573 | + require_once($sourcedir . '/' . $profile_include_data['file']); |
|
| 574 | + } |
|
| 555 | 575 | |
| 556 | 576 | // Build the link tree. |
| 557 | 577 | $context['linktree'][] = array( |
@@ -559,17 +579,19 @@ discard block |
||
| 559 | 579 | 'name' => sprintf($txt['profile_of_username'], $context['member']['name']), |
| 560 | 580 | ); |
| 561 | 581 | |
| 562 | - if (!empty($profile_include_data['label'])) |
|
| 563 | - $context['linktree'][] = array( |
|
| 582 | + if (!empty($profile_include_data['label'])) { |
|
| 583 | + $context['linktree'][] = array( |
|
| 564 | 584 | 'url' => $scripturl . '?action=profile' . ($memID != $user_info['id'] ? ';u=' . $memID : '') . ';area=' . $profile_include_data['current_area'], |
| 565 | 585 | 'name' => $profile_include_data['label'], |
| 566 | 586 | ); |
| 587 | + } |
|
| 567 | 588 | |
| 568 | - if (!empty($profile_include_data['current_subsection']) && $profile_include_data['subsections'][$profile_include_data['current_subsection']][0] != $profile_include_data['label']) |
|
| 569 | - $context['linktree'][] = array( |
|
| 589 | + if (!empty($profile_include_data['current_subsection']) && $profile_include_data['subsections'][$profile_include_data['current_subsection']][0] != $profile_include_data['label']) { |
|
| 590 | + $context['linktree'][] = array( |
|
| 570 | 591 | 'url' => $scripturl . '?action=profile' . ($memID != $user_info['id'] ? ';u=' . $memID : '') . ';area=' . $profile_include_data['current_area'] . ';sa=' . $profile_include_data['current_subsection'], |
| 571 | 592 | 'name' => $profile_include_data['subsections'][$profile_include_data['current_subsection']][0], |
| 572 | 593 | ); |
| 594 | + } |
|
| 573 | 595 | |
| 574 | 596 | // Set the template for this area and add the profile layer. |
| 575 | 597 | $context['sub_template'] = $profile_include_data['function']; |
@@ -595,12 +617,14 @@ discard block |
||
| 595 | 617 | if ($check_password) |
| 596 | 618 | { |
| 597 | 619 | // Check to ensure we're forcing SSL for authentication |
| 598 | - if (!empty($modSettings['force_ssl']) && empty($maintenance) && !httpsOn()) |
|
| 599 | - fatal_lang_error('login_ssl_required'); |
|
| 620 | + if (!empty($modSettings['force_ssl']) && empty($maintenance) && !httpsOn()) { |
|
| 621 | + fatal_lang_error('login_ssl_required'); |
|
| 622 | + } |
|
| 600 | 623 | |
| 601 | 624 | // You didn't even enter a password! |
| 602 | - if (trim($_POST['oldpasswrd']) == '') |
|
| 603 | - $post_errors[] = 'no_password'; |
|
| 625 | + if (trim($_POST['oldpasswrd']) == '') { |
|
| 626 | + $post_errors[] = 'no_password'; |
|
| 627 | + } |
|
| 604 | 628 | |
| 605 | 629 | // Since the password got modified due to all the $_POST cleaning, lets undo it so we can get the correct password |
| 606 | 630 | $_POST['oldpasswrd'] = un_htmlspecialchars($_POST['oldpasswrd']); |
@@ -609,42 +633,43 @@ discard block |
||
| 609 | 633 | $good_password = in_array(true, call_integration_hook('integrate_verify_password', array($cur_profile['member_name'], $_POST['oldpasswrd'], false)), true); |
| 610 | 634 | |
| 611 | 635 | // Bad password!!! |
| 612 | - if (!$good_password && !hash_verify_password($user_profile[$memID]['member_name'], un_htmlspecialchars(stripslashes($_POST['oldpasswrd'])), $user_info['passwd'])) |
|
| 613 | - $post_errors[] = 'bad_password'; |
|
| 636 | + if (!$good_password && !hash_verify_password($user_profile[$memID]['member_name'], un_htmlspecialchars(stripslashes($_POST['oldpasswrd'])), $user_info['passwd'])) { |
|
| 637 | + $post_errors[] = 'bad_password'; |
|
| 638 | + } |
|
| 614 | 639 | |
| 615 | 640 | // Warn other elements not to jump the gun and do custom changes! |
| 616 | - if (in_array('bad_password', $post_errors)) |
|
| 617 | - $context['password_auth_failed'] = true; |
|
| 641 | + if (in_array('bad_password', $post_errors)) { |
|
| 642 | + $context['password_auth_failed'] = true; |
|
| 643 | + } |
|
| 618 | 644 | } |
| 619 | 645 | |
| 620 | 646 | // Change the IP address in the database. |
| 621 | - if ($context['user']['is_owner']) |
|
| 622 | - $profile_vars['member_ip'] = $user_info['ip']; |
|
| 647 | + if ($context['user']['is_owner']) { |
|
| 648 | + $profile_vars['member_ip'] = $user_info['ip']; |
|
| 649 | + } |
|
| 623 | 650 | |
| 624 | 651 | // Now call the sub-action function... |
| 625 | 652 | if ($current_area == 'activateaccount') |
| 626 | 653 | { |
| 627 | - if (empty($post_errors)) |
|
| 628 | - activateAccount($memID); |
|
| 629 | - } |
|
| 630 | - elseif ($current_area == 'deleteaccount') |
|
| 654 | + if (empty($post_errors)) { |
|
| 655 | + activateAccount($memID); |
|
| 656 | + } |
|
| 657 | + } elseif ($current_area == 'deleteaccount') |
|
| 631 | 658 | { |
| 632 | 659 | if (empty($post_errors)) |
| 633 | 660 | { |
| 634 | 661 | deleteAccount2($memID); |
| 635 | 662 | redirectexit(); |
| 636 | 663 | } |
| 637 | - } |
|
| 638 | - elseif ($current_area == 'groupmembership' && empty($post_errors)) |
|
| 664 | + } elseif ($current_area == 'groupmembership' && empty($post_errors)) |
|
| 639 | 665 | { |
| 640 | 666 | $msg = groupMembership2($profile_vars, $post_errors, $memID); |
| 641 | 667 | |
| 642 | 668 | // Whatever we've done, we have nothing else to do here... |
| 643 | 669 | redirectexit('action=profile' . ($context['user']['is_owner'] ? '' : ';u=' . $memID) . ';area=groupmembership' . (!empty($msg) ? ';msg=' . $msg : '')); |
| 644 | - } |
|
| 645 | - elseif (in_array($current_area, array('account', 'forumprofile', 'theme'))) |
|
| 646 | - saveProfileFields(); |
|
| 647 | - else |
|
| 670 | + } elseif (in_array($current_area, array('account', 'forumprofile', 'theme'))) { |
|
| 671 | + saveProfileFields(); |
|
| 672 | + } else |
|
| 648 | 673 | { |
| 649 | 674 | $force_redirect = true; |
| 650 | 675 | // Ensure we include this. |
@@ -660,34 +685,36 @@ discard block |
||
| 660 | 685 | // Load the language file so we can give a nice explanation of the errors. |
| 661 | 686 | loadLanguage('Errors'); |
| 662 | 687 | $context['post_errors'] = $post_errors; |
| 663 | - } |
|
| 664 | - elseif (!empty($profile_vars)) |
|
| 688 | + } elseif (!empty($profile_vars)) |
|
| 665 | 689 | { |
| 666 | 690 | // If we've changed the password, notify any integration that may be listening in. |
| 667 | - if (isset($profile_vars['passwd'])) |
|
| 668 | - call_integration_hook('integrate_reset_pass', array($cur_profile['member_name'], $cur_profile['member_name'], $_POST['passwrd2'])); |
|
| 691 | + if (isset($profile_vars['passwd'])) { |
|
| 692 | + call_integration_hook('integrate_reset_pass', array($cur_profile['member_name'], $cur_profile['member_name'], $_POST['passwrd2'])); |
|
| 693 | + } |
|
| 669 | 694 | |
| 670 | 695 | updateMemberData($memID, $profile_vars); |
| 671 | 696 | |
| 672 | 697 | // What if this is the newest member? |
| 673 | - if ($modSettings['latestMember'] == $memID) |
|
| 674 | - updateStats('member'); |
|
| 675 | - elseif (isset($profile_vars['real_name'])) |
|
| 676 | - updateSettings(array('memberlist_updated' => time())); |
|
| 698 | + if ($modSettings['latestMember'] == $memID) { |
|
| 699 | + updateStats('member'); |
|
| 700 | + } elseif (isset($profile_vars['real_name'])) { |
|
| 701 | + updateSettings(array('memberlist_updated' => time())); |
|
| 702 | + } |
|
| 677 | 703 | |
| 678 | 704 | // If the member changed his/her birthdate, update calendar statistics. |
| 679 | - if (isset($profile_vars['birthdate']) || isset($profile_vars['real_name'])) |
|
| 680 | - updateSettings(array( |
|
| 705 | + if (isset($profile_vars['birthdate']) || isset($profile_vars['real_name'])) { |
|
| 706 | + updateSettings(array( |
|
| 681 | 707 | 'calendar_updated' => time(), |
| 682 | 708 | )); |
| 709 | + } |
|
| 683 | 710 | |
| 684 | 711 | // Anything worth logging? |
| 685 | 712 | if (!empty($context['log_changes']) && !empty($modSettings['modlog_enabled'])) |
| 686 | 713 | { |
| 687 | 714 | $log_changes = array(); |
| 688 | 715 | require_once($sourcedir . '/Logging.php'); |
| 689 | - foreach ($context['log_changes'] as $k => $v) |
|
| 690 | - $log_changes[] = array( |
|
| 716 | + foreach ($context['log_changes'] as $k => $v) { |
|
| 717 | + $log_changes[] = array( |
|
| 691 | 718 | 'action' => $k, |
| 692 | 719 | 'log_type' => 'user', |
| 693 | 720 | 'extra' => array_merge($v, array( |
@@ -695,14 +722,16 @@ discard block |
||
| 695 | 722 | 'member_affected' => $memID, |
| 696 | 723 | )), |
| 697 | 724 | ); |
| 725 | + } |
|
| 698 | 726 | |
| 699 | 727 | logActions($log_changes); |
| 700 | 728 | } |
| 701 | 729 | |
| 702 | 730 | // Have we got any post save functions to execute? |
| 703 | - if (!empty($context['profile_execute_on_save'])) |
|
| 704 | - foreach ($context['profile_execute_on_save'] as $saveFunc) |
|
| 731 | + if (!empty($context['profile_execute_on_save'])) { |
|
| 732 | + foreach ($context['profile_execute_on_save'] as $saveFunc) |
|
| 705 | 733 | $saveFunc(); |
| 734 | + } |
|
| 706 | 735 | |
| 707 | 736 | // Let them know it worked! |
| 708 | 737 | $context['profile_updated'] = $context['user']['is_owner'] ? $txt['profile_updated_own'] : sprintf($txt['profile_updated_else'], $cur_profile['member_name']); |
@@ -716,27 +745,31 @@ discard block |
||
| 716 | 745 | if (!empty($post_errors)) |
| 717 | 746 | { |
| 718 | 747 | // Set all the errors so the template knows what went wrong. |
| 719 | - foreach ($post_errors as $error_type) |
|
| 720 | - $context['modify_error'][$error_type] = true; |
|
| 748 | + foreach ($post_errors as $error_type) { |
|
| 749 | + $context['modify_error'][$error_type] = true; |
|
| 750 | + } |
|
| 721 | 751 | } |
| 722 | 752 | // If it's you then we should redirect upon save. |
| 723 | - elseif (!empty($profile_vars) && $context['user']['is_owner'] && !$context['do_preview']) |
|
| 724 | - redirectexit('action=profile;area=' . $current_area . (!empty($current_sa) ? ';sa=' . $current_sa : '') . ';updated'); |
|
| 725 | - elseif (!empty($force_redirect)) |
|
| 726 | - redirectexit('action=profile' . ($context['user']['is_owner'] ? '' : ';u=' . $memID) . ';area=' . $current_area); |
|
| 753 | + elseif (!empty($profile_vars) && $context['user']['is_owner'] && !$context['do_preview']) { |
|
| 754 | + redirectexit('action=profile;area=' . $current_area . (!empty($current_sa) ? ';sa=' . $current_sa : '') . ';updated'); |
|
| 755 | + } elseif (!empty($force_redirect)) { |
|
| 756 | + redirectexit('action=profile' . ($context['user']['is_owner'] ? '' : ';u=' . $memID) . ';area=' . $current_area); |
|
| 757 | + } |
|
| 727 | 758 | |
| 728 | 759 | |
| 729 | 760 | // Get the right callable. |
| 730 | 761 | $call = call_helper($profile_include_data['function'], true); |
| 731 | 762 | |
| 732 | 763 | // Is it valid? |
| 733 | - if (!empty($call)) |
|
| 734 | - call_user_func($call, $memID); |
|
| 764 | + if (!empty($call)) { |
|
| 765 | + call_user_func($call, $memID); |
|
| 766 | + } |
|
| 735 | 767 | |
| 736 | 768 | // Set the page title if it's not already set... |
| 737 | - if (!isset($context['page_title'])) |
|
| 738 | - $context['page_title'] = $txt['profile'] . (isset($txt[$current_area]) ? ' - ' . $txt[$current_area] : ''); |
|
| 739 | -} |
|
| 769 | + if (!isset($context['page_title'])) { |
|
| 770 | + $context['page_title'] = $txt['profile'] . (isset($txt[$current_area]) ? ' - ' . $txt[$current_area] : ''); |
|
| 771 | + } |
|
| 772 | + } |
|
| 740 | 773 | |
| 741 | 774 | /** |
| 742 | 775 | * Set up the requirements for the profile popup - the area that is shown as the popup menu for the current user. |
@@ -859,16 +892,18 @@ discard block |
||
| 859 | 892 | if (!allowedTo('admin_forum') && $area != 'register') |
| 860 | 893 | { |
| 861 | 894 | // If it's the owner they can see two types of private fields, regardless. |
| 862 | - if ($memID == $user_info['id']) |
|
| 863 | - $where .= $area == 'summary' ? ' AND private < 3' : ' AND (private = 0 OR private = 2)'; |
|
| 864 | - else |
|
| 865 | - $where .= $area == 'summary' ? ' AND private < 2' : ' AND private = 0'; |
|
| 895 | + if ($memID == $user_info['id']) { |
|
| 896 | + $where .= $area == 'summary' ? ' AND private < 3' : ' AND (private = 0 OR private = 2)'; |
|
| 897 | + } else { |
|
| 898 | + $where .= $area == 'summary' ? ' AND private < 2' : ' AND private = 0'; |
|
| 899 | + } |
|
| 866 | 900 | } |
| 867 | 901 | |
| 868 | - if ($area == 'register') |
|
| 869 | - $where .= ' AND show_reg != 0'; |
|
| 870 | - elseif ($area != 'summary') |
|
| 871 | - $where .= ' AND show_profile = {string:area}'; |
|
| 902 | + if ($area == 'register') { |
|
| 903 | + $where .= ' AND show_reg != 0'; |
|
| 904 | + } elseif ($area != 'summary') { |
|
| 905 | + $where .= ' AND show_profile = {string:area}'; |
|
| 906 | + } |
|
| 872 | 907 | |
| 873 | 908 | // Load all the relevant fields - and data. |
| 874 | 909 | $request = $smcFunc['db_query']('', ' |
@@ -893,8 +928,9 @@ discard block |
||
| 893 | 928 | $fieldOptions = explode(',', $row['field_options']); |
| 894 | 929 | foreach ($fieldOptions as $k => $v) |
| 895 | 930 | { |
| 896 | - if (empty($currentKey)) |
|
| 897 | - $currentKey = $v === $value ? $k : 0; |
|
| 931 | + if (empty($currentKey)) { |
|
| 932 | + $currentKey = $v === $value ? $k : 0; |
|
| 933 | + } |
|
| 898 | 934 | } |
| 899 | 935 | } |
| 900 | 936 | |
@@ -906,13 +942,15 @@ discard block |
||
| 906 | 942 | if (isset($_POST['customfield']) && isset($_POST['customfield'][$row['col_name']])) |
| 907 | 943 | { |
| 908 | 944 | $value = $smcFunc['htmlspecialchars']($_POST['customfield'][$row['col_name']]); |
| 909 | - if (in_array($row['field_type'], array('select', 'radio'))) |
|
| 910 | - $value = ($options = explode(',', $row['field_options'])) && isset($options[$value]) ? $options[$value] : ''; |
|
| 945 | + if (in_array($row['field_type'], array('select', 'radio'))) { |
|
| 946 | + $value = ($options = explode(',', $row['field_options'])) && isset($options[$value]) ? $options[$value] : ''; |
|
| 947 | + } |
|
| 911 | 948 | } |
| 912 | 949 | |
| 913 | 950 | // Don't show the "disabled" option for the "gender" field if we are on the "summary" area. |
| 914 | - if ($area == 'summary' && $row['col_name'] == 'cust_gender' && $value == 'None') |
|
| 915 | - continue; |
|
| 951 | + if ($area == 'summary' && $row['col_name'] == 'cust_gender' && $value == 'None') { |
|
| 952 | + continue; |
|
| 953 | + } |
|
| 916 | 954 | |
| 917 | 955 | // HTML for the input form. |
| 918 | 956 | $output_html = $value; |
@@ -921,8 +959,7 @@ discard block |
||
| 921 | 959 | $true = (!$exists && $row['default_value']) || $value; |
| 922 | 960 | $input_html = '<input type="checkbox" name="customfield[' . $row['col_name'] . ']" id="customfield[' . $row['col_name'] . ']"' . ($true ? ' checked' : '') . '>'; |
| 923 | 961 | $output_html = $true ? $txt['yes'] : $txt['no']; |
| 924 | - } |
|
| 925 | - elseif ($row['field_type'] == 'select') |
|
| 962 | + } elseif ($row['field_type'] == 'select') |
|
| 926 | 963 | { |
| 927 | 964 | $input_html = '<select name="customfield[' . $row['col_name'] . ']" id="customfield[' . $row['col_name'] . ']"><option value="-1"></option>'; |
| 928 | 965 | $options = explode(',', $row['field_options']); |
@@ -930,13 +967,13 @@ discard block |
||
| 930 | 967 | { |
| 931 | 968 | $true = (!$exists && $row['default_value'] == $v) || $value == $v; |
| 932 | 969 | $input_html .= '<option value="' . $k . '"' . ($true ? ' selected' : '') . '>' . $v . '</option>'; |
| 933 | - if ($true) |
|
| 934 | - $output_html = $v; |
|
| 970 | + if ($true) { |
|
| 971 | + $output_html = $v; |
|
| 972 | + } |
|
| 935 | 973 | } |
| 936 | 974 | |
| 937 | 975 | $input_html .= '</select>'; |
| 938 | - } |
|
| 939 | - elseif ($row['field_type'] == 'radio') |
|
| 976 | + } elseif ($row['field_type'] == 'radio') |
|
| 940 | 977 | { |
| 941 | 978 | $input_html = '<fieldset>'; |
| 942 | 979 | $options = explode(',', $row['field_options']); |
@@ -944,37 +981,38 @@ discard block |
||
| 944 | 981 | { |
| 945 | 982 | $true = (!$exists && $row['default_value'] == $v) || $value == $v; |
| 946 | 983 | $input_html .= '<label for="customfield_' . $row['col_name'] . '_' . $k . '"><input type="radio" name="customfield[' . $row['col_name'] . ']" id="customfield_' . $row['col_name'] . '_' . $k . '" value="' . $k . '"' . ($true ? ' checked' : '') . '>' . $v . '</label><br>'; |
| 947 | - if ($true) |
|
| 948 | - $output_html = $v; |
|
| 984 | + if ($true) { |
|
| 985 | + $output_html = $v; |
|
| 986 | + } |
|
| 949 | 987 | } |
| 950 | 988 | $input_html .= '</fieldset>'; |
| 951 | - } |
|
| 952 | - elseif ($row['field_type'] == 'text') |
|
| 989 | + } elseif ($row['field_type'] == 'text') |
|
| 953 | 990 | { |
| 954 | 991 | $input_html = '<input type="text" name="customfield[' . $row['col_name'] . ']" id="customfield[' . $row['col_name'] . ']"' . ($row['field_length'] != 0 ? ' maxlength="' . $row['field_length'] . '"' : '') . ' size="' . ($row['field_length'] == 0 || $row['field_length'] >= 50 ? 50 : ($row['field_length'] > 30 ? 30 : ($row['field_length'] > 10 ? 20 : 10))) . '" value="' . un_htmlspecialchars($value) . '"' . ($row['show_reg'] == 2 ? ' required' : '') . '>'; |
| 955 | - } |
|
| 956 | - else |
|
| 992 | + } else |
|
| 957 | 993 | { |
| 958 | 994 | @list ($rows, $cols) = @explode(',', $row['default_value']); |
| 959 | 995 | $input_html = '<textarea name="customfield[' . $row['col_name'] . ']" id="customfield[' . $row['col_name'] . ']"' . (!empty($rows) ? ' rows="' . $rows . '"' : '') . (!empty($cols) ? ' cols="' . $cols . '"' : '') . ($row['show_reg'] == 2 ? ' required' : '') . '>' . un_htmlspecialchars($value) . '</textarea>'; |
| 960 | 996 | } |
| 961 | 997 | |
| 962 | 998 | // Parse BBCode |
| 963 | - if ($row['bbc']) |
|
| 964 | - $output_html = parse_bbc($output_html); |
|
| 965 | - elseif ($row['field_type'] == 'textarea') |
|
| 966 | - // Allow for newlines at least |
|
| 999 | + if ($row['bbc']) { |
|
| 1000 | + $output_html = parse_bbc($output_html); |
|
| 1001 | + } elseif ($row['field_type'] == 'textarea') { |
|
| 1002 | + // Allow for newlines at least |
|
| 967 | 1003 | $output_html = strtr($output_html, array("\n" => '<br>')); |
| 1004 | + } |
|
| 968 | 1005 | |
| 969 | 1006 | // Enclosing the user input within some other text? |
| 970 | - if (!empty($row['enclose']) && !empty($output_html)) |
|
| 971 | - $output_html = strtr($row['enclose'], array( |
|
| 1007 | + if (!empty($row['enclose']) && !empty($output_html)) { |
|
| 1008 | + $output_html = strtr($row['enclose'], array( |
|
| 972 | 1009 | '{SCRIPTURL}' => $scripturl, |
| 973 | 1010 | '{IMAGES_URL}' => $settings['images_url'], |
| 974 | 1011 | '{DEFAULT_IMAGES_URL}' => $settings['default_images_url'], |
| 975 | 1012 | '{INPUT}' => un_htmlspecialchars($output_html), |
| 976 | 1013 | '{KEY}' => $currentKey |
| 977 | 1014 | )); |
| 1015 | + } |
|
| 978 | 1016 | |
| 979 | 1017 | $context['custom_fields'][] = array( |
| 980 | 1018 | 'name' => $row['field_name'], |
@@ -14,8 +14,9 @@ discard block |
||
| 14 | 14 | * @version 2.1 Beta 4 |
| 15 | 15 | */ |
| 16 | 16 | |
| 17 | -if (!defined('SMF')) |
|
| 17 | +if (!defined('SMF')) { |
|
| 18 | 18 | die('No direct access...'); |
| 19 | +} |
|
| 19 | 20 | |
| 20 | 21 | /** |
| 21 | 22 | * This function makes sure the requested subaction does exists, if it doesn't, it sets a default action or. |
@@ -206,16 +207,18 @@ discard block |
||
| 206 | 207 | { |
| 207 | 208 | $all_zones = timezone_identifiers_list(); |
| 208 | 209 | // Make sure we set the value to the same as the printed value. |
| 209 | - foreach ($all_zones as $zone) |
|
| 210 | - $config_vars['default_timezone'][2][$zone] = $zone; |
|
| 210 | + foreach ($all_zones as $zone) { |
|
| 211 | + $config_vars['default_timezone'][2][$zone] = $zone; |
|
| 212 | + } |
|
| 213 | + } else { |
|
| 214 | + unset($config_vars['default_timezone']); |
|
| 211 | 215 | } |
| 212 | - else |
|
| 213 | - unset($config_vars['default_timezone']); |
|
| 214 | 216 | |
| 215 | 217 | call_integration_hook('integrate_modify_basic_settings', array(&$config_vars)); |
| 216 | 218 | |
| 217 | - if ($return_config) |
|
| 218 | - return $config_vars; |
|
| 219 | + if ($return_config) { |
|
| 220 | + return $config_vars; |
|
| 221 | + } |
|
| 219 | 222 | |
| 220 | 223 | // Saving? |
| 221 | 224 | if (isset($_GET['save'])) |
@@ -223,8 +226,9 @@ discard block |
||
| 223 | 226 | checkSession(); |
| 224 | 227 | |
| 225 | 228 | // Prevent absurd boundaries here - make it a day tops. |
| 226 | - if (isset($_POST['lastActive'])) |
|
| 227 | - $_POST['lastActive'] = min((int) $_POST['lastActive'], 1440); |
|
| 229 | + if (isset($_POST['lastActive'])) { |
|
| 230 | + $_POST['lastActive'] = min((int) $_POST['lastActive'], 1440); |
|
| 231 | + } |
|
| 228 | 232 | |
| 229 | 233 | call_integration_hook('integrate_save_basic_settings'); |
| 230 | 234 | |
@@ -232,8 +236,9 @@ discard block |
||
| 232 | 236 | $_SESSION['adm-save'] = true; |
| 233 | 237 | |
| 234 | 238 | // Do a bit of housekeeping |
| 235 | - if (empty($_POST['minimize_files'])) |
|
| 236 | - deleteAllMinified(); |
|
| 239 | + if (empty($_POST['minimize_files'])) { |
|
| 240 | + deleteAllMinified(); |
|
| 241 | + } |
|
| 237 | 242 | |
| 238 | 243 | writeLog(); |
| 239 | 244 | redirectexit('action=admin;area=featuresettings;sa=basic'); |
@@ -273,8 +278,9 @@ discard block |
||
| 273 | 278 | |
| 274 | 279 | call_integration_hook('integrate_modify_bbc_settings', array(&$config_vars)); |
| 275 | 280 | |
| 276 | - if ($return_config) |
|
| 277 | - return $config_vars; |
|
| 281 | + if ($return_config) { |
|
| 282 | + return $config_vars; |
|
| 283 | + } |
|
| 278 | 284 | |
| 279 | 285 | // Setup the template. |
| 280 | 286 | require_once($sourcedir . '/ManageServer.php'); |
@@ -291,13 +297,15 @@ discard block |
||
| 291 | 297 | |
| 292 | 298 | // Clean up the tags. |
| 293 | 299 | $bbcTags = array(); |
| 294 | - foreach (parse_bbc(false) as $tag) |
|
| 295 | - $bbcTags[] = $tag['tag']; |
|
| 300 | + foreach (parse_bbc(false) as $tag) { |
|
| 301 | + $bbcTags[] = $tag['tag']; |
|
| 302 | + } |
|
| 296 | 303 | |
| 297 | - if (!isset($_POST['disabledBBC_enabledTags'])) |
|
| 298 | - $_POST['disabledBBC_enabledTags'] = array(); |
|
| 299 | - elseif (!is_array($_POST['disabledBBC_enabledTags'])) |
|
| 300 | - $_POST['disabledBBC_enabledTags'] = array($_POST['disabledBBC_enabledTags']); |
|
| 304 | + if (!isset($_POST['disabledBBC_enabledTags'])) { |
|
| 305 | + $_POST['disabledBBC_enabledTags'] = array(); |
|
| 306 | + } elseif (!is_array($_POST['disabledBBC_enabledTags'])) { |
|
| 307 | + $_POST['disabledBBC_enabledTags'] = array($_POST['disabledBBC_enabledTags']); |
|
| 308 | + } |
|
| 301 | 309 | // Work out what is actually disabled! |
| 302 | 310 | $_POST['disabledBBC'] = implode(',', array_diff($bbcTags, $_POST['disabledBBC_enabledTags'])); |
| 303 | 311 | |
@@ -341,8 +349,9 @@ discard block |
||
| 341 | 349 | |
| 342 | 350 | call_integration_hook('integrate_layout_settings', array(&$config_vars)); |
| 343 | 351 | |
| 344 | - if ($return_config) |
|
| 345 | - return $config_vars; |
|
| 352 | + if ($return_config) { |
|
| 353 | + return $config_vars; |
|
| 354 | + } |
|
| 346 | 355 | |
| 347 | 356 | // Saving? |
| 348 | 357 | if (isset($_GET['save'])) |
@@ -382,8 +391,9 @@ discard block |
||
| 382 | 391 | |
| 383 | 392 | call_integration_hook('integrate_likes_settings', array(&$config_vars)); |
| 384 | 393 | |
| 385 | - if ($return_config) |
|
| 386 | - return $config_vars; |
|
| 394 | + if ($return_config) { |
|
| 395 | + return $config_vars; |
|
| 396 | + } |
|
| 387 | 397 | |
| 388 | 398 | // Saving? |
| 389 | 399 | if (isset($_GET['save'])) |
@@ -421,8 +431,9 @@ discard block |
||
| 421 | 431 | |
| 422 | 432 | call_integration_hook('integrate_mentions_settings', array(&$config_vars)); |
| 423 | 433 | |
| 424 | - if ($return_config) |
|
| 425 | - return $config_vars; |
|
| 434 | + if ($return_config) { |
|
| 435 | + return $config_vars; |
|
| 436 | + } |
|
| 426 | 437 | |
| 427 | 438 | // Saving? |
| 428 | 439 | if (isset($_GET['save'])) |
@@ -466,8 +477,8 @@ discard block |
||
| 466 | 477 | 'enable' => array('check', 'warning_enable'), |
| 467 | 478 | ); |
| 468 | 479 | |
| 469 | - if (!empty($modSettings['warning_settings']) && $currently_enabled) |
|
| 470 | - $config_vars += array( |
|
| 480 | + if (!empty($modSettings['warning_settings']) && $currently_enabled) { |
|
| 481 | + $config_vars += array( |
|
| 471 | 482 | '', |
| 472 | 483 | array('int', 'warning_watch', 'subtext' => $txt['setting_warning_watch_note'] . ' ' . $txt['zero_to_disable']), |
| 473 | 484 | 'moderate' => array('int', 'warning_moderate', 'subtext' => $txt['setting_warning_moderate_note'] . ' ' . $txt['zero_to_disable']), |
@@ -476,15 +487,18 @@ discard block |
||
| 476 | 487 | 'rem2' => array('int', 'warning_decrement', 'subtext' => $txt['setting_warning_decrement_note'] . ' ' . $txt['zero_to_disable']), |
| 477 | 488 | array('permissions', 'view_warning'), |
| 478 | 489 | ); |
| 490 | + } |
|
| 479 | 491 | |
| 480 | 492 | call_integration_hook('integrate_warning_settings', array(&$config_vars)); |
| 481 | 493 | |
| 482 | - if ($return_config) |
|
| 483 | - return $config_vars; |
|
| 494 | + if ($return_config) { |
|
| 495 | + return $config_vars; |
|
| 496 | + } |
|
| 484 | 497 | |
| 485 | 498 | // Cannot use moderation if post moderation is not enabled. |
| 486 | - if (!$modSettings['postmod_active']) |
|
| 487 | - unset($config_vars['moderate']); |
|
| 499 | + if (!$modSettings['postmod_active']) { |
|
| 500 | + unset($config_vars['moderate']); |
|
| 501 | + } |
|
| 488 | 502 | |
| 489 | 503 | // Will need the utility functions from here. |
| 490 | 504 | require_once($sourcedir . '/ManageServer.php'); |
@@ -509,16 +523,16 @@ discard block |
||
| 509 | 523 | 'warning_watch' => 10, |
| 510 | 524 | 'warning_mute' => 60, |
| 511 | 525 | ); |
| 512 | - if ($modSettings['postmod_active']) |
|
| 513 | - $vars['warning_moderate'] = 35; |
|
| 526 | + if ($modSettings['postmod_active']) { |
|
| 527 | + $vars['warning_moderate'] = 35; |
|
| 528 | + } |
|
| 514 | 529 | |
| 515 | 530 | foreach ($vars as $var => $value) |
| 516 | 531 | { |
| 517 | 532 | $config_vars[] = array('int', $var); |
| 518 | 533 | $_POST[$var] = $value; |
| 519 | 534 | } |
| 520 | - } |
|
| 521 | - else |
|
| 535 | + } else |
|
| 522 | 536 | { |
| 523 | 537 | $_POST['warning_watch'] = min($_POST['warning_watch'], 100); |
| 524 | 538 | $_POST['warning_moderate'] = $modSettings['postmod_active'] ? min($_POST['warning_moderate'], 100) : 0; |
@@ -606,8 +620,9 @@ discard block |
||
| 606 | 620 | |
| 607 | 621 | call_integration_hook('integrate_spam_settings', array(&$config_vars)); |
| 608 | 622 | |
| 609 | - if ($return_config) |
|
| 610 | - return $config_vars; |
|
| 623 | + if ($return_config) { |
|
| 624 | + return $config_vars; |
|
| 625 | + } |
|
| 611 | 626 | |
| 612 | 627 | // You need to be an admin to edit settings! |
| 613 | 628 | isAllowedTo('admin_forum'); |
@@ -641,8 +656,9 @@ discard block |
||
| 641 | 656 | |
| 642 | 657 | if (empty($context['qa_by_lang'][strtr($language, array('-utf8' => ''))]) && !empty($context['question_answers'])) |
| 643 | 658 | { |
| 644 | - if (empty($context['settings_insert_above'])) |
|
| 645 | - $context['settings_insert_above'] = ''; |
|
| 659 | + if (empty($context['settings_insert_above'])) { |
|
| 660 | + $context['settings_insert_above'] = ''; |
|
| 661 | + } |
|
| 646 | 662 | |
| 647 | 663 | $context['settings_insert_above'] .= '<div class="noticebox">' . sprintf($txt['question_not_defined'], $context['languages'][$language]['name']) . '</div>'; |
| 648 | 664 | } |
@@ -685,8 +701,9 @@ discard block |
||
| 685 | 701 | $_POST['pm_spam_settings'] = (int) $_POST['max_pm_recipients'] . ',' . (int) $_POST['pm_posts_verification'] . ',' . (int) $_POST['pm_posts_per_hour']; |
| 686 | 702 | |
| 687 | 703 | // Hack in guest requiring verification! |
| 688 | - if (empty($_POST['posts_require_captcha']) && !empty($_POST['guests_require_captcha'])) |
|
| 689 | - $_POST['posts_require_captcha'] = -1; |
|
| 704 | + if (empty($_POST['posts_require_captcha']) && !empty($_POST['guests_require_captcha'])) { |
|
| 705 | + $_POST['posts_require_captcha'] = -1; |
|
| 706 | + } |
|
| 690 | 707 | |
| 691 | 708 | $save_vars = $config_vars; |
| 692 | 709 | unset($save_vars['pm1'], $save_vars['pm2'], $save_vars['pm3'], $save_vars['guest_verify']); |
@@ -703,14 +720,16 @@ discard block |
||
| 703 | 720 | foreach ($context['qa_languages'] as $lang_id => $dummy) |
| 704 | 721 | { |
| 705 | 722 | // If we had some questions for this language before, but don't now, delete everything from that language. |
| 706 | - if ((!isset($_POST['question'][$lang_id]) || !is_array($_POST['question'][$lang_id])) && !empty($context['qa_by_lang'][$lang_id])) |
|
| 707 | - $changes['delete'] = array_merge($questions['delete'], $context['qa_by_lang'][$lang_id]); |
|
| 723 | + if ((!isset($_POST['question'][$lang_id]) || !is_array($_POST['question'][$lang_id])) && !empty($context['qa_by_lang'][$lang_id])) { |
|
| 724 | + $changes['delete'] = array_merge($questions['delete'], $context['qa_by_lang'][$lang_id]); |
|
| 725 | + } |
|
| 708 | 726 | |
| 709 | 727 | // Now step through and see if any existing questions no longer exist. |
| 710 | - if (!empty($context['qa_by_lang'][$lang_id])) |
|
| 711 | - foreach ($context['qa_by_lang'][$lang_id] as $q_id) |
|
| 728 | + if (!empty($context['qa_by_lang'][$lang_id])) { |
|
| 729 | + foreach ($context['qa_by_lang'][$lang_id] as $q_id) |
|
| 712 | 730 | if (empty($_POST['question'][$lang_id][$q_id])) |
| 713 | 731 | $changes['delete'][] = $q_id; |
| 732 | + } |
|
| 714 | 733 | |
| 715 | 734 | // Now let's see if there are new questions or ones that need updating. |
| 716 | 735 | if (isset($_POST['question'][$lang_id])) |
@@ -719,14 +738,16 @@ discard block |
||
| 719 | 738 | { |
| 720 | 739 | // Ignore junky ids. |
| 721 | 740 | $q_id = (int) $q_id; |
| 722 | - if ($q_id <= 0) |
|
| 723 | - continue; |
|
| 741 | + if ($q_id <= 0) { |
|
| 742 | + continue; |
|
| 743 | + } |
|
| 724 | 744 | |
| 725 | 745 | // Check the question isn't empty (because they want to delete it?) |
| 726 | 746 | if (empty($question) || trim($question) == '') |
| 727 | 747 | { |
| 728 | - if (isset($context['question_answers'][$q_id])) |
|
| 729 | - $changes['delete'][] = $q_id; |
|
| 748 | + if (isset($context['question_answers'][$q_id])) { |
|
| 749 | + $changes['delete'][] = $q_id; |
|
| 750 | + } |
|
| 730 | 751 | continue; |
| 731 | 752 | } |
| 732 | 753 | $question = $smcFunc['htmlspecialchars'](trim($question)); |
@@ -734,19 +755,22 @@ discard block |
||
| 734 | 755 | // Get the answers. Firstly check there actually might be some. |
| 735 | 756 | if (!isset($_POST['answer'][$lang_id][$q_id]) || !is_array($_POST['answer'][$lang_id][$q_id])) |
| 736 | 757 | { |
| 737 | - if (isset($context['question_answers'][$q_id])) |
|
| 738 | - $changes['delete'][] = $q_id; |
|
| 758 | + if (isset($context['question_answers'][$q_id])) { |
|
| 759 | + $changes['delete'][] = $q_id; |
|
| 760 | + } |
|
| 739 | 761 | continue; |
| 740 | 762 | } |
| 741 | 763 | // Now get them and check that they might be viable. |
| 742 | 764 | $answers = array(); |
| 743 | - foreach ($_POST['answer'][$lang_id][$q_id] as $answer) |
|
| 744 | - if (!empty($answer) && trim($answer) !== '') |
|
| 765 | + foreach ($_POST['answer'][$lang_id][$q_id] as $answer) { |
|
| 766 | + if (!empty($answer) && trim($answer) !== '') |
|
| 745 | 767 | $answers[] = $smcFunc['htmlspecialchars'](trim($answer)); |
| 768 | + } |
|
| 746 | 769 | if (empty($answers)) |
| 747 | 770 | { |
| 748 | - if (isset($context['question_answers'][$q_id])) |
|
| 749 | - $changes['delete'][] = $q_id; |
|
| 771 | + if (isset($context['question_answers'][$q_id])) { |
|
| 772 | + $changes['delete'][] = $q_id; |
|
| 773 | + } |
|
| 750 | 774 | continue; |
| 751 | 775 | } |
| 752 | 776 | $answers = $smcFunc['json_encode']($answers); |
@@ -756,16 +780,17 @@ discard block |
||
| 756 | 780 | { |
| 757 | 781 | // New question. Now, we don't want to randomly consume ids, so we'll set those, rather than trusting the browser's supplied ids. |
| 758 | 782 | $changes['insert'][] = array($lang_id, $question, $answers); |
| 759 | - } |
|
| 760 | - else |
|
| 783 | + } else |
|
| 761 | 784 | { |
| 762 | 785 | // It's an existing question. Let's see what's changed, if anything. |
| 763 | - if ($lang_id != $context['question_answers'][$q_id]['lngfile'] || $question != $context['question_answers'][$q_id]['question'] || $answers != $context['question_answers'][$q_id]['answers']) |
|
| 764 | - $changes['replace'][$q_id] = array('lngfile' => $lang_id, 'question' => $question, 'answers' => $answers); |
|
| 786 | + if ($lang_id != $context['question_answers'][$q_id]['lngfile'] || $question != $context['question_answers'][$q_id]['question'] || $answers != $context['question_answers'][$q_id]['answers']) { |
|
| 787 | + $changes['replace'][$q_id] = array('lngfile' => $lang_id, 'question' => $question, 'answers' => $answers); |
|
| 788 | + } |
|
| 765 | 789 | } |
| 766 | 790 | |
| 767 | - if (!isset($qs_per_lang[$lang_id])) |
|
| 768 | - $qs_per_lang[$lang_id] = 0; |
|
| 791 | + if (!isset($qs_per_lang[$lang_id])) { |
|
| 792 | + $qs_per_lang[$lang_id] = 0; |
|
| 793 | + } |
|
| 769 | 794 | $qs_per_lang[$lang_id]++; |
| 770 | 795 | } |
| 771 | 796 | } |
@@ -815,8 +840,9 @@ discard block |
||
| 815 | 840 | |
| 816 | 841 | // Lastly, the count of messages needs to be no more than the lowest number of questions for any one language. |
| 817 | 842 | $count_questions = empty($qs_per_lang) ? 0 : min($qs_per_lang); |
| 818 | - if (empty($count_questions) || $_POST['qa_verification_number'] > $count_questions) |
|
| 819 | - $_POST['qa_verification_number'] = $count_questions; |
|
| 843 | + if (empty($count_questions) || $_POST['qa_verification_number'] > $count_questions) { |
|
| 844 | + $_POST['qa_verification_number'] = $count_questions; |
|
| 845 | + } |
|
| 820 | 846 | |
| 821 | 847 | call_integration_hook('integrate_save_spam_settings', array(&$save_vars)); |
| 822 | 848 | |
@@ -831,24 +857,27 @@ discard block |
||
| 831 | 857 | |
| 832 | 858 | $character_range = array_merge(range('A', 'H'), array('K', 'M', 'N', 'P', 'R'), range('T', 'Y')); |
| 833 | 859 | $_SESSION['visual_verification_code'] = ''; |
| 834 | - for ($i = 0; $i < 6; $i++) |
|
| 835 | - $_SESSION['visual_verification_code'] .= $character_range[array_rand($character_range)]; |
|
| 860 | + for ($i = 0; $i < 6; $i++) { |
|
| 861 | + $_SESSION['visual_verification_code'] .= $character_range[array_rand($character_range)]; |
|
| 862 | + } |
|
| 836 | 863 | |
| 837 | 864 | // Some javascript for CAPTCHA. |
| 838 | 865 | $context['settings_post_javascript'] = ''; |
| 839 | - if ($context['use_graphic_library']) |
|
| 840 | - $context['settings_post_javascript'] .= ' |
|
| 866 | + if ($context['use_graphic_library']) { |
|
| 867 | + $context['settings_post_javascript'] .= ' |
|
| 841 | 868 | function refreshImages() |
| 842 | 869 | { |
| 843 | 870 | var imageType = document.getElementById(\'visual_verification_type\').value; |
| 844 | 871 | document.getElementById(\'verification_image\').src = \'' . $context['verification_image_href'] . ';type=\' + imageType; |
| 845 | 872 | }'; |
| 873 | + } |
|
| 846 | 874 | |
| 847 | 875 | // Show the image itself, or text saying we can't. |
| 848 | - if ($context['use_graphic_library']) |
|
| 849 | - $config_vars['vv']['postinput'] = '<br><img src="' . $context['verification_image_href'] . ';type=' . (empty($modSettings['visual_verification_type']) ? 0 : $modSettings['visual_verification_type']) . '" alt="' . $txt['setting_image_verification_sample'] . '" id="verification_image"><br>'; |
|
| 850 | - else |
|
| 851 | - $config_vars['vv']['postinput'] = '<br><span class="smalltext">' . $txt['setting_image_verification_nogd'] . '</span>'; |
|
| 876 | + if ($context['use_graphic_library']) { |
|
| 877 | + $config_vars['vv']['postinput'] = '<br><img src="' . $context['verification_image_href'] . ';type=' . (empty($modSettings['visual_verification_type']) ? 0 : $modSettings['visual_verification_type']) . '" alt="' . $txt['setting_image_verification_sample'] . '" id="verification_image"><br>'; |
|
| 878 | + } else { |
|
| 879 | + $config_vars['vv']['postinput'] = '<br><span class="smalltext">' . $txt['setting_image_verification_nogd'] . '</span>'; |
|
| 880 | + } |
|
| 852 | 881 | |
| 853 | 882 | // Hack for PM spam settings. |
| 854 | 883 | list ($modSettings['max_pm_recipients'], $modSettings['pm_posts_verification'], $modSettings['pm_posts_per_hour']) = explode(',', $modSettings['pm_spam_settings']); |
@@ -858,9 +887,10 @@ discard block |
||
| 858 | 887 | $modSettings['posts_require_captcha'] = !isset($modSettings['posts_require_captcha']) || $modSettings['posts_require_captcha'] == -1 ? 0 : $modSettings['posts_require_captcha']; |
| 859 | 888 | |
| 860 | 889 | // Some minor javascript for the guest post setting. |
| 861 | - if ($modSettings['posts_require_captcha']) |
|
| 862 | - $context['settings_post_javascript'] .= ' |
|
| 890 | + if ($modSettings['posts_require_captcha']) { |
|
| 891 | + $context['settings_post_javascript'] .= ' |
|
| 863 | 892 | document.getElementById(\'guests_require_captcha\').disabled = true;'; |
| 893 | + } |
|
| 864 | 894 | |
| 865 | 895 | // And everything else. |
| 866 | 896 | $context['post_url'] = $scripturl . '?action=admin;area=antispam;save'; |
@@ -907,8 +937,9 @@ discard block |
||
| 907 | 937 | |
| 908 | 938 | call_integration_hook('integrate_signature_settings', array(&$config_vars)); |
| 909 | 939 | |
| 910 | - if ($return_config) |
|
| 911 | - return $config_vars; |
|
| 940 | + if ($return_config) { |
|
| 941 | + return $config_vars; |
|
| 942 | + } |
|
| 912 | 943 | |
| 913 | 944 | // Setup the template. |
| 914 | 945 | $context['page_title'] = $txt['signature_settings']; |
@@ -963,8 +994,9 @@ discard block |
||
| 963 | 994 | $sig = strtr($row['signature'], array('<br>' => "\n")); |
| 964 | 995 | |
| 965 | 996 | // Max characters... |
| 966 | - if (!empty($sig_limits[1])) |
|
| 967 | - $sig = $smcFunc['substr']($sig, 0, $sig_limits[1]); |
|
| 997 | + if (!empty($sig_limits[1])) { |
|
| 998 | + $sig = $smcFunc['substr']($sig, 0, $sig_limits[1]); |
|
| 999 | + } |
|
| 968 | 1000 | // Max lines... |
| 969 | 1001 | if (!empty($sig_limits[2])) |
| 970 | 1002 | { |
@@ -974,8 +1006,9 @@ discard block |
||
| 974 | 1006 | if ($sig[$i] == "\n") |
| 975 | 1007 | { |
| 976 | 1008 | $count++; |
| 977 | - if ($count >= $sig_limits[2]) |
|
| 978 | - $sig = substr($sig, 0, $i) . strtr(substr($sig, $i), array("\n" => ' ')); |
|
| 1009 | + if ($count >= $sig_limits[2]) { |
|
| 1010 | + $sig = substr($sig, 0, $i) . strtr(substr($sig, $i), array("\n" => ' ')); |
|
| 1011 | + } |
|
| 979 | 1012 | } |
| 980 | 1013 | } |
| 981 | 1014 | } |
@@ -986,17 +1019,19 @@ discard block |
||
| 986 | 1019 | { |
| 987 | 1020 | $limit_broke = 0; |
| 988 | 1021 | // Attempt to allow all sizes of abuse, so to speak. |
| 989 | - if ($matches[2][$ind] == 'px' && $size > $sig_limits[7]) |
|
| 990 | - $limit_broke = $sig_limits[7] . 'px'; |
|
| 991 | - elseif ($matches[2][$ind] == 'pt' && $size > ($sig_limits[7] * 0.75)) |
|
| 992 | - $limit_broke = ((int) $sig_limits[7] * 0.75) . 'pt'; |
|
| 993 | - elseif ($matches[2][$ind] == 'em' && $size > ((float) $sig_limits[7] / 16)) |
|
| 994 | - $limit_broke = ((float) $sig_limits[7] / 16) . 'em'; |
|
| 995 | - elseif ($matches[2][$ind] != 'px' && $matches[2][$ind] != 'pt' && $matches[2][$ind] != 'em' && $sig_limits[7] < 18) |
|
| 996 | - $limit_broke = 'large'; |
|
| 997 | - |
|
| 998 | - if ($limit_broke) |
|
| 999 | - $sig = str_replace($matches[0][$ind], '[size=' . $sig_limits[7] . 'px', $sig); |
|
| 1022 | + if ($matches[2][$ind] == 'px' && $size > $sig_limits[7]) { |
|
| 1023 | + $limit_broke = $sig_limits[7] . 'px'; |
|
| 1024 | + } elseif ($matches[2][$ind] == 'pt' && $size > ($sig_limits[7] * 0.75)) { |
|
| 1025 | + $limit_broke = ((int) $sig_limits[7] * 0.75) . 'pt'; |
|
| 1026 | + } elseif ($matches[2][$ind] == 'em' && $size > ((float) $sig_limits[7] / 16)) { |
|
| 1027 | + $limit_broke = ((float) $sig_limits[7] / 16) . 'em'; |
|
| 1028 | + } elseif ($matches[2][$ind] != 'px' && $matches[2][$ind] != 'pt' && $matches[2][$ind] != 'em' && $sig_limits[7] < 18) { |
|
| 1029 | + $limit_broke = 'large'; |
|
| 1030 | + } |
|
| 1031 | + |
|
| 1032 | + if ($limit_broke) { |
|
| 1033 | + $sig = str_replace($matches[0][$ind], '[size=' . $sig_limits[7] . 'px', $sig); |
|
| 1034 | + } |
|
| 1000 | 1035 | } |
| 1001 | 1036 | } |
| 1002 | 1037 | |
@@ -1052,32 +1087,34 @@ discard block |
||
| 1052 | 1087 | $img_offset = false; |
| 1053 | 1088 | } |
| 1054 | 1089 | } |
| 1090 | + } else { |
|
| 1091 | + $replaces[$image] = ''; |
|
| 1055 | 1092 | } |
| 1056 | - else |
|
| 1057 | - $replaces[$image] = ''; |
|
| 1058 | 1093 | |
| 1059 | 1094 | continue; |
| 1060 | 1095 | } |
| 1061 | 1096 | |
| 1062 | 1097 | // Does it have predefined restraints? Width first. |
| 1063 | - if ($matches[6][$key]) |
|
| 1064 | - $matches[2][$key] = $matches[6][$key]; |
|
| 1098 | + if ($matches[6][$key]) { |
|
| 1099 | + $matches[2][$key] = $matches[6][$key]; |
|
| 1100 | + } |
|
| 1065 | 1101 | if ($matches[2][$key] && $sig_limits[5] && $matches[2][$key] > $sig_limits[5]) |
| 1066 | 1102 | { |
| 1067 | 1103 | $width = $sig_limits[5]; |
| 1068 | 1104 | $matches[4][$key] = $matches[4][$key] * ($width / $matches[2][$key]); |
| 1105 | + } elseif ($matches[2][$key]) { |
|
| 1106 | + $width = $matches[2][$key]; |
|
| 1069 | 1107 | } |
| 1070 | - elseif ($matches[2][$key]) |
|
| 1071 | - $width = $matches[2][$key]; |
|
| 1072 | 1108 | // ... and height. |
| 1073 | 1109 | if ($matches[4][$key] && $sig_limits[6] && $matches[4][$key] > $sig_limits[6]) |
| 1074 | 1110 | { |
| 1075 | 1111 | $height = $sig_limits[6]; |
| 1076 | - if ($width != -1) |
|
| 1077 | - $width = $width * ($height / $matches[4][$key]); |
|
| 1112 | + if ($width != -1) { |
|
| 1113 | + $width = $width * ($height / $matches[4][$key]); |
|
| 1114 | + } |
|
| 1115 | + } elseif ($matches[4][$key]) { |
|
| 1116 | + $height = $matches[4][$key]; |
|
| 1078 | 1117 | } |
| 1079 | - elseif ($matches[4][$key]) |
|
| 1080 | - $height = $matches[4][$key]; |
|
| 1081 | 1118 | |
| 1082 | 1119 | // If the dimensions are still not fixed - we need to check the actual image. |
| 1083 | 1120 | if (($width == -1 && $sig_limits[5]) || ($height == -1 && $sig_limits[6])) |
@@ -1095,12 +1132,13 @@ discard block |
||
| 1095 | 1132 | if ($sizes[1] > $sig_limits[6] && $sig_limits[6]) |
| 1096 | 1133 | { |
| 1097 | 1134 | $height = $sig_limits[6]; |
| 1098 | - if ($width == -1) |
|
| 1099 | - $width = $sizes[0]; |
|
| 1135 | + if ($width == -1) { |
|
| 1136 | + $width = $sizes[0]; |
|
| 1137 | + } |
|
| 1100 | 1138 | $width = $width * ($height / $sizes[1]); |
| 1139 | + } elseif ($width != -1) { |
|
| 1140 | + $height = $sizes[1]; |
|
| 1101 | 1141 | } |
| 1102 | - elseif ($width != -1) |
|
| 1103 | - $height = $sizes[1]; |
|
| 1104 | 1142 | } |
| 1105 | 1143 | } |
| 1106 | 1144 | |
@@ -1113,8 +1151,9 @@ discard block |
||
| 1113 | 1151 | // Record that we got one. |
| 1114 | 1152 | $image_count_holder[$image] = isset($image_count_holder[$image]) ? $image_count_holder[$image] + 1 : 1; |
| 1115 | 1153 | } |
| 1116 | - if (!empty($replaces)) |
|
| 1117 | - $sig = str_replace(array_keys($replaces), array_values($replaces), $sig); |
|
| 1154 | + if (!empty($replaces)) { |
|
| 1155 | + $sig = str_replace(array_keys($replaces), array_values($replaces), $sig); |
|
| 1156 | + } |
|
| 1118 | 1157 | } |
| 1119 | 1158 | } |
| 1120 | 1159 | // Try to fix disabled tags. |
@@ -1126,18 +1165,20 @@ discard block |
||
| 1126 | 1165 | |
| 1127 | 1166 | $sig = strtr($sig, array("\n" => '<br>')); |
| 1128 | 1167 | call_integration_hook('integrate_apply_signature_settings', array(&$sig, $sig_limits, $disabledTags)); |
| 1129 | - if ($sig != $row['signature']) |
|
| 1130 | - $changes[$row['id_member']] = $sig; |
|
| 1168 | + if ($sig != $row['signature']) { |
|
| 1169 | + $changes[$row['id_member']] = $sig; |
|
| 1170 | + } |
|
| 1171 | + } |
|
| 1172 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
| 1173 | + $done = true; |
|
| 1131 | 1174 | } |
| 1132 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
| 1133 | - $done = true; |
|
| 1134 | 1175 | $smcFunc['db_free_result']($request); |
| 1135 | 1176 | |
| 1136 | 1177 | // Do we need to delete what we have? |
| 1137 | 1178 | if (!empty($changes)) |
| 1138 | 1179 | { |
| 1139 | - foreach ($changes as $id => $sig) |
|
| 1140 | - $smcFunc['db_query']('', ' |
|
| 1180 | + foreach ($changes as $id => $sig) { |
|
| 1181 | + $smcFunc['db_query']('', ' |
|
| 1141 | 1182 | UPDATE {db_prefix}members |
| 1142 | 1183 | SET signature = {string:signature} |
| 1143 | 1184 | WHERE id_member = {int:id_member}', |
@@ -1146,11 +1187,13 @@ discard block |
||
| 1146 | 1187 | 'signature' => $sig, |
| 1147 | 1188 | ) |
| 1148 | 1189 | ); |
| 1190 | + } |
|
| 1149 | 1191 | } |
| 1150 | 1192 | |
| 1151 | 1193 | $_GET['step'] += 50; |
| 1152 | - if (!$done) |
|
| 1153 | - pauseSignatureApplySettings(); |
|
| 1194 | + if (!$done) { |
|
| 1195 | + pauseSignatureApplySettings(); |
|
| 1196 | + } |
|
| 1154 | 1197 | } |
| 1155 | 1198 | $settings_applied = true; |
| 1156 | 1199 | } |
@@ -1168,8 +1211,9 @@ discard block |
||
| 1168 | 1211 | ); |
| 1169 | 1212 | |
| 1170 | 1213 | // Temporarily make each setting a modSetting! |
| 1171 | - foreach ($context['signature_settings'] as $key => $value) |
|
| 1172 | - $modSettings['signature_' . $key] = $value; |
|
| 1214 | + foreach ($context['signature_settings'] as $key => $value) { |
|
| 1215 | + $modSettings['signature_' . $key] = $value; |
|
| 1216 | + } |
|
| 1173 | 1217 | |
| 1174 | 1218 | // Make sure we check the right tags! |
| 1175 | 1219 | $modSettings['bbc_disabled_signature_bbc'] = $disabledTags; |
@@ -1181,23 +1225,26 @@ discard block |
||
| 1181 | 1225 | |
| 1182 | 1226 | // Clean up the tag stuff! |
| 1183 | 1227 | $bbcTags = array(); |
| 1184 | - foreach (parse_bbc(false) as $tag) |
|
| 1185 | - $bbcTags[] = $tag['tag']; |
|
| 1228 | + foreach (parse_bbc(false) as $tag) { |
|
| 1229 | + $bbcTags[] = $tag['tag']; |
|
| 1230 | + } |
|
| 1186 | 1231 | |
| 1187 | - if (!isset($_POST['signature_bbc_enabledTags'])) |
|
| 1188 | - $_POST['signature_bbc_enabledTags'] = array(); |
|
| 1189 | - elseif (!is_array($_POST['signature_bbc_enabledTags'])) |
|
| 1190 | - $_POST['signature_bbc_enabledTags'] = array($_POST['signature_bbc_enabledTags']); |
|
| 1232 | + if (!isset($_POST['signature_bbc_enabledTags'])) { |
|
| 1233 | + $_POST['signature_bbc_enabledTags'] = array(); |
|
| 1234 | + } elseif (!is_array($_POST['signature_bbc_enabledTags'])) { |
|
| 1235 | + $_POST['signature_bbc_enabledTags'] = array($_POST['signature_bbc_enabledTags']); |
|
| 1236 | + } |
|
| 1191 | 1237 | |
| 1192 | 1238 | $sig_limits = array(); |
| 1193 | 1239 | foreach ($context['signature_settings'] as $key => $value) |
| 1194 | 1240 | { |
| 1195 | - if ($key == 'allow_smileys') |
|
| 1196 | - continue; |
|
| 1197 | - elseif ($key == 'max_smileys' && empty($_POST['signature_allow_smileys'])) |
|
| 1198 | - $sig_limits[] = -1; |
|
| 1199 | - else |
|
| 1200 | - $sig_limits[] = !empty($_POST['signature_' . $key]) ? max(1, (int) $_POST['signature_' . $key]) : 0; |
|
| 1241 | + if ($key == 'allow_smileys') { |
|
| 1242 | + continue; |
|
| 1243 | + } elseif ($key == 'max_smileys' && empty($_POST['signature_allow_smileys'])) { |
|
| 1244 | + $sig_limits[] = -1; |
|
| 1245 | + } else { |
|
| 1246 | + $sig_limits[] = !empty($_POST['signature_' . $key]) ? max(1, (int) $_POST['signature_' . $key]) : 0; |
|
| 1247 | + } |
|
| 1201 | 1248 | } |
| 1202 | 1249 | |
| 1203 | 1250 | call_integration_hook('integrate_save_signature_settings', array(&$sig_limits, &$bbcTags)); |
@@ -1230,12 +1277,14 @@ discard block |
||
| 1230 | 1277 | |
| 1231 | 1278 | // Try get more time... |
| 1232 | 1279 | @set_time_limit(600); |
| 1233 | - if (function_exists('apache_reset_timeout')) |
|
| 1234 | - @apache_reset_timeout(); |
|
| 1280 | + if (function_exists('apache_reset_timeout')) { |
|
| 1281 | + @apache_reset_timeout(); |
|
| 1282 | + } |
|
| 1235 | 1283 | |
| 1236 | 1284 | // Have we exhausted all the time we allowed? |
| 1237 | - if (time() - array_sum(explode(' ', $sig_start)) < 3) |
|
| 1238 | - return; |
|
| 1285 | + if (time() - array_sum(explode(' ', $sig_start)) < 3) { |
|
| 1286 | + return; |
|
| 1287 | + } |
|
| 1239 | 1288 | |
| 1240 | 1289 | $context['continue_get_data'] = '?action=admin;area=featuresettings;sa=sig;apply;step=' . $_GET['step'] . ';' . $context['session_var'] . '=' . $context['session_id']; |
| 1241 | 1290 | $context['page_title'] = $txt['not_done_title']; |
@@ -1281,9 +1330,10 @@ discard block |
||
| 1281 | 1330 | $disable_fields = array_flip($standard_fields); |
| 1282 | 1331 | if (!empty($_POST['active'])) |
| 1283 | 1332 | { |
| 1284 | - foreach ($_POST['active'] as $value) |
|
| 1285 | - if (isset($disable_fields[$value])) |
|
| 1333 | + foreach ($_POST['active'] as $value) { |
|
| 1334 | + if (isset($disable_fields[$value])) |
|
| 1286 | 1335 | unset($disable_fields[$value]); |
| 1336 | + } |
|
| 1287 | 1337 | } |
| 1288 | 1338 | // What we have left! |
| 1289 | 1339 | $changes['disabled_profile_fields'] = empty($disable_fields) ? '' : implode(',', array_keys($disable_fields)); |
@@ -1292,16 +1342,18 @@ discard block |
||
| 1292 | 1342 | $reg_fields = array(); |
| 1293 | 1343 | if (!empty($_POST['reg'])) |
| 1294 | 1344 | { |
| 1295 | - foreach ($_POST['reg'] as $value) |
|
| 1296 | - if (in_array($value, $standard_fields) && !isset($disable_fields[$value])) |
|
| 1345 | + foreach ($_POST['reg'] as $value) { |
|
| 1346 | + if (in_array($value, $standard_fields) && !isset($disable_fields[$value])) |
|
| 1297 | 1347 | $reg_fields[] = $value; |
| 1348 | + } |
|
| 1298 | 1349 | } |
| 1299 | 1350 | // What we have left! |
| 1300 | 1351 | $changes['registration_fields'] = empty($reg_fields) ? '' : implode(',', $reg_fields); |
| 1301 | 1352 | |
| 1302 | 1353 | $_SESSION['adm-save'] = true; |
| 1303 | - if (!empty($changes)) |
|
| 1304 | - updateSettings($changes); |
|
| 1354 | + if (!empty($changes)) { |
|
| 1355 | + updateSettings($changes); |
|
| 1356 | + } |
|
| 1305 | 1357 | } |
| 1306 | 1358 | |
| 1307 | 1359 | createToken('admin-scp'); |
@@ -1404,11 +1456,13 @@ discard block |
||
| 1404 | 1456 | { |
| 1405 | 1457 | $return = '<p class="centertext bold_text">'. $rowData['field_order'] .'<br>'; |
| 1406 | 1458 | |
| 1407 | - if ($rowData['field_order'] > 1) |
|
| 1408 | - $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=up"><span class="toggle_up" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_up'] .'"></span></a>'; |
|
| 1459 | + if ($rowData['field_order'] > 1) { |
|
| 1460 | + $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=up"><span class="toggle_up" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_up'] .'"></span></a>'; |
|
| 1461 | + } |
|
| 1409 | 1462 | |
| 1410 | - if ($rowData['field_order'] < $context['custFieldsMaxOrder']) |
|
| 1411 | - $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=down"><span class="toggle_down" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_down'] .'"></span></a>'; |
|
| 1463 | + if ($rowData['field_order'] < $context['custFieldsMaxOrder']) { |
|
| 1464 | + $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=down"><span class="toggle_down" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_down'] .'"></span></a>'; |
|
| 1465 | + } |
|
| 1412 | 1466 | |
| 1413 | 1467 | $return .= '</p>'; |
| 1414 | 1468 | |
@@ -1546,16 +1600,16 @@ discard block |
||
| 1546 | 1600 | $disabled_fields = isset($modSettings['disabled_profile_fields']) ? explode(',', $modSettings['disabled_profile_fields']) : array(); |
| 1547 | 1601 | $registration_fields = isset($modSettings['registration_fields']) ? explode(',', $modSettings['registration_fields']) : array(); |
| 1548 | 1602 | |
| 1549 | - foreach ($standard_fields as $field) |
|
| 1550 | - $list[] = array( |
|
| 1603 | + foreach ($standard_fields as $field) { |
|
| 1604 | + $list[] = array( |
|
| 1551 | 1605 | 'id' => $field, |
| 1552 | 1606 | 'label' => isset($txt['standard_profile_field_' . $field]) ? $txt['standard_profile_field_' . $field] : (isset($txt[$field]) ? $txt[$field] : $field), |
| 1553 | 1607 | 'disabled' => in_array($field, $disabled_fields), |
| 1554 | 1608 | 'on_register' => in_array($field, $registration_fields) && !in_array($field, $fields_no_registration), |
| 1555 | 1609 | 'can_show_register' => !in_array($field, $fields_no_registration), |
| 1556 | 1610 | ); |
| 1557 | - } |
|
| 1558 | - else |
|
| 1611 | + } |
|
| 1612 | + } else |
|
| 1559 | 1613 | { |
| 1560 | 1614 | // Load all the fields. |
| 1561 | 1615 | $request = $smcFunc['db_query']('', ' |
@@ -1569,8 +1623,9 @@ discard block |
||
| 1569 | 1623 | 'items_per_page' => $items_per_page, |
| 1570 | 1624 | ) |
| 1571 | 1625 | ); |
| 1572 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1573 | - $list[] = $row; |
|
| 1626 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1627 | + $list[] = $row; |
|
| 1628 | + } |
|
| 1574 | 1629 | $smcFunc['db_free_result']($request); |
| 1575 | 1630 | } |
| 1576 | 1631 | |
@@ -1636,9 +1691,9 @@ discard block |
||
| 1636 | 1691 | $context['field'] = array(); |
| 1637 | 1692 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 1638 | 1693 | { |
| 1639 | - if ($row['field_type'] == 'textarea') |
|
| 1640 | - @list ($rows, $cols) = @explode(',', $row['default_value']); |
|
| 1641 | - else |
|
| 1694 | + if ($row['field_type'] == 'textarea') { |
|
| 1695 | + @list ($rows, $cols) = @explode(',', $row['default_value']); |
|
| 1696 | + } else |
|
| 1642 | 1697 | { |
| 1643 | 1698 | $rows = 3; |
| 1644 | 1699 | $cols = 30; |
@@ -1674,8 +1729,8 @@ discard block |
||
| 1674 | 1729 | } |
| 1675 | 1730 | |
| 1676 | 1731 | // Setup the default values as needed. |
| 1677 | - if (empty($context['field'])) |
|
| 1678 | - $context['field'] = array( |
|
| 1732 | + if (empty($context['field'])) { |
|
| 1733 | + $context['field'] = array( |
|
| 1679 | 1734 | 'name' => '', |
| 1680 | 1735 | 'col_name' => '???', |
| 1681 | 1736 | 'desc' => '', |
@@ -1700,6 +1755,7 @@ discard block |
||
| 1700 | 1755 | 'enclose' => '', |
| 1701 | 1756 | 'placement' => 0, |
| 1702 | 1757 | ); |
| 1758 | + } |
|
| 1703 | 1759 | |
| 1704 | 1760 | // Are we moving it? |
| 1705 | 1761 | if (isset($_GET['move']) && in_array($smcFunc['htmlspecialchars']($_GET['move']), $move_to)) |
@@ -1708,8 +1764,10 @@ discard block |
||
| 1708 | 1764 | $new_order = ($_GET['move'] == 'up' ? ($context['field']['order'] - 1) : ($context['field']['order'] + 1)); |
| 1709 | 1765 | |
| 1710 | 1766 | // Is this a valid position? |
| 1711 | - if ($new_order <= 0 || $new_order > $order_count) |
|
| 1712 | - redirectexit('action=admin;area=featuresettings;sa=profile'); // @todo implement an error handler |
|
| 1767 | + if ($new_order <= 0 || $new_order > $order_count) { |
|
| 1768 | + redirectexit('action=admin;area=featuresettings;sa=profile'); |
|
| 1769 | + } |
|
| 1770 | + // @todo implement an error handler |
|
| 1713 | 1771 | |
| 1714 | 1772 | // All good, proceed. |
| 1715 | 1773 | $smcFunc['db_query']('',' |
@@ -1740,12 +1798,14 @@ discard block |
||
| 1740 | 1798 | validateToken('admin-ecp'); |
| 1741 | 1799 | |
| 1742 | 1800 | // Everyone needs a name - even the (bracket) unknown... |
| 1743 | - if (trim($_POST['field_name']) == '') |
|
| 1744 | - redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=need_name'); |
|
| 1801 | + if (trim($_POST['field_name']) == '') { |
|
| 1802 | + redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=need_name'); |
|
| 1803 | + } |
|
| 1745 | 1804 | |
| 1746 | 1805 | // Regex you say? Do a very basic test to see if the pattern is valid |
| 1747 | - if (!empty($_POST['regex']) && @preg_match($_POST['regex'], 'dummy') === false) |
|
| 1748 | - redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=regex_error'); |
|
| 1806 | + if (!empty($_POST['regex']) && @preg_match($_POST['regex'], 'dummy') === false) { |
|
| 1807 | + redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=regex_error'); |
|
| 1808 | + } |
|
| 1749 | 1809 | |
| 1750 | 1810 | $_POST['field_name'] = $smcFunc['htmlspecialchars']($_POST['field_name']); |
| 1751 | 1811 | $_POST['field_desc'] = $smcFunc['htmlspecialchars']($_POST['field_desc']); |
@@ -1762,8 +1822,9 @@ discard block |
||
| 1762 | 1822 | |
| 1763 | 1823 | // Some masking stuff... |
| 1764 | 1824 | $mask = isset($_POST['mask']) ? $_POST['mask'] : ''; |
| 1765 | - if ($mask == 'regex' && isset($_POST['regex'])) |
|
| 1766 | - $mask .= $_POST['regex']; |
|
| 1825 | + if ($mask == 'regex' && isset($_POST['regex'])) { |
|
| 1826 | + $mask .= $_POST['regex']; |
|
| 1827 | + } |
|
| 1767 | 1828 | |
| 1768 | 1829 | $field_length = isset($_POST['max_length']) ? (int) $_POST['max_length'] : 255; |
| 1769 | 1830 | $enclose = isset($_POST['enclose']) ? $_POST['enclose'] : ''; |
@@ -1782,8 +1843,9 @@ discard block |
||
| 1782 | 1843 | $v = strtr($v, array(',' => '')); |
| 1783 | 1844 | |
| 1784 | 1845 | // Nada, zip, etc... |
| 1785 | - if (trim($v) == '') |
|
| 1786 | - continue; |
|
| 1846 | + if (trim($v) == '') { |
|
| 1847 | + continue; |
|
| 1848 | + } |
|
| 1787 | 1849 | |
| 1788 | 1850 | // Otherwise, save it boy. |
| 1789 | 1851 | $field_options .= $v . ','; |
@@ -1791,15 +1853,17 @@ discard block |
||
| 1791 | 1853 | $newOptions[$k] = $v; |
| 1792 | 1854 | |
| 1793 | 1855 | // Is it default? |
| 1794 | - if (isset($_POST['default_select']) && $_POST['default_select'] == $k) |
|
| 1795 | - $default = $v; |
|
| 1856 | + if (isset($_POST['default_select']) && $_POST['default_select'] == $k) { |
|
| 1857 | + $default = $v; |
|
| 1858 | + } |
|
| 1796 | 1859 | } |
| 1797 | 1860 | $field_options = substr($field_options, 0, -1); |
| 1798 | 1861 | } |
| 1799 | 1862 | |
| 1800 | 1863 | // Text area has default has dimensions |
| 1801 | - if ($_POST['field_type'] == 'textarea') |
|
| 1802 | - $default = (int) $_POST['rows'] . ',' . (int) $_POST['cols']; |
|
| 1864 | + if ($_POST['field_type'] == 'textarea') { |
|
| 1865 | + $default = (int) $_POST['rows'] . ',' . (int) $_POST['cols']; |
|
| 1866 | + } |
|
| 1803 | 1867 | |
| 1804 | 1868 | // Come up with the unique name? |
| 1805 | 1869 | if (empty($context['fid'])) |
@@ -1808,32 +1872,36 @@ discard block |
||
| 1808 | 1872 | preg_match('~([\w\d_-]+)~', $col_name, $matches); |
| 1809 | 1873 | |
| 1810 | 1874 | // If there is nothing to the name, then let's start out own - for foreign languages etc. |
| 1811 | - if (isset($matches[1])) |
|
| 1812 | - $col_name = $initial_col_name = 'cust_' . strtolower($matches[1]); |
|
| 1813 | - else |
|
| 1814 | - $col_name = $initial_col_name = 'cust_' . mt_rand(1, 9999); |
|
| 1875 | + if (isset($matches[1])) { |
|
| 1876 | + $col_name = $initial_col_name = 'cust_' . strtolower($matches[1]); |
|
| 1877 | + } else { |
|
| 1878 | + $col_name = $initial_col_name = 'cust_' . mt_rand(1, 9999); |
|
| 1879 | + } |
|
| 1815 | 1880 | |
| 1816 | 1881 | // Make sure this is unique. |
| 1817 | 1882 | $current_fields = array(); |
| 1818 | 1883 | $request = $smcFunc['db_query']('', ' |
| 1819 | 1884 | SELECT id_field, col_name |
| 1820 | 1885 | FROM {db_prefix}custom_fields'); |
| 1821 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1822 | - $current_fields[$row['id_field']] = $row['col_name']; |
|
| 1886 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1887 | + $current_fields[$row['id_field']] = $row['col_name']; |
|
| 1888 | + } |
|
| 1823 | 1889 | $smcFunc['db_free_result']($request); |
| 1824 | 1890 | |
| 1825 | 1891 | $unique = false; |
| 1826 | 1892 | for ($i = 0; !$unique && $i < 9; $i ++) |
| 1827 | 1893 | { |
| 1828 | - if (!in_array($col_name, $current_fields)) |
|
| 1829 | - $unique = true; |
|
| 1830 | - else |
|
| 1831 | - $col_name = $initial_col_name . $i; |
|
| 1894 | + if (!in_array($col_name, $current_fields)) { |
|
| 1895 | + $unique = true; |
|
| 1896 | + } else { |
|
| 1897 | + $col_name = $initial_col_name . $i; |
|
| 1898 | + } |
|
| 1832 | 1899 | } |
| 1833 | 1900 | |
| 1834 | 1901 | // Still not a unique column name? Leave it up to the user, then. |
| 1835 | - if (!$unique) |
|
| 1836 | - fatal_lang_error('custom_option_not_unique'); |
|
| 1902 | + if (!$unique) { |
|
| 1903 | + fatal_lang_error('custom_option_not_unique'); |
|
| 1904 | + } |
|
| 1837 | 1905 | } |
| 1838 | 1906 | // Work out what to do with the user data otherwise... |
| 1839 | 1907 | else |
@@ -1861,8 +1929,9 @@ discard block |
||
| 1861 | 1929 | // Work out what's changed! |
| 1862 | 1930 | foreach ($context['field']['options'] as $k => $option) |
| 1863 | 1931 | { |
| 1864 | - if (trim($option) == '') |
|
| 1865 | - continue; |
|
| 1932 | + if (trim($option) == '') { |
|
| 1933 | + continue; |
|
| 1934 | + } |
|
| 1866 | 1935 | |
| 1867 | 1936 | // Still exists? |
| 1868 | 1937 | if (in_array($option, $newOptions)) |
@@ -1876,8 +1945,8 @@ discard block |
||
| 1876 | 1945 | foreach ($optionChanges as $k => $option) |
| 1877 | 1946 | { |
| 1878 | 1947 | // Just been renamed? |
| 1879 | - if (!in_array($k, $takenKeys) && !empty($newOptions[$k])) |
|
| 1880 | - $smcFunc['db_query']('', ' |
|
| 1948 | + if (!in_array($k, $takenKeys) && !empty($newOptions[$k])) { |
|
| 1949 | + $smcFunc['db_query']('', ' |
|
| 1881 | 1950 | UPDATE {db_prefix}themes |
| 1882 | 1951 | SET value = {string:new_value} |
| 1883 | 1952 | WHERE variable = {string:current_column} |
@@ -1890,6 +1959,7 @@ discard block |
||
| 1890 | 1959 | 'old_value' => $option, |
| 1891 | 1960 | ) |
| 1892 | 1961 | ); |
| 1962 | + } |
|
| 1893 | 1963 | } |
| 1894 | 1964 | } |
| 1895 | 1965 | // @todo Maybe we should adjust based on new text length limits? |
@@ -1932,8 +2002,8 @@ discard block |
||
| 1932 | 2002 | ); |
| 1933 | 2003 | |
| 1934 | 2004 | // Just clean up any old selects - these are a pain! |
| 1935 | - if (($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio') && !empty($newOptions)) |
|
| 1936 | - $smcFunc['db_query']('', ' |
|
| 2005 | + if (($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio') && !empty($newOptions)) { |
|
| 2006 | + $smcFunc['db_query']('', ' |
|
| 1937 | 2007 | DELETE FROM {db_prefix}themes |
| 1938 | 2008 | WHERE variable = {string:current_column} |
| 1939 | 2009 | AND value NOT IN ({array_string:new_option_values}) |
@@ -1944,8 +2014,8 @@ discard block |
||
| 1944 | 2014 | 'current_column' => $context['field']['col_name'], |
| 1945 | 2015 | ) |
| 1946 | 2016 | ); |
| 1947 | - } |
|
| 1948 | - else |
|
| 2017 | + } |
|
| 2018 | + } else |
|
| 1949 | 2019 | { |
| 1950 | 2020 | // Gotta figure it out the order. |
| 1951 | 2021 | $new_order = $order_count > 1 ? ($order_count + 1) : 1; |
@@ -2120,11 +2190,13 @@ discard block |
||
| 2120 | 2190 | call_integration_hook('integrate_prune_settings', array(&$config_vars, &$prune_toggle, false)); |
| 2121 | 2191 | |
| 2122 | 2192 | $prune_toggle_dt = array(); |
| 2123 | - foreach ($prune_toggle as $item) |
|
| 2124 | - $prune_toggle_dt[] = 'setting_' . $item; |
|
| 2193 | + foreach ($prune_toggle as $item) { |
|
| 2194 | + $prune_toggle_dt[] = 'setting_' . $item; |
|
| 2195 | + } |
|
| 2125 | 2196 | |
| 2126 | - if ($return_config) |
|
| 2127 | - return $config_vars; |
|
| 2197 | + if ($return_config) { |
|
| 2198 | + return $config_vars; |
|
| 2199 | + } |
|
| 2128 | 2200 | |
| 2129 | 2201 | addInlineJavaScript(' |
| 2130 | 2202 | function togglePruned() |
@@ -2162,15 +2234,16 @@ discard block |
||
| 2162 | 2234 | $vals = array(); |
| 2163 | 2235 | foreach ($config_vars as $index => $dummy) |
| 2164 | 2236 | { |
| 2165 | - if (!is_array($dummy) || $index == 'pruningOptions' || !in_array($dummy[1], $prune_toggle)) |
|
| 2166 | - continue; |
|
| 2237 | + if (!is_array($dummy) || $index == 'pruningOptions' || !in_array($dummy[1], $prune_toggle)) { |
|
| 2238 | + continue; |
|
| 2239 | + } |
|
| 2167 | 2240 | |
| 2168 | 2241 | $vals[] = empty($_POST[$dummy[1]]) || $_POST[$dummy[1]] < 0 ? 0 : (int) $_POST[$dummy[1]]; |
| 2169 | 2242 | } |
| 2170 | 2243 | $_POST['pruningOptions'] = implode(',', $vals); |
| 2244 | + } else { |
|
| 2245 | + $_POST['pruningOptions'] = ''; |
|
| 2171 | 2246 | } |
| 2172 | - else |
|
| 2173 | - $_POST['pruningOptions'] = ''; |
|
| 2174 | 2247 | |
| 2175 | 2248 | saveDBSettings($savevar); |
| 2176 | 2249 | $_SESSION['adm-save'] = true; |
@@ -2182,10 +2255,11 @@ discard block |
||
| 2182 | 2255 | $context['sub_template'] = 'show_settings'; |
| 2183 | 2256 | |
| 2184 | 2257 | // Get the actual values |
| 2185 | - if (!empty($modSettings['pruningOptions'])) |
|
| 2186 | - @list ($modSettings['pruneErrorLog'], $modSettings['pruneModLog'], $modSettings['pruneBanLog'], $modSettings['pruneReportLog'], $modSettings['pruneScheduledTaskLog'], $modSettings['pruneSpiderHitLog']) = explode(',', $modSettings['pruningOptions']); |
|
| 2187 | - else |
|
| 2188 | - $modSettings['pruneErrorLog'] = $modSettings['pruneModLog'] = $modSettings['pruneBanLog'] = $modSettings['pruneReportLog'] = $modSettings['pruneScheduledTaskLog'] = $modSettings['pruneSpiderHitLog'] = 0; |
|
| 2258 | + if (!empty($modSettings['pruningOptions'])) { |
|
| 2259 | + @list ($modSettings['pruneErrorLog'], $modSettings['pruneModLog'], $modSettings['pruneBanLog'], $modSettings['pruneReportLog'], $modSettings['pruneScheduledTaskLog'], $modSettings['pruneSpiderHitLog']) = explode(',', $modSettings['pruningOptions']); |
|
| 2260 | + } else { |
|
| 2261 | + $modSettings['pruneErrorLog'] = $modSettings['pruneModLog'] = $modSettings['pruneBanLog'] = $modSettings['pruneReportLog'] = $modSettings['pruneScheduledTaskLog'] = $modSettings['pruneSpiderHitLog'] = 0; |
|
| 2262 | + } |
|
| 2189 | 2263 | |
| 2190 | 2264 | prepareDBSettingContext($config_vars); |
| 2191 | 2265 | } |
@@ -2207,8 +2281,9 @@ discard block |
||
| 2207 | 2281 | // Make it even easier to add new settings. |
| 2208 | 2282 | call_integration_hook('integrate_general_mod_settings', array(&$config_vars)); |
| 2209 | 2283 | |
| 2210 | - if ($return_config) |
|
| 2211 | - return $config_vars; |
|
| 2284 | + if ($return_config) { |
|
| 2285 | + return $config_vars; |
|
| 2286 | + } |
|
| 2212 | 2287 | |
| 2213 | 2288 | $context['post_url'] = $scripturl . '?action=admin;area=modsettings;save;sa=general'; |
| 2214 | 2289 | $context['settings_title'] = $txt['mods_cat_modifications_misc']; |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 4 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | define('SMF', 'proxy'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | global $proxyhousekeeping; |
| 20 | 21 | |
@@ -68,33 +69,38 @@ discard block |
||
| 68 | 69 | */ |
| 69 | 70 | public function checkRequest() |
| 70 | 71 | { |
| 71 | - if (!$this->enabled) |
|
| 72 | - return false; |
|
| 72 | + if (!$this->enabled) { |
|
| 73 | + return false; |
|
| 74 | + } |
|
| 73 | 75 | |
| 74 | 76 | // Try to create the image cache directory if it doesn't exist |
| 75 | - if (!file_exists($this->cache)) |
|
| 76 | - if (!mkdir($this->cache) || !copy(dirname($this->cache) . '/index.php', $this->cache . '/index.php')) |
|
| 77 | + if (!file_exists($this->cache)) { |
|
| 78 | + if (!mkdir($this->cache) || !copy(dirname($this->cache) . '/index.php', $this->cache . '/index.php')) |
|
| 77 | 79 | return false; |
| 80 | + } |
|
| 78 | 81 | |
| 79 | 82 | // Basic sanity check |
| 80 | 83 | $_GET['request'] = validate_iri($_GET['request']); |
| 81 | 84 | |
| 82 | 85 | // We aren't going anywhere without these |
| 83 | - if (empty($_GET['hash']) || empty($_GET['request'])) |
|
| 84 | - return false; |
|
| 86 | + if (empty($_GET['hash']) || empty($_GET['request'])) { |
|
| 87 | + return false; |
|
| 88 | + } |
|
| 85 | 89 | |
| 86 | 90 | $hash = $_GET['hash']; |
| 87 | 91 | $request = $_GET['request']; |
| 88 | 92 | |
| 89 | - if (md5($request . $this->secret) != $hash) |
|
| 90 | - return false; |
|
| 93 | + if (md5($request . $this->secret) != $hash) { |
|
| 94 | + return false; |
|
| 95 | + } |
|
| 91 | 96 | |
| 92 | 97 | // Ensure any non-ASCII characters in the URL are encoded correctly |
| 93 | 98 | $request = iri_to_url($request); |
| 94 | 99 | |
| 95 | 100 | // Attempt to cache the request if it doesn't exist |
| 96 | - if (!$this->isCached($request)) |
|
| 97 | - return $this->cacheImage($request); |
|
| 101 | + if (!$this->isCached($request)) { |
|
| 102 | + return $this->cacheImage($request); |
|
| 103 | + } |
|
| 98 | 104 | |
| 99 | 105 | return true; |
| 100 | 106 | } |
@@ -131,8 +137,9 @@ discard block |
||
| 131 | 137 | if (!$cached || $time - $cached['time'] > ($this->maxDays * 86400)) |
| 132 | 138 | { |
| 133 | 139 | @unlink($cached_file); |
| 134 | - if ($this->checkRequest()) |
|
| 135 | - $this->serve(); |
|
| 140 | + if ($this->checkRequest()) { |
|
| 141 | + $this->serve(); |
|
| 142 | + } |
|
| 136 | 143 | $this::redirectexit($request); |
| 137 | 144 | } |
| 138 | 145 | |
@@ -145,8 +152,9 @@ discard block |
||
| 145 | 152 | |
| 146 | 153 | // Make sure we're serving an image |
| 147 | 154 | $contentParts = explode('/', !empty($cached['content_type']) ? $cached['content_type'] : ''); |
| 148 | - if ($contentParts[0] != 'image') |
|
| 149 | - exit; |
|
| 155 | + if ($contentParts[0] != 'image') { |
|
| 156 | + exit; |
|
| 157 | + } |
|
| 150 | 158 | |
| 151 | 159 | $max_age = $time - $cached['time'] + (5 * 86400); |
| 152 | 160 | header('content-type: ' . $cached['content_type']); |
@@ -196,25 +204,29 @@ discard block |
||
| 196 | 204 | $image = fetch_web_data($request); |
| 197 | 205 | |
| 198 | 206 | // Looks like nobody was home |
| 199 | - if (empty($image)) |
|
| 200 | - return -1; |
|
| 207 | + if (empty($image)) { |
|
| 208 | + return -1; |
|
| 209 | + } |
|
| 201 | 210 | |
| 202 | 211 | // What kind of file did they give us? |
| 203 | 212 | $finfo = finfo_open(FILEINFO_MIME_TYPE); |
| 204 | 213 | $mime_type = finfo_buffer($finfo, $image); |
| 205 | 214 | |
| 206 | 215 | // SVG needs a little extra care |
| 207 | - if ($ext == 'svg' && $mime_type == 'text/plain') |
|
| 208 | - $mime_type = 'image/svg+xml'; |
|
| 216 | + if ($ext == 'svg' && $mime_type == 'text/plain') { |
|
| 217 | + $mime_type = 'image/svg+xml'; |
|
| 218 | + } |
|
| 209 | 219 | |
| 210 | 220 | // Make sure the url is returning an image |
| 211 | - if (strpos($mime_type, 'image/') !== 0) |
|
| 212 | - return -1; |
|
| 221 | + if (strpos($mime_type, 'image/') !== 0) { |
|
| 222 | + return -1; |
|
| 223 | + } |
|
| 213 | 224 | |
| 214 | 225 | // Validate the filesize |
| 215 | 226 | $size = strlen($image); |
| 216 | - if ($size > ($this->maxSize * 1024)) |
|
| 217 | - return 0; |
|
| 227 | + if ($size > ($this->maxSize * 1024)) { |
|
| 228 | + return 0; |
|
| 229 | + } |
|
| 218 | 230 | |
| 219 | 231 | // Cache it for later |
| 220 | 232 | return file_put_contents($dest, json_encode(array( |
@@ -18,8 +18,9 @@ |
||
| 18 | 18 | * @version 2.1 Beta 4 |
| 19 | 19 | */ |
| 20 | 20 | |
| 21 | -if (!defined('SMF')) |
|
| 21 | +if (!defined('SMF')) { |
|
| 22 | 22 | die('No direct access...'); |
| 23 | +} |
|
| 23 | 24 | |
| 24 | 25 | /** |
| 25 | 26 | * Punycode implementation as described in RFC 3492 |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * This file contains helper functions for upgrade.php |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF_VERSION')) |
|
| 16 | +if (!defined('SMF_VERSION')) { |
|
| 17 | 17 | die('No direct access!'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * Clean the cache using the SMF 2.1 CacheAPI. |
@@ -45,8 +46,9 @@ discard block |
||
| 45 | 46 | global $smcFunc; |
| 46 | 47 | static $member_groups = array(); |
| 47 | 48 | |
| 48 | - if (!empty($member_groups)) |
|
| 49 | - return $member_groups; |
|
| 49 | + if (!empty($member_groups)) { |
|
| 50 | + return $member_groups; |
|
| 51 | + } |
|
| 50 | 52 | |
| 51 | 53 | $request = $smcFunc['db_query']('', ' |
| 52 | 54 | SELECT group_name, id_group |
@@ -71,8 +73,9 @@ discard block |
||
| 71 | 73 | ) |
| 72 | 74 | ); |
| 73 | 75 | } |
| 74 | - while ($row = $smcFunc['db_fetch_row']($request)) |
|
| 75 | - $member_groups[trim($row[0])] = $row[1]; |
|
| 76 | + while ($row = $smcFunc['db_fetch_row']($request)) { |
|
| 77 | + $member_groups[trim($row[0])] = $row[1]; |
|
| 78 | + } |
|
| 76 | 79 | $smcFunc['db_free_result']($request); |
| 77 | 80 | |
| 78 | 81 | return $member_groups; |
@@ -88,8 +91,9 @@ discard block |
||
| 88 | 91 | { |
| 89 | 92 | global $upcontext, $boarddir, $sourcedir; |
| 90 | 93 | |
| 91 | - if (empty($files)) |
|
| 92 | - return true; |
|
| 94 | + if (empty($files)) { |
|
| 95 | + return true; |
|
| 96 | + } |
|
| 93 | 97 | |
| 94 | 98 | $failure = false; |
| 95 | 99 | // On linux, it's easy - just use is_writable! |
@@ -100,22 +104,25 @@ discard block |
||
| 100 | 104 | foreach ($files as $k => $file) |
| 101 | 105 | { |
| 102 | 106 | // Some files won't exist, try to address up front |
| 103 | - if (!file_exists($file)) |
|
| 104 | - @touch($file); |
|
| 107 | + if (!file_exists($file)) { |
|
| 108 | + @touch($file); |
|
| 109 | + } |
|
| 105 | 110 | // NOW do the writable check... |
| 106 | 111 | if (!is_writable($file)) |
| 107 | 112 | { |
| 108 | 113 | @chmod($file, 0755); |
| 109 | 114 | |
| 110 | 115 | // Well, 755 hopefully worked... if not, try 777. |
| 111 | - if (!is_writable($file) && !@chmod($file, 0777)) |
|
| 112 | - $failure = true; |
|
| 116 | + if (!is_writable($file) && !@chmod($file, 0777)) { |
|
| 117 | + $failure = true; |
|
| 118 | + } |
|
| 113 | 119 | // Otherwise remove it as it's good! |
| 114 | - else |
|
| 115 | - unset($files[$k]); |
|
| 120 | + else { |
|
| 121 | + unset($files[$k]); |
|
| 122 | + } |
|
| 123 | + } else { |
|
| 124 | + unset($files[$k]); |
|
| 116 | 125 | } |
| 117 | - else |
|
| 118 | - unset($files[$k]); |
|
| 119 | 126 | } |
| 120 | 127 | } |
| 121 | 128 | // Windows is trickier. Let's try opening for r+... |
@@ -126,30 +133,35 @@ discard block |
||
| 126 | 133 | foreach ($files as $k => $file) |
| 127 | 134 | { |
| 128 | 135 | // Folders can't be opened for write... but the index.php in them can ;). |
| 129 | - if (is_dir($file)) |
|
| 130 | - $file .= '/index.php'; |
|
| 136 | + if (is_dir($file)) { |
|
| 137 | + $file .= '/index.php'; |
|
| 138 | + } |
|
| 131 | 139 | |
| 132 | 140 | // Funny enough, chmod actually does do something on windows - it removes the read only attribute. |
| 133 | 141 | @chmod($file, 0777); |
| 134 | 142 | $fp = @fopen($file, 'r+'); |
| 135 | 143 | |
| 136 | 144 | // Hmm, okay, try just for write in that case... |
| 137 | - if (!$fp) |
|
| 138 | - $fp = @fopen($file, 'w'); |
|
| 145 | + if (!$fp) { |
|
| 146 | + $fp = @fopen($file, 'w'); |
|
| 147 | + } |
|
| 139 | 148 | |
| 140 | - if (!$fp) |
|
| 141 | - $failure = true; |
|
| 142 | - else |
|
| 143 | - unset($files[$k]); |
|
| 149 | + if (!$fp) { |
|
| 150 | + $failure = true; |
|
| 151 | + } else { |
|
| 152 | + unset($files[$k]); |
|
| 153 | + } |
|
| 144 | 154 | @fclose($fp); |
| 145 | 155 | } |
| 146 | 156 | } |
| 147 | 157 | |
| 148 | - if (empty($files)) |
|
| 149 | - return true; |
|
| 158 | + if (empty($files)) { |
|
| 159 | + return true; |
|
| 160 | + } |
|
| 150 | 161 | |
| 151 | - if (!isset($_SERVER)) |
|
| 152 | - return !$failure; |
|
| 162 | + if (!isset($_SERVER)) { |
|
| 163 | + return !$failure; |
|
| 164 | + } |
|
| 153 | 165 | |
| 154 | 166 | // What still needs to be done? |
| 155 | 167 | $upcontext['chmod']['files'] = $files; |
@@ -201,36 +213,40 @@ discard block |
||
| 201 | 213 | |
| 202 | 214 | if (!isset($ftp) || $ftp->error !== false) |
| 203 | 215 | { |
| 204 | - if (!isset($ftp)) |
|
| 205 | - $ftp = new ftp_connection(null); |
|
| 216 | + if (!isset($ftp)) { |
|
| 217 | + $ftp = new ftp_connection(null); |
|
| 218 | + } |
|
| 206 | 219 | // Save the error so we can mess with listing... |
| 207 | - elseif ($ftp->error !== false && !isset($upcontext['chmod']['ftp_error'])) |
|
| 208 | - $upcontext['chmod']['ftp_error'] = $ftp->last_message === null ? '' : $ftp->last_message; |
|
| 220 | + elseif ($ftp->error !== false && !isset($upcontext['chmod']['ftp_error'])) { |
|
| 221 | + $upcontext['chmod']['ftp_error'] = $ftp->last_message === null ? '' : $ftp->last_message; |
|
| 222 | + } |
|
| 209 | 223 | |
| 210 | 224 | list ($username, $detect_path, $found_path) = $ftp->detect_path(dirname(__FILE__)); |
| 211 | 225 | |
| 212 | - if ($found_path || !isset($upcontext['chmod']['path'])) |
|
| 213 | - $upcontext['chmod']['path'] = $detect_path; |
|
| 226 | + if ($found_path || !isset($upcontext['chmod']['path'])) { |
|
| 227 | + $upcontext['chmod']['path'] = $detect_path; |
|
| 228 | + } |
|
| 214 | 229 | |
| 215 | - if (!isset($upcontext['chmod']['username'])) |
|
| 216 | - $upcontext['chmod']['username'] = $username; |
|
| 230 | + if (!isset($upcontext['chmod']['username'])) { |
|
| 231 | + $upcontext['chmod']['username'] = $username; |
|
| 232 | + } |
|
| 217 | 233 | |
| 218 | 234 | // Don't forget the login token. |
| 219 | 235 | $upcontext += createToken('login'); |
| 220 | 236 | |
| 221 | 237 | return false; |
| 222 | - } |
|
| 223 | - else |
|
| 238 | + } else |
|
| 224 | 239 | { |
| 225 | 240 | // We want to do a relative path for FTP. |
| 226 | 241 | if (!in_array($upcontext['chmod']['path'], array('', '/'))) |
| 227 | 242 | { |
| 228 | 243 | $ftp_root = strtr($boarddir, array($upcontext['chmod']['path'] => '')); |
| 229 | - if (substr($ftp_root, -1) == '/' && ($upcontext['chmod']['path'] == '' || $upcontext['chmod']['path'][0] === '/')) |
|
| 230 | - $ftp_root = substr($ftp_root, 0, -1); |
|
| 244 | + if (substr($ftp_root, -1) == '/' && ($upcontext['chmod']['path'] == '' || $upcontext['chmod']['path'][0] === '/')) { |
|
| 245 | + $ftp_root = substr($ftp_root, 0, -1); |
|
| 246 | + } |
|
| 247 | + } else { |
|
| 248 | + $ftp_root = $boarddir; |
|
| 231 | 249 | } |
| 232 | - else |
|
| 233 | - $ftp_root = $boarddir; |
|
| 234 | 250 | |
| 235 | 251 | // Save the info for next time! |
| 236 | 252 | $_SESSION['installer_temp_ftp'] = array( |
@@ -244,10 +260,12 @@ discard block |
||
| 244 | 260 | |
| 245 | 261 | foreach ($files as $k => $file) |
| 246 | 262 | { |
| 247 | - if (!is_writable($file)) |
|
| 248 | - $ftp->chmod($file, 0755); |
|
| 249 | - if (!is_writable($file)) |
|
| 250 | - $ftp->chmod($file, 0777); |
|
| 263 | + if (!is_writable($file)) { |
|
| 264 | + $ftp->chmod($file, 0755); |
|
| 265 | + } |
|
| 266 | + if (!is_writable($file)) { |
|
| 267 | + $ftp->chmod($file, 0777); |
|
| 268 | + } |
|
| 251 | 269 | |
| 252 | 270 | // Assuming that didn't work calculate the path without the boarddir. |
| 253 | 271 | if (!is_writable($file)) |
@@ -256,19 +274,23 @@ discard block |
||
| 256 | 274 | { |
| 257 | 275 | $ftp_file = strtr($file, array($_SESSION['installer_temp_ftp']['root'] => '')); |
| 258 | 276 | $ftp->chmod($ftp_file, 0755); |
| 259 | - if (!is_writable($file)) |
|
| 260 | - $ftp->chmod($ftp_file, 0777); |
|
| 277 | + if (!is_writable($file)) { |
|
| 278 | + $ftp->chmod($ftp_file, 0777); |
|
| 279 | + } |
|
| 261 | 280 | // Sometimes an extra slash can help... |
| 262 | 281 | $ftp_file = '/' . $ftp_file; |
| 263 | - if (!is_writable($file)) |
|
| 264 | - $ftp->chmod($ftp_file, 0755); |
|
| 265 | - if (!is_writable($file)) |
|
| 266 | - $ftp->chmod($ftp_file, 0777); |
|
| 282 | + if (!is_writable($file)) { |
|
| 283 | + $ftp->chmod($ftp_file, 0755); |
|
| 284 | + } |
|
| 285 | + if (!is_writable($file)) { |
|
| 286 | + $ftp->chmod($ftp_file, 0777); |
|
| 287 | + } |
|
| 267 | 288 | } |
| 268 | 289 | } |
| 269 | 290 | |
| 270 | - if (is_writable($file)) |
|
| 271 | - unset($files[$k]); |
|
| 291 | + if (is_writable($file)) { |
|
| 292 | + unset($files[$k]); |
|
| 293 | + } |
|
| 272 | 294 | } |
| 273 | 295 | |
| 274 | 296 | $ftp->close(); |
@@ -278,8 +300,9 @@ discard block |
||
| 278 | 300 | // What remains? |
| 279 | 301 | $upcontext['chmod']['files'] = $files; |
| 280 | 302 | |
| 281 | - if (empty($files)) |
|
| 282 | - return true; |
|
| 303 | + if (empty($files)) { |
|
| 304 | + return true; |
|
| 305 | + } |
|
| 283 | 306 | |
| 284 | 307 | return false; |
| 285 | 308 | } |
@@ -293,12 +316,14 @@ discard block |
||
| 293 | 316 | function quickFileWritable($file) |
| 294 | 317 | { |
| 295 | 318 | // Some files won't exist, try to address up front |
| 296 | - if (!file_exists($file)) |
|
| 297 | - @touch($file); |
|
| 319 | + if (!file_exists($file)) { |
|
| 320 | + @touch($file); |
|
| 321 | + } |
|
| 298 | 322 | |
| 299 | 323 | // NOW do the writable check... |
| 300 | - if (is_writable($file)) |
|
| 301 | - return true; |
|
| 324 | + if (is_writable($file)) { |
|
| 325 | + return true; |
|
| 326 | + } |
|
| 302 | 327 | |
| 303 | 328 | @chmod($file, 0755); |
| 304 | 329 | |
@@ -308,10 +333,11 @@ discard block |
||
| 308 | 333 | foreach ($chmod_values as $val) |
| 309 | 334 | { |
| 310 | 335 | // If it's writable, break out of the loop |
| 311 | - if (is_writable($file)) |
|
| 312 | - break; |
|
| 313 | - else |
|
| 314 | - @chmod($file, $val); |
|
| 336 | + if (is_writable($file)) { |
|
| 337 | + break; |
|
| 338 | + } else { |
|
| 339 | + @chmod($file, $val); |
|
| 340 | + } |
|
| 315 | 341 | } |
| 316 | 342 | |
| 317 | 343 | return is_writable($file); |
@@ -338,14 +364,16 @@ discard block |
||
| 338 | 364 | { |
| 339 | 365 | static $fp = null; |
| 340 | 366 | |
| 341 | - if ($fp === null) |
|
| 342 | - $fp = fopen('php://stderr', 'wb'); |
|
| 367 | + if ($fp === null) { |
|
| 368 | + $fp = fopen('php://stderr', 'wb'); |
|
| 369 | + } |
|
| 343 | 370 | |
| 344 | 371 | fwrite($fp, $message . "\n"); |
| 345 | 372 | |
| 346 | - if ($fatal) |
|
| 347 | - exit; |
|
| 348 | -} |
|
| 373 | + if ($fatal) { |
|
| 374 | + exit; |
|
| 375 | + } |
|
| 376 | + } |
|
| 349 | 377 | |
| 350 | 378 | /** |
| 351 | 379 | * Throws a graphical error message. |
@@ -13,8 +13,9 @@ discard block |
||
| 13 | 13 | * @version 2.1 Beta 4 |
| 14 | 14 | */ |
| 15 | 15 | |
| 16 | -if (!defined('SMF')) |
|
| 16 | +if (!defined('SMF')) { |
|
| 17 | 17 | die('No direct access...'); |
| 18 | +} |
|
| 18 | 19 | |
| 19 | 20 | /** |
| 20 | 21 | * This is the notoriously defunct package manager..... :/. |
@@ -57,10 +58,11 @@ discard block |
||
| 57 | 58 | ); |
| 58 | 59 | |
| 59 | 60 | // Work out exactly who it is we are calling. |
| 60 | - if (isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']])) |
|
| 61 | - $context['sub_action'] = $_REQUEST['sa']; |
|
| 62 | - else |
|
| 63 | - $context['sub_action'] = 'browse'; |
|
| 61 | + if (isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']])) { |
|
| 62 | + $context['sub_action'] = $_REQUEST['sa']; |
|
| 63 | + } else { |
|
| 64 | + $context['sub_action'] = 'browse'; |
|
| 65 | + } |
|
| 64 | 66 | |
| 65 | 67 | // Set up some tabs... |
| 66 | 68 | $context[$context['admin_menu_name']]['tab_data'] = array( |
@@ -82,8 +84,9 @@ discard block |
||
| 82 | 84 | ), |
| 83 | 85 | ); |
| 84 | 86 | |
| 85 | - if ($context['sub_action'] == 'browse') |
|
| 86 | - loadJavaScriptFile('suggest.js', array('defer' => false, 'minimize' => true), 'smf_suggest'); |
|
| 87 | + if ($context['sub_action'] == 'browse') { |
|
| 88 | + loadJavaScriptFile('suggest.js', array('defer' => false, 'minimize' => true), 'smf_suggest'); |
|
| 89 | + } |
|
| 87 | 90 | |
| 88 | 91 | call_integration_hook('integrate_manage_packages', array(&$subActions)); |
| 89 | 92 | |
@@ -99,8 +102,9 @@ discard block |
||
| 99 | 102 | global $boarddir, $txt, $context, $scripturl, $sourcedir, $packagesdir, $modSettings, $smcFunc, $settings; |
| 100 | 103 | |
| 101 | 104 | // You have to specify a file!! |
| 102 | - if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '') |
|
| 103 | - redirectexit('action=admin;area=packages'); |
|
| 105 | + if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '') { |
|
| 106 | + redirectexit('action=admin;area=packages'); |
|
| 107 | + } |
|
| 104 | 108 | $context['filename'] = preg_replace('~[\.]+~', '.', $_REQUEST['package']); |
| 105 | 109 | |
| 106 | 110 | // Do we have an existing id, for uninstalls and the like. |
@@ -112,8 +116,9 @@ discard block |
||
| 112 | 116 | create_chmod_control(); |
| 113 | 117 | |
| 114 | 118 | // Make sure temp directory exists and is empty. |
| 115 | - if (file_exists($packagesdir . '/temp')) |
|
| 116 | - deltree($packagesdir . '/temp', false); |
|
| 119 | + if (file_exists($packagesdir . '/temp')) { |
|
| 120 | + deltree($packagesdir . '/temp', false); |
|
| 121 | + } |
|
| 117 | 122 | |
| 118 | 123 | if (!mktree($packagesdir . '/temp', 0755)) |
| 119 | 124 | { |
@@ -124,8 +129,9 @@ discard block |
||
| 124 | 129 | create_chmod_control(array($packagesdir . '/temp/delme.tmp'), array('destination_url' => $scripturl . '?action=admin;area=packages;sa=' . $_REQUEST['sa'] . ';package=' . $_REQUEST['package'], 'crash_on_error' => true)); |
| 125 | 130 | |
| 126 | 131 | deltree($packagesdir . '/temp', false); |
| 127 | - if (!mktree($packagesdir . '/temp', 0777)) |
|
| 128 | - fatal_lang_error('package_cant_download', false); |
|
| 132 | + if (!mktree($packagesdir . '/temp', 0777)) { |
|
| 133 | + fatal_lang_error('package_cant_download', false); |
|
| 134 | + } |
|
| 129 | 135 | } |
| 130 | 136 | } |
| 131 | 137 | |
@@ -151,25 +157,26 @@ discard block |
||
| 151 | 157 | { |
| 152 | 158 | $context['extracted_files'] = read_tgz_file($packagesdir . '/' . $context['filename'], $packagesdir . '/temp'); |
| 153 | 159 | |
| 154 | - if ($context['extracted_files'] && !file_exists($packagesdir . '/temp/package-info.xml')) |
|
| 155 | - foreach ($context['extracted_files'] as $file) |
|
| 160 | + if ($context['extracted_files'] && !file_exists($packagesdir . '/temp/package-info.xml')) { |
|
| 161 | + foreach ($context['extracted_files'] as $file) |
|
| 156 | 162 | if (basename($file['filename']) == 'package-info.xml') |
| 157 | 163 | { |
| 158 | 164 | $context['base_path'] = dirname($file['filename']) . '/'; |
| 165 | + } |
|
| 159 | 166 | break; |
| 160 | 167 | } |
| 161 | 168 | |
| 162 | - if (!isset($context['base_path'])) |
|
| 163 | - $context['base_path'] = ''; |
|
| 164 | - } |
|
| 165 | - elseif (is_dir($packagesdir . '/' . $context['filename'])) |
|
| 169 | + if (!isset($context['base_path'])) { |
|
| 170 | + $context['base_path'] = ''; |
|
| 171 | + } |
|
| 172 | + } elseif (is_dir($packagesdir . '/' . $context['filename'])) |
|
| 166 | 173 | { |
| 167 | 174 | copytree($packagesdir . '/' . $context['filename'], $packagesdir . '/temp'); |
| 168 | 175 | $context['extracted_files'] = listtree($packagesdir . '/temp'); |
| 169 | 176 | $context['base_path'] = ''; |
| 177 | + } else { |
|
| 178 | + fatal_lang_error('no_access', false); |
|
| 170 | 179 | } |
| 171 | - else |
|
| 172 | - fatal_lang_error('no_access', false); |
|
| 173 | 180 | |
| 174 | 181 | // Load up any custom themes we may want to install into... |
| 175 | 182 | $request = $smcFunc['db_query']('', ' |
@@ -185,15 +192,17 @@ discard block |
||
| 185 | 192 | ) |
| 186 | 193 | ); |
| 187 | 194 | $theme_paths = array(); |
| 188 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 189 | - $theme_paths[$row['id_theme']][$row['variable']] = $row['value']; |
|
| 195 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 196 | + $theme_paths[$row['id_theme']][$row['variable']] = $row['value']; |
|
| 197 | + } |
|
| 190 | 198 | $smcFunc['db_free_result']($request); |
| 191 | 199 | |
| 192 | 200 | // Get the package info... |
| 193 | 201 | $packageInfo = getPackageInfo($context['filename']); |
| 194 | 202 | |
| 195 | - if (!is_array($packageInfo)) |
|
| 196 | - fatal_lang_error($packageInfo); |
|
| 203 | + if (!is_array($packageInfo)) { |
|
| 204 | + fatal_lang_error($packageInfo); |
|
| 205 | + } |
|
| 197 | 206 | |
| 198 | 207 | $packageInfo['filename'] = $context['filename']; |
| 199 | 208 | $context['package_name'] = isset($packageInfo['name']) ? $packageInfo['name'] : $context['filename']; |
@@ -227,18 +236,19 @@ discard block |
||
| 227 | 236 | $smcFunc['db_free_result']($request); |
| 228 | 237 | |
| 229 | 238 | $context['database_changes'] = array(); |
| 230 | - if (isset($packageInfo['uninstall']['database'])) |
|
| 231 | - $context['database_changes'][] = $txt['execute_database_changes'] . ' - ' . $packageInfo['uninstall']['database']; |
|
| 232 | - elseif (!empty($db_changes)) |
|
| 239 | + if (isset($packageInfo['uninstall']['database'])) { |
|
| 240 | + $context['database_changes'][] = $txt['execute_database_changes'] . ' - ' . $packageInfo['uninstall']['database']; |
|
| 241 | + } elseif (!empty($db_changes)) |
|
| 233 | 242 | { |
| 234 | 243 | foreach ($db_changes as $change) |
| 235 | 244 | { |
| 236 | - if (isset($change[2]) && isset($txt['package_db_' . $change[0]])) |
|
| 237 | - $context['database_changes'][] = sprintf($txt['package_db_' . $change[0]], $change[1], $change[2]); |
|
| 238 | - elseif (isset($txt['package_db_' . $change[0]])) |
|
| 239 | - $context['database_changes'][] = sprintf($txt['package_db_' . $change[0]], $change[1]); |
|
| 240 | - else |
|
| 241 | - $context['database_changes'][] = $change[0] . '-' . $change[1] . (isset($change[2]) ? '-' . $change[2] : ''); |
|
| 245 | + if (isset($change[2]) && isset($txt['package_db_' . $change[0]])) { |
|
| 246 | + $context['database_changes'][] = sprintf($txt['package_db_' . $change[0]], $change[1], $change[2]); |
|
| 247 | + } elseif (isset($txt['package_db_' . $change[0]])) { |
|
| 248 | + $context['database_changes'][] = sprintf($txt['package_db_' . $change[0]], $change[1]); |
|
| 249 | + } else { |
|
| 250 | + $context['database_changes'][] = $change[0] . '-' . $change[1] . (isset($change[2]) ? '-' . $change[2] : ''); |
|
| 251 | + } |
|
| 242 | 252 | } |
| 243 | 253 | } |
| 244 | 254 | |
@@ -265,31 +275,33 @@ discard block |
||
| 265 | 275 | $context['themes_locked'] = true; |
| 266 | 276 | |
| 267 | 277 | // Only let them uninstall themes it was installed into. |
| 268 | - foreach ($theme_paths as $id => $data) |
|
| 269 | - if ($id != 1 && !in_array($id, $old_themes)) |
|
| 278 | + foreach ($theme_paths as $id => $data) { |
|
| 279 | + if ($id != 1 && !in_array($id, $old_themes)) |
|
| 270 | 280 | unset($theme_paths[$id]); |
| 271 | - } |
|
| 272 | - elseif (isset($old_version) && $old_version != $packageInfo['version']) |
|
| 281 | + } |
|
| 282 | + } elseif (isset($old_version) && $old_version != $packageInfo['version']) |
|
| 273 | 283 | { |
| 274 | 284 | // Look for an upgrade... |
| 275 | 285 | $actions = parsePackageInfo($packageInfo['xml'], true, 'upgrade', $old_version); |
| 276 | 286 | |
| 277 | 287 | // There was no upgrade.... |
| 278 | - if (empty($actions)) |
|
| 279 | - $context['is_installed'] = true; |
|
| 280 | - else |
|
| 288 | + if (empty($actions)) { |
|
| 289 | + $context['is_installed'] = true; |
|
| 290 | + } else |
|
| 281 | 291 | { |
| 282 | 292 | // Otherwise they can only upgrade themes from the first time around. |
| 283 | - foreach ($theme_paths as $id => $data) |
|
| 284 | - if ($id != 1 && !in_array($id, $old_themes)) |
|
| 293 | + foreach ($theme_paths as $id => $data) { |
|
| 294 | + if ($id != 1 && !in_array($id, $old_themes)) |
|
| 285 | 295 | unset($theme_paths[$id]); |
| 296 | + } |
|
| 286 | 297 | } |
| 298 | + } elseif (isset($old_version) && $old_version == $packageInfo['version']) { |
|
| 299 | + $context['is_installed'] = true; |
|
| 287 | 300 | } |
| 288 | - elseif (isset($old_version) && $old_version == $packageInfo['version']) |
|
| 289 | - $context['is_installed'] = true; |
|
| 290 | 301 | |
| 291 | - if (!isset($old_version) || $context['is_installed']) |
|
| 292 | - $actions = parsePackageInfo($packageInfo['xml'], true, 'install'); |
|
| 302 | + if (!isset($old_version) || $context['is_installed']) { |
|
| 303 | + $actions = parsePackageInfo($packageInfo['xml'], true, 'install'); |
|
| 304 | + } |
|
| 293 | 305 | |
| 294 | 306 | $context['actions'] = array(); |
| 295 | 307 | $context['ftp_needed'] = false; |
@@ -297,8 +309,9 @@ discard block |
||
| 297 | 309 | $chmod_files = array(); |
| 298 | 310 | |
| 299 | 311 | // no actions found, return so we can display an error |
| 300 | - if (empty($actions)) |
|
| 301 | - return; |
|
| 312 | + if (empty($actions)) { |
|
| 313 | + return; |
|
| 314 | + } |
|
| 302 | 315 | |
| 303 | 316 | // This will hold data about anything that can be installed in other themes. |
| 304 | 317 | $themeFinds = array( |
@@ -317,14 +330,14 @@ discard block |
||
| 317 | 330 | { |
| 318 | 331 | $chmod_files[] = $action['filename']; |
| 319 | 332 | continue; |
| 320 | - } |
|
| 321 | - elseif ($action['type'] == 'readme' || $action['type'] == 'license') |
|
| 333 | + } elseif ($action['type'] == 'readme' || $action['type'] == 'license') |
|
| 322 | 334 | { |
| 323 | 335 | $type = 'package_' . $action['type']; |
| 324 | - if (file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename'])) |
|
| 325 | - $context[$type] = $smcFunc['htmlspecialchars'](trim(file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), "\n\r")); |
|
| 326 | - elseif (file_exists($action['filename'])) |
|
| 327 | - $context[$type] = $smcFunc['htmlspecialchars'](trim(file_get_contents($action['filename']), "\n\r")); |
|
| 336 | + if (file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename'])) { |
|
| 337 | + $context[$type] = $smcFunc['htmlspecialchars'](trim(file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), "\n\r")); |
|
| 338 | + } elseif (file_exists($action['filename'])) { |
|
| 339 | + $context[$type] = $smcFunc['htmlspecialchars'](trim(file_get_contents($action['filename']), "\n\r")); |
|
| 340 | + } |
|
| 328 | 341 | |
| 329 | 342 | if (!empty($action['parse_bbc'])) |
| 330 | 343 | { |
@@ -332,24 +345,24 @@ discard block |
||
| 332 | 345 | $context[$type] = preg_replace('~\[[/]?html\]~i', '', $context[$type]); |
| 333 | 346 | preparsecode($context[$type]); |
| 334 | 347 | $context[$type] = parse_bbc($context[$type]); |
| 348 | + } else { |
|
| 349 | + $context[$type] = nl2br($context[$type]); |
|
| 335 | 350 | } |
| 336 | - else |
|
| 337 | - $context[$type] = nl2br($context[$type]); |
|
| 338 | 351 | |
| 339 | 352 | continue; |
| 340 | 353 | } |
| 341 | 354 | // Don't show redirects. |
| 342 | - elseif ($action['type'] == 'redirect') |
|
| 343 | - continue; |
|
| 344 | - elseif ($action['type'] == 'error') |
|
| 355 | + elseif ($action['type'] == 'redirect') { |
|
| 356 | + continue; |
|
| 357 | + } elseif ($action['type'] == 'error') |
|
| 345 | 358 | { |
| 346 | 359 | $context['has_failure'] = true; |
| 347 | - if (isset($action['error_msg']) && isset($action['error_var'])) |
|
| 348 | - $context['failure_details'] = sprintf($txt['package_will_fail_' . $action['error_msg']], $action['error_var']); |
|
| 349 | - elseif (isset($action['error_msg'])) |
|
| 350 | - $context['failure_details'] = isset($txt['package_will_fail_' . $action['error_msg']]) ? $txt['package_will_fail_' . $action['error_msg']] : $action['error_msg']; |
|
| 351 | - } |
|
| 352 | - elseif ($action['type'] == 'modification') |
|
| 360 | + if (isset($action['error_msg']) && isset($action['error_var'])) { |
|
| 361 | + $context['failure_details'] = sprintf($txt['package_will_fail_' . $action['error_msg']], $action['error_var']); |
|
| 362 | + } elseif (isset($action['error_msg'])) { |
|
| 363 | + $context['failure_details'] = isset($txt['package_will_fail_' . $action['error_msg']]) ? $txt['package_will_fail_' . $action['error_msg']] : $action['error_msg']; |
|
| 364 | + } |
|
| 365 | + } elseif ($action['type'] == 'modification') |
|
| 353 | 366 | { |
| 354 | 367 | if (!file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename'])) |
| 355 | 368 | { |
@@ -361,51 +374,53 @@ discard block |
||
| 361 | 374 | 'description' => $txt['package_action_missing'], |
| 362 | 375 | 'failed' => true, |
| 363 | 376 | ); |
| 364 | - } |
|
| 365 | - else |
|
| 377 | + } else |
|
| 366 | 378 | { |
| 367 | - if ($action['boardmod']) |
|
| 368 | - $mod_actions = parseBoardMod(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), true, $action['reverse'], $theme_paths); |
|
| 369 | - else |
|
| 370 | - $mod_actions = parseModification(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), true, $action['reverse'], $theme_paths); |
|
| 379 | + if ($action['boardmod']) { |
|
| 380 | + $mod_actions = parseBoardMod(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), true, $action['reverse'], $theme_paths); |
|
| 381 | + } else { |
|
| 382 | + $mod_actions = parseModification(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), true, $action['reverse'], $theme_paths); |
|
| 383 | + } |
|
| 371 | 384 | |
| 372 | - if (count($mod_actions) == 1 && isset($mod_actions[0]) && $mod_actions[0]['type'] == 'error' && $mod_actions[0]['filename'] == '-') |
|
| 373 | - $mod_actions[0]['filename'] = $action['filename']; |
|
| 385 | + if (count($mod_actions) == 1 && isset($mod_actions[0]) && $mod_actions[0]['type'] == 'error' && $mod_actions[0]['filename'] == '-') { |
|
| 386 | + $mod_actions[0]['filename'] = $action['filename']; |
|
| 387 | + } |
|
| 374 | 388 | |
| 375 | 389 | foreach ($mod_actions as $key => $mod_action) |
| 376 | 390 | { |
| 377 | 391 | // Lets get the last section of the file name. |
| 378 | - if (isset($mod_action['filename']) && substr($mod_action['filename'], -13) != '.template.php') |
|
| 379 | - $actual_filename = strtolower(substr(strrchr($mod_action['filename'], '/'), 1) . '||' . $action['filename']); |
|
| 380 | - elseif (isset($mod_action['filename']) && preg_match('~([\w]*)/([\w]*)\.template\.php$~', $mod_action['filename'], $matches)) |
|
| 381 | - $actual_filename = strtolower($matches[1] . '/' . $matches[2] . '.template.php' . '||' . $action['filename']); |
|
| 382 | - else |
|
| 383 | - $actual_filename = $key; |
|
| 384 | - |
|
| 385 | - if ($mod_action['type'] == 'opened') |
|
| 386 | - $failed = false; |
|
| 387 | - elseif ($mod_action['type'] == 'failure') |
|
| 392 | + if (isset($mod_action['filename']) && substr($mod_action['filename'], -13) != '.template.php') { |
|
| 393 | + $actual_filename = strtolower(substr(strrchr($mod_action['filename'], '/'), 1) . '||' . $action['filename']); |
|
| 394 | + } elseif (isset($mod_action['filename']) && preg_match('~([\w]*)/([\w]*)\.template\.php$~', $mod_action['filename'], $matches)) { |
|
| 395 | + $actual_filename = strtolower($matches[1] . '/' . $matches[2] . '.template.php' . '||' . $action['filename']); |
|
| 396 | + } else { |
|
| 397 | + $actual_filename = $key; |
|
| 398 | + } |
|
| 399 | + |
|
| 400 | + if ($mod_action['type'] == 'opened') { |
|
| 401 | + $failed = false; |
|
| 402 | + } elseif ($mod_action['type'] == 'failure') |
|
| 388 | 403 | { |
| 389 | - if (empty($mod_action['is_custom'])) |
|
| 390 | - $context['has_failure'] = true; |
|
| 404 | + if (empty($mod_action['is_custom'])) { |
|
| 405 | + $context['has_failure'] = true; |
|
| 406 | + } |
|
| 391 | 407 | $failed = true; |
| 392 | - } |
|
| 393 | - elseif ($mod_action['type'] == 'chmod') |
|
| 408 | + } elseif ($mod_action['type'] == 'chmod') |
|
| 394 | 409 | { |
| 395 | 410 | $chmod_files[] = $mod_action['filename']; |
| 396 | - } |
|
| 397 | - elseif ($mod_action['type'] == 'saved') |
|
| 411 | + } elseif ($mod_action['type'] == 'saved') |
|
| 398 | 412 | { |
| 399 | 413 | if (!empty($mod_action['is_custom'])) |
| 400 | 414 | { |
| 401 | - if (!isset($context['theme_actions'][$mod_action['is_custom']])) |
|
| 402 | - $context['theme_actions'][$mod_action['is_custom']] = array( |
|
| 415 | + if (!isset($context['theme_actions'][$mod_action['is_custom']])) { |
|
| 416 | + $context['theme_actions'][$mod_action['is_custom']] = array( |
|
| 403 | 417 | 'name' => $theme_paths[$mod_action['is_custom']]['name'], |
| 404 | 418 | 'actions' => array(), |
| 405 | 419 | 'has_failure' => $failed, |
| 406 | 420 | ); |
| 407 | - else |
|
| 408 | - $context['theme_actions'][$mod_action['is_custom']]['has_failure'] |= $failed; |
|
| 421 | + } else { |
|
| 422 | + $context['theme_actions'][$mod_action['is_custom']]['has_failure'] |= $failed; |
|
| 423 | + } |
|
| 409 | 424 | |
| 410 | 425 | $context['theme_actions'][$mod_action['is_custom']]['actions'][$actual_filename] = array( |
| 411 | 426 | 'type' => $txt['execute_modification'], |
@@ -413,8 +428,7 @@ discard block |
||
| 413 | 428 | 'description' => $failed ? $txt['package_action_failure'] : $txt['package_action_success'], |
| 414 | 429 | 'failed' => $failed, |
| 415 | 430 | ); |
| 416 | - } |
|
| 417 | - elseif (!isset($context['actions'][$actual_filename])) |
|
| 431 | + } elseif (!isset($context['actions'][$actual_filename])) |
|
| 418 | 432 | { |
| 419 | 433 | $context['actions'][$actual_filename] = array( |
| 420 | 434 | 'type' => $txt['execute_modification'], |
@@ -422,22 +436,19 @@ discard block |
||
| 422 | 436 | 'description' => $failed ? $txt['package_action_failure'] : $txt['package_action_success'], |
| 423 | 437 | 'failed' => $failed, |
| 424 | 438 | ); |
| 425 | - } |
|
| 426 | - else |
|
| 439 | + } else |
|
| 427 | 440 | { |
| 428 | 441 | $context['actions'][$actual_filename]['failed'] |= $failed; |
| 429 | 442 | $context['actions'][$actual_filename]['description'] = $context['actions'][$actual_filename]['failed'] ? $txt['package_action_failure'] : $txt['package_action_success']; |
| 430 | 443 | } |
| 431 | - } |
|
| 432 | - elseif ($mod_action['type'] == 'skipping') |
|
| 444 | + } elseif ($mod_action['type'] == 'skipping') |
|
| 433 | 445 | { |
| 434 | 446 | $context['actions'][$actual_filename] = array( |
| 435 | 447 | 'type' => $txt['execute_modification'], |
| 436 | 448 | 'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))), |
| 437 | 449 | 'description' => $txt['package_action_skipping'] |
| 438 | 450 | ); |
| 439 | - } |
|
| 440 | - elseif ($mod_action['type'] == 'missing' && empty($mod_action['is_custom'])) |
|
| 451 | + } elseif ($mod_action['type'] == 'missing' && empty($mod_action['is_custom'])) |
|
| 441 | 452 | { |
| 442 | 453 | $context['has_failure'] = true; |
| 443 | 454 | $context['actions'][$actual_filename] = array( |
@@ -446,32 +457,33 @@ discard block |
||
| 446 | 457 | 'description' => $txt['package_action_missing'], |
| 447 | 458 | 'failed' => true, |
| 448 | 459 | ); |
| 449 | - } |
|
| 450 | - elseif ($mod_action['type'] == 'error') |
|
| 451 | - $context['actions'][$actual_filename] = array( |
|
| 460 | + } elseif ($mod_action['type'] == 'error') { |
|
| 461 | + $context['actions'][$actual_filename] = array( |
|
| 452 | 462 | 'type' => $txt['execute_modification'], |
| 453 | 463 | 'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))), |
| 454 | 464 | 'description' => $txt['package_action_error'], |
| 455 | 465 | 'failed' => true, |
| 456 | 466 | ); |
| 467 | + } |
|
| 457 | 468 | } |
| 458 | 469 | |
| 459 | 470 | // We need to loop again just to get the operations down correctly. |
| 460 | 471 | foreach ($mod_actions as $operation_key => $mod_action) |
| 461 | 472 | { |
| 462 | 473 | // Lets get the last section of the file name. |
| 463 | - if (isset($mod_action['filename']) && substr($mod_action['filename'], -13) != '.template.php') |
|
| 464 | - $actual_filename = strtolower(substr(strrchr($mod_action['filename'], '/'), 1) . '||' . $action['filename']); |
|
| 465 | - elseif (isset($mod_action['filename']) && preg_match('~([\w]*)/([\w]*)\.template\.php$~', $mod_action['filename'], $matches)) |
|
| 466 | - $actual_filename = strtolower($matches[1] . '/' . $matches[2] . '.template.php' . '||' . $action['filename']); |
|
| 467 | - else |
|
| 468 | - $actual_filename = $key; |
|
| 474 | + if (isset($mod_action['filename']) && substr($mod_action['filename'], -13) != '.template.php') { |
|
| 475 | + $actual_filename = strtolower(substr(strrchr($mod_action['filename'], '/'), 1) . '||' . $action['filename']); |
|
| 476 | + } elseif (isset($mod_action['filename']) && preg_match('~([\w]*)/([\w]*)\.template\.php$~', $mod_action['filename'], $matches)) { |
|
| 477 | + $actual_filename = strtolower($matches[1] . '/' . $matches[2] . '.template.php' . '||' . $action['filename']); |
|
| 478 | + } else { |
|
| 479 | + $actual_filename = $key; |
|
| 480 | + } |
|
| 469 | 481 | |
| 470 | 482 | // We just need it for actual parse changes. |
| 471 | 483 | if (!in_array($mod_action['type'], array('error', 'result', 'opened', 'saved', 'end', 'missing', 'skipping', 'chmod'))) |
| 472 | 484 | { |
| 473 | - if (empty($mod_action['is_custom'])) |
|
| 474 | - $context['actions'][$actual_filename]['operations'][] = array( |
|
| 485 | + if (empty($mod_action['is_custom'])) { |
|
| 486 | + $context['actions'][$actual_filename]['operations'][] = array( |
|
| 475 | 487 | 'type' => $txt['execute_modification'], |
| 476 | 488 | 'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))), |
| 477 | 489 | 'description' => $mod_action['failed'] ? $txt['package_action_failure'] : $txt['package_action_success'], |
@@ -482,10 +494,11 @@ discard block |
||
| 482 | 494 | 'failed' => $mod_action['failed'], |
| 483 | 495 | 'ignore_failure' => !empty($mod_action['ignore_failure']), |
| 484 | 496 | ); |
| 497 | + } |
|
| 485 | 498 | |
| 486 | 499 | // Themes are under the saved type. |
| 487 | - if (isset($mod_action['is_custom']) && isset($context['theme_actions'][$mod_action['is_custom']])) |
|
| 488 | - $context['theme_actions'][$mod_action['is_custom']]['actions'][$actual_filename]['operations'][] = array( |
|
| 500 | + if (isset($mod_action['is_custom']) && isset($context['theme_actions'][$mod_action['is_custom']])) { |
|
| 501 | + $context['theme_actions'][$mod_action['is_custom']]['actions'][$actual_filename]['operations'][] = array( |
|
| 489 | 502 | 'type' => $txt['execute_modification'], |
| 490 | 503 | 'action' => $smcFunc['htmlspecialchars'](strtr($mod_action['filename'], array($boarddir => '.'))), |
| 491 | 504 | 'description' => $mod_action['failed'] ? $txt['package_action_failure'] : $txt['package_action_success'], |
@@ -496,59 +509,55 @@ discard block |
||
| 496 | 509 | 'failed' => $mod_action['failed'], |
| 497 | 510 | 'ignore_failure' => !empty($mod_action['ignore_failure']), |
| 498 | 511 | ); |
| 512 | + } |
|
| 499 | 513 | } |
| 500 | 514 | } |
| 501 | 515 | } |
| 502 | - } |
|
| 503 | - elseif ($action['type'] == 'code') |
|
| 516 | + } elseif ($action['type'] == 'code') |
|
| 504 | 517 | { |
| 505 | 518 | $thisAction = array( |
| 506 | 519 | 'type' => $txt['execute_code'], |
| 507 | 520 | 'action' => $smcFunc['htmlspecialchars']($action['filename']), |
| 508 | 521 | ); |
| 509 | - } |
|
| 510 | - elseif ($action['type'] == 'database') |
|
| 522 | + } elseif ($action['type'] == 'database') |
|
| 511 | 523 | { |
| 512 | 524 | $thisAction = array( |
| 513 | 525 | 'type' => $txt['execute_database_changes'], |
| 514 | 526 | 'action' => $smcFunc['htmlspecialchars']($action['filename']), |
| 515 | 527 | ); |
| 516 | - } |
|
| 517 | - elseif (in_array($action['type'], array('create-dir', 'create-file'))) |
|
| 528 | + } elseif (in_array($action['type'], array('create-dir', 'create-file'))) |
|
| 518 | 529 | { |
| 519 | 530 | $thisAction = array( |
| 520 | 531 | 'type' => $txt['package_create'] . ' ' . ($action['type'] == 'create-dir' ? $txt['package_tree'] : $txt['package_file']), |
| 521 | 532 | 'action' => $smcFunc['htmlspecialchars'](strtr($action['destination'], array($boarddir => '.'))) |
| 522 | 533 | ); |
| 523 | - } |
|
| 524 | - elseif ($action['type'] == 'hook') |
|
| 534 | + } elseif ($action['type'] == 'hook') |
|
| 525 | 535 | { |
| 526 | 536 | $action['description'] = !isset($action['hook'], $action['function']) ? $txt['package_action_failure'] : $txt['package_action_success']; |
| 527 | 537 | |
| 528 | - if (!isset($action['hook'], $action['function'])) |
|
| 529 | - $context['has_failure'] = true; |
|
| 538 | + if (!isset($action['hook'], $action['function'])) { |
|
| 539 | + $context['has_failure'] = true; |
|
| 540 | + } |
|
| 530 | 541 | |
| 531 | 542 | $thisAction = array( |
| 532 | 543 | 'type' => $action['reverse'] ? $txt['execute_hook_remove'] : $txt['execute_hook_add'], |
| 533 | 544 | 'action' => sprintf($txt['execute_hook_action' . ($action['reverse'] ? '_inverse' : '')], $smcFunc['htmlspecialchars']($action['hook'])), |
| 534 | 545 | ); |
| 535 | - } |
|
| 536 | - elseif ($action['type'] == 'credits') |
|
| 546 | + } elseif ($action['type'] == 'credits') |
|
| 537 | 547 | { |
| 538 | 548 | $thisAction = array( |
| 539 | 549 | 'type' => $txt['execute_credits_add'], |
| 540 | 550 | 'action' => sprintf($txt['execute_credits_action'], $smcFunc['htmlspecialchars']($action['title'])), |
| 541 | 551 | ); |
| 542 | - } |
|
| 543 | - elseif ($action['type'] == 'requires') |
|
| 552 | + } elseif ($action['type'] == 'requires') |
|
| 544 | 553 | { |
| 545 | 554 | $installed = false; |
| 546 | 555 | $version = true; |
| 547 | 556 | |
| 548 | 557 | // package missing required values? |
| 549 | - if (!isset($action['id'])) |
|
| 550 | - $context['has_failure'] = true; |
|
| 551 | - else |
|
| 558 | + if (!isset($action['id'])) { |
|
| 559 | + $context['has_failure'] = true; |
|
| 560 | + } else |
|
| 552 | 561 | { |
| 553 | 562 | // See if this dependancy is installed |
| 554 | 563 | $request = $smcFunc['db_query']('', ' |
@@ -564,8 +573,9 @@ discard block |
||
| 564 | 573 | ) |
| 565 | 574 | ); |
| 566 | 575 | $installed = ($smcFunc['db_num_rows']($request) !== 0); |
| 567 | - if ($installed) |
|
| 568 | - list ($version) = $smcFunc['db_fetch_row']($request); |
|
| 576 | + if ($installed) { |
|
| 577 | + list ($version) = $smcFunc['db_fetch_row']($request); |
|
| 578 | + } |
|
| 569 | 579 | $smcFunc['db_free_result']($request); |
| 570 | 580 | |
| 571 | 581 | // do a version level check (if requested) in the most basic way |
@@ -580,8 +590,7 @@ discard block |
||
| 580 | 590 | 'type' => $txt['package_requires'], |
| 581 | 591 | 'action' => $txt['package_check_for'] . ' ' . $action['id'] . (isset($action['version']) ? (' / ' . ($version ? $action['version'] : '<span class="error">' . $action['version'] . '</span>')) : ''), |
| 582 | 592 | ); |
| 583 | - } |
|
| 584 | - elseif (in_array($action['type'], array('require-dir', 'require-file'))) |
|
| 593 | + } elseif (in_array($action['type'], array('require-dir', 'require-file'))) |
|
| 585 | 594 | { |
| 586 | 595 | // Do this one... |
| 587 | 596 | $thisAction = array( |
@@ -595,26 +604,29 @@ discard block |
||
| 595 | 604 | // Is the action already stated? |
| 596 | 605 | $theme_action = !empty($action['theme_action']) && in_array($action['theme_action'], array('no', 'yes', 'auto')) ? $action['theme_action'] : 'auto'; |
| 597 | 606 | // If it's not auto do we think we have something we can act upon? |
| 598 | - if ($theme_action != 'auto' && !in_array($matches[1], array('languagedir', 'languages_dir', 'imagesdir', 'themedir'))) |
|
| 599 | - $theme_action = ''; |
|
| 607 | + if ($theme_action != 'auto' && !in_array($matches[1], array('languagedir', 'languages_dir', 'imagesdir', 'themedir'))) { |
|
| 608 | + $theme_action = ''; |
|
| 609 | + } |
|
| 600 | 610 | // ... or if it's auto do we even want to do anything? |
| 601 | - elseif ($theme_action == 'auto' && $matches[1] != 'imagesdir') |
|
| 602 | - $theme_action = ''; |
|
| 611 | + elseif ($theme_action == 'auto' && $matches[1] != 'imagesdir') { |
|
| 612 | + $theme_action = ''; |
|
| 613 | + } |
|
| 603 | 614 | |
| 604 | 615 | // So, we still want to do something? |
| 605 | - if ($theme_action != '') |
|
| 606 | - $themeFinds['candidates'][] = $action; |
|
| 616 | + if ($theme_action != '') { |
|
| 617 | + $themeFinds['candidates'][] = $action; |
|
| 618 | + } |
|
| 607 | 619 | // Otherwise is this is going into another theme record it. |
| 608 | - elseif ($matches[1] == 'themes_dir') |
|
| 609 | - $themeFinds['other_themes'][] = strtolower(strtr(parse_path($action['unparsed_destination']), array('\\' => '/')) . '/' . basename($action['filename'])); |
|
| 620 | + elseif ($matches[1] == 'themes_dir') { |
|
| 621 | + $themeFinds['other_themes'][] = strtolower(strtr(parse_path($action['unparsed_destination']), array('\\' => '/')) . '/' . basename($action['filename'])); |
|
| 622 | + } |
|
| 610 | 623 | } |
| 611 | - } |
|
| 612 | - elseif (in_array($action['type'], array('move-dir', 'move-file'))) |
|
| 613 | - $thisAction = array( |
|
| 624 | + } elseif (in_array($action['type'], array('move-dir', 'move-file'))) { |
|
| 625 | + $thisAction = array( |
|
| 614 | 626 | 'type' => $txt['package_move'] . ' ' . ($action['type'] == 'move-dir' ? $txt['package_tree'] : $txt['package_file']), |
| 615 | 627 | 'action' => $smcFunc['htmlspecialchars'](strtr($action['source'], array($boarddir => '.'))) . ' => ' . $smcFunc['htmlspecialchars'](strtr($action['destination'], array($boarddir => '.'))) |
| 616 | 628 | ); |
| 617 | - elseif (in_array($action['type'], array('remove-dir', 'remove-file'))) |
|
| 629 | + } elseif (in_array($action['type'], array('remove-dir', 'remove-file'))) |
|
| 618 | 630 | { |
| 619 | 631 | $thisAction = array( |
| 620 | 632 | 'type' => $txt['package_delete'] . ' ' . ($action['type'] == 'remove-dir' ? $txt['package_tree'] : $txt['package_file']), |
@@ -629,30 +641,36 @@ discard block |
||
| 629 | 641 | $action['unparsed_destination'] = $action['unparsed_filename']; |
| 630 | 642 | |
| 631 | 643 | // If it's not auto do we think we have something we can act upon? |
| 632 | - if ($theme_action != 'auto' && !in_array($matches[1], array('languagedir', 'languages_dir', 'imagesdir', 'themedir'))) |
|
| 633 | - $theme_action = ''; |
|
| 644 | + if ($theme_action != 'auto' && !in_array($matches[1], array('languagedir', 'languages_dir', 'imagesdir', 'themedir'))) { |
|
| 645 | + $theme_action = ''; |
|
| 646 | + } |
|
| 634 | 647 | // ... or if it's auto do we even want to do anything? |
| 635 | - elseif ($theme_action == 'auto' && $matches[1] != 'imagesdir') |
|
| 636 | - $theme_action = ''; |
|
| 648 | + elseif ($theme_action == 'auto' && $matches[1] != 'imagesdir') { |
|
| 649 | + $theme_action = ''; |
|
| 650 | + } |
|
| 637 | 651 | |
| 638 | 652 | // So, we still want to do something? |
| 639 | - if ($theme_action != '') |
|
| 640 | - $themeFinds['candidates'][] = $action; |
|
| 653 | + if ($theme_action != '') { |
|
| 654 | + $themeFinds['candidates'][] = $action; |
|
| 655 | + } |
|
| 641 | 656 | // Otherwise is this is going into another theme record it. |
| 642 | - elseif ($matches[1] == 'themes_dir') |
|
| 643 | - $themeFinds['other_themes'][] = strtolower(strtr(parse_path($action['unparsed_filename']), array('\\' => '/')) . '/' . basename($action['filename'])); |
|
| 657 | + elseif ($matches[1] == 'themes_dir') { |
|
| 658 | + $themeFinds['other_themes'][] = strtolower(strtr(parse_path($action['unparsed_filename']), array('\\' => '/')) . '/' . basename($action['filename'])); |
|
| 659 | + } |
|
| 644 | 660 | } |
| 645 | 661 | } |
| 646 | 662 | |
| 647 | - if (empty($thisAction)) |
|
| 648 | - continue; |
|
| 663 | + if (empty($thisAction)) { |
|
| 664 | + continue; |
|
| 665 | + } |
|
| 649 | 666 | |
| 650 | 667 | if (!in_array($action['type'], array('hook', 'credits'))) |
| 651 | 668 | { |
| 652 | - if ($context['uninstalling']) |
|
| 653 | - $file = in_array($action['type'], array('remove-dir', 'remove-file')) ? $action['filename'] : $packagesdir . '/temp/' . $context['base_path'] . $action['filename']; |
|
| 654 | - else |
|
| 655 | - $file = $packagesdir . '/temp/' . $context['base_path'] . $action['filename']; |
|
| 669 | + if ($context['uninstalling']) { |
|
| 670 | + $file = in_array($action['type'], array('remove-dir', 'remove-file')) ? $action['filename'] : $packagesdir . '/temp/' . $context['base_path'] . $action['filename']; |
|
| 671 | + } else { |
|
| 672 | + $file = $packagesdir . '/temp/' . $context['base_path'] . $action['filename']; |
|
| 673 | + } |
|
| 656 | 674 | } |
| 657 | 675 | |
| 658 | 676 | // Don't fail if a file/directory we're trying to create doesn't exist... |
@@ -667,8 +685,9 @@ discard block |
||
| 667 | 685 | } |
| 668 | 686 | |
| 669 | 687 | // @todo None given? |
| 670 | - if (empty($thisAction['description'])) |
|
| 671 | - $thisAction['description'] = isset($action['description']) ? $action['description'] : ''; |
|
| 688 | + if (empty($thisAction['description'])) { |
|
| 689 | + $thisAction['description'] = isset($action['description']) ? $action['description'] : ''; |
|
| 690 | + } |
|
| 672 | 691 | |
| 673 | 692 | $context['actions'][] = $thisAction; |
| 674 | 693 | } |
@@ -681,18 +700,21 @@ discard block |
||
| 681 | 700 | // Get the part of the file we'll be dealing with. |
| 682 | 701 | preg_match('~^\$(languagedir|languages_dir|imagesdir|themedir)(\\|/)*(.+)*~i', $action_data['unparsed_destination'], $matches); |
| 683 | 702 | |
| 684 | - if ($matches[1] == 'imagesdir') |
|
| 685 | - $path = '/' . basename($settings['default_images_url']); |
|
| 686 | - elseif ($matches[1] == 'languagedir' || $matches[1] == 'languages_dir') |
|
| 687 | - $path = '/languages'; |
|
| 688 | - else |
|
| 689 | - $path = ''; |
|
| 703 | + if ($matches[1] == 'imagesdir') { |
|
| 704 | + $path = '/' . basename($settings['default_images_url']); |
|
| 705 | + } elseif ($matches[1] == 'languagedir' || $matches[1] == 'languages_dir') { |
|
| 706 | + $path = '/languages'; |
|
| 707 | + } else { |
|
| 708 | + $path = ''; |
|
| 709 | + } |
|
| 690 | 710 | |
| 691 | - if (!empty($matches[3])) |
|
| 692 | - $path .= $matches[3]; |
|
| 711 | + if (!empty($matches[3])) { |
|
| 712 | + $path .= $matches[3]; |
|
| 713 | + } |
|
| 693 | 714 | |
| 694 | - if (!$context['uninstalling']) |
|
| 695 | - $path .= '/' . basename($action_data['filename']); |
|
| 715 | + if (!$context['uninstalling']) { |
|
| 716 | + $path .= '/' . basename($action_data['filename']); |
|
| 717 | + } |
|
| 696 | 718 | |
| 697 | 719 | // Loop through each custom theme to note it's candidacy! |
| 698 | 720 | foreach ($theme_paths as $id => $theme_data) |
@@ -708,36 +730,40 @@ discard block |
||
| 708 | 730 | if (!mktree(dirname($real_path), false)) |
| 709 | 731 | { |
| 710 | 732 | $temp = dirname($real_path); |
| 711 | - while (!file_exists($temp) && strlen($temp) > 1) |
|
| 712 | - $temp = dirname($temp); |
|
| 733 | + while (!file_exists($temp) && strlen($temp) > 1) { |
|
| 734 | + $temp = dirname($temp); |
|
| 735 | + } |
|
| 713 | 736 | $chmod_files[] = $temp; |
| 714 | 737 | } |
| 715 | 738 | |
| 716 | - if ($action_data['type'] == 'require-dir' && !is_writable($real_path) && (file_exists($real_path) || !is_writable(dirname($real_path)))) |
|
| 717 | - $chmod_files[] = $real_path; |
|
| 739 | + if ($action_data['type'] == 'require-dir' && !is_writable($real_path) && (file_exists($real_path) || !is_writable(dirname($real_path)))) { |
|
| 740 | + $chmod_files[] = $real_path; |
|
| 741 | + } |
|
| 718 | 742 | |
| 719 | - if (!isset($context['theme_actions'][$id])) |
|
| 720 | - $context['theme_actions'][$id] = array( |
|
| 743 | + if (!isset($context['theme_actions'][$id])) { |
|
| 744 | + $context['theme_actions'][$id] = array( |
|
| 721 | 745 | 'name' => $theme_data['name'], |
| 722 | 746 | 'actions' => array(), |
| 723 | 747 | ); |
| 748 | + } |
|
| 724 | 749 | |
| 725 | - if ($context['uninstalling']) |
|
| 726 | - $context['theme_actions'][$id]['actions'][] = array( |
|
| 750 | + if ($context['uninstalling']) { |
|
| 751 | + $context['theme_actions'][$id]['actions'][] = array( |
|
| 727 | 752 | 'type' => $txt['package_delete'] . ' ' . ($action_data['type'] == 'require-dir' ? $txt['package_tree'] : $txt['package_file']), |
| 728 | 753 | 'action' => strtr($real_path, array('\\' => '/', $boarddir => '.')), |
| 729 | 754 | 'description' => '', |
| 730 | 755 | 'value' => base64_encode($smcFunc['json_encode'](array('type' => $action_data['type'], 'orig' => $action_data['filename'], 'future' => $real_path, 'id' => $id))), |
| 731 | 756 | 'not_mod' => true, |
| 732 | 757 | ); |
| 733 | - else |
|
| 734 | - $context['theme_actions'][$id]['actions'][] = array( |
|
| 758 | + } else { |
|
| 759 | + $context['theme_actions'][$id]['actions'][] = array( |
|
| 735 | 760 | 'type' => $txt['package_extract'] . ' ' . ($action_data['type'] == 'require-dir' ? $txt['package_tree'] : $txt['package_file']), |
| 736 | 761 | 'action' => strtr($real_path, array('\\' => '/', $boarddir => '.')), |
| 737 | 762 | 'description' => '', |
| 738 | 763 | 'value' => base64_encode($smcFunc['json_encode'](array('type' => $action_data['type'], 'orig' => $action_data['destination'], 'future' => $real_path, 'id' => $id))), |
| 739 | 764 | 'not_mod' => true, |
| 740 | 765 | ); |
| 766 | + } |
|
| 741 | 767 | } |
| 742 | 768 | } |
| 743 | 769 | } |
@@ -747,8 +773,9 @@ discard block |
||
| 747 | 773 | // Trash the cache... which will also check permissions for us! |
| 748 | 774 | package_flush_cache(true); |
| 749 | 775 | |
| 750 | - if (file_exists($packagesdir . '/temp')) |
|
| 751 | - deltree($packagesdir . '/temp'); |
|
| 776 | + if (file_exists($packagesdir . '/temp')) { |
|
| 777 | + deltree($packagesdir . '/temp'); |
|
| 778 | + } |
|
| 752 | 779 | |
| 753 | 780 | if (!empty($chmod_files)) |
| 754 | 781 | { |
@@ -773,8 +800,9 @@ discard block |
||
| 773 | 800 | checkSession(); |
| 774 | 801 | |
| 775 | 802 | // If there's no file, what are we installing? |
| 776 | - if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '') |
|
| 777 | - redirectexit('action=admin;area=packages'); |
|
| 803 | + if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '') { |
|
| 804 | + redirectexit('action=admin;area=packages'); |
|
| 805 | + } |
|
| 778 | 806 | $context['filename'] = $_REQUEST['package']; |
| 779 | 807 | |
| 780 | 808 | // If this is an uninstall, we'll have an id. |
@@ -795,51 +823,55 @@ discard block |
||
| 795 | 823 | |
| 796 | 824 | $context['sub_template'] = 'extract_package'; |
| 797 | 825 | |
| 798 | - if (!file_exists($packagesdir . '/' . $context['filename'])) |
|
| 799 | - fatal_lang_error('package_no_file', false); |
|
| 826 | + if (!file_exists($packagesdir . '/' . $context['filename'])) { |
|
| 827 | + fatal_lang_error('package_no_file', false); |
|
| 828 | + } |
|
| 800 | 829 | |
| 801 | 830 | // Load up the package FTP information? |
| 802 | 831 | create_chmod_control(array(), array('destination_url' => $scripturl . '?action=admin;area=packages;sa=' . $_REQUEST['sa'] . ';package=' . $_REQUEST['package'])); |
| 803 | 832 | |
| 804 | 833 | // Make sure temp directory exists and is empty! |
| 805 | - if (file_exists($packagesdir . '/temp')) |
|
| 806 | - deltree($packagesdir . '/temp', false); |
|
| 807 | - else |
|
| 808 | - mktree($packagesdir . '/temp', 0777); |
|
| 834 | + if (file_exists($packagesdir . '/temp')) { |
|
| 835 | + deltree($packagesdir . '/temp', false); |
|
| 836 | + } else { |
|
| 837 | + mktree($packagesdir . '/temp', 0777); |
|
| 838 | + } |
|
| 809 | 839 | |
| 810 | 840 | // Let the unpacker do the work. |
| 811 | 841 | if (is_file($packagesdir . '/' . $context['filename'])) |
| 812 | 842 | { |
| 813 | 843 | $context['extracted_files'] = read_tgz_file($packagesdir . '/' . $context['filename'], $packagesdir . '/temp'); |
| 814 | 844 | |
| 815 | - if (!file_exists($packagesdir . '/temp/package-info.xml')) |
|
| 816 | - foreach ($context['extracted_files'] as $file) |
|
| 845 | + if (!file_exists($packagesdir . '/temp/package-info.xml')) { |
|
| 846 | + foreach ($context['extracted_files'] as $file) |
|
| 817 | 847 | if (basename($file['filename']) == 'package-info.xml') |
| 818 | 848 | { |
| 819 | 849 | $context['base_path'] = dirname($file['filename']) . '/'; |
| 850 | + } |
|
| 820 | 851 | break; |
| 821 | 852 | } |
| 822 | 853 | |
| 823 | - if (!isset($context['base_path'])) |
|
| 824 | - $context['base_path'] = ''; |
|
| 825 | - } |
|
| 826 | - elseif (is_dir($packagesdir . '/' . $context['filename'])) |
|
| 854 | + if (!isset($context['base_path'])) { |
|
| 855 | + $context['base_path'] = ''; |
|
| 856 | + } |
|
| 857 | + } elseif (is_dir($packagesdir . '/' . $context['filename'])) |
|
| 827 | 858 | { |
| 828 | 859 | copytree($packagesdir . '/' . $context['filename'], $packagesdir . '/temp'); |
| 829 | 860 | $context['extracted_files'] = listtree($packagesdir . '/temp'); |
| 830 | 861 | $context['base_path'] = ''; |
| 862 | + } else { |
|
| 863 | + fatal_lang_error('no_access', false); |
|
| 831 | 864 | } |
| 832 | - else |
|
| 833 | - fatal_lang_error('no_access', false); |
|
| 834 | 865 | |
| 835 | 866 | // Are we installing this into any custom themes? |
| 836 | 867 | $custom_themes = array(1); |
| 837 | 868 | $known_themes = explode(',', $modSettings['knownThemes']); |
| 838 | 869 | if (!empty($_POST['custom_theme'])) |
| 839 | 870 | { |
| 840 | - foreach ($_POST['custom_theme'] as $tid) |
|
| 841 | - if (in_array($tid, $known_themes)) |
|
| 871 | + foreach ($_POST['custom_theme'] as $tid) { |
|
| 872 | + if (in_array($tid, $known_themes)) |
|
| 842 | 873 | $custom_themes[] = (int) $tid; |
| 874 | + } |
|
| 843 | 875 | } |
| 844 | 876 | |
| 845 | 877 | // Now load up the paths of the themes that we need to know about. |
@@ -856,8 +888,9 @@ discard block |
||
| 856 | 888 | ); |
| 857 | 889 | $theme_paths = array(); |
| 858 | 890 | $themes_installed = array(1); |
| 859 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 860 | - $theme_paths[$row['id_theme']][$row['variable']] = $row['value']; |
|
| 891 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 892 | + $theme_paths[$row['id_theme']][$row['variable']] = $row['value']; |
|
| 893 | + } |
|
| 861 | 894 | $smcFunc['db_free_result']($request); |
| 862 | 895 | |
| 863 | 896 | // Are there any theme copying that we want to take place? |
@@ -869,11 +902,13 @@ discard block |
||
| 869 | 902 | { |
| 870 | 903 | foreach ($_POST['theme_changes'] as $change) |
| 871 | 904 | { |
| 872 | - if (empty($change)) |
|
| 873 | - continue; |
|
| 905 | + if (empty($change)) { |
|
| 906 | + continue; |
|
| 907 | + } |
|
| 874 | 908 | $theme_data = $smcFunc['json_decode'](base64_decode($change), true); |
| 875 | - if (empty($theme_data['type'])) |
|
| 876 | - continue; |
|
| 909 | + if (empty($theme_data['type'])) { |
|
| 910 | + continue; |
|
| 911 | + } |
|
| 877 | 912 | |
| 878 | 913 | $themes_installed[] = $theme_data['id']; |
| 879 | 914 | $context['theme_copies'][$theme_data['type']][$theme_data['orig']][] = $theme_data['future']; |
@@ -882,8 +917,9 @@ discard block |
||
| 882 | 917 | |
| 883 | 918 | // Get the package info... |
| 884 | 919 | $packageInfo = getPackageInfo($context['filename']); |
| 885 | - if (!is_array($packageInfo)) |
|
| 886 | - fatal_lang_error($packageInfo); |
|
| 920 | + if (!is_array($packageInfo)) { |
|
| 921 | + fatal_lang_error($packageInfo); |
|
| 922 | + } |
|
| 887 | 923 | |
| 888 | 924 | $packageInfo['filename'] = $context['filename']; |
| 889 | 925 | |
@@ -895,8 +931,9 @@ discard block |
||
| 895 | 931 | { |
| 896 | 932 | $_SESSION['last_backup_for'] = $context['filename'] . ($context['uninstalling'] ? '$$' : '$'); |
| 897 | 933 | $result = package_create_backup(($context['uninstalling'] ? 'backup_' : 'before_') . strtok($context['filename'], '.')); |
| 898 | - if (!$result) |
|
| 899 | - fatal_lang_error('could_not_package_backup', false); |
|
| 934 | + if (!$result) { |
|
| 935 | + fatal_lang_error('could_not_package_backup', false); |
|
| 936 | + } |
|
| 900 | 937 | } |
| 901 | 938 | |
| 902 | 939 | // The mod isn't installed.... unless proven otherwise. |
@@ -936,35 +973,38 @@ discard block |
||
| 936 | 973 | $install_log = parsePackageInfo($packageInfo['xml'], false, 'uninstall'); |
| 937 | 974 | |
| 938 | 975 | // Gadzooks! There's no uninstaller at all!? |
| 939 | - if (empty($install_log)) |
|
| 940 | - fatal_lang_error('package_uninstall_cannot', false); |
|
| 976 | + if (empty($install_log)) { |
|
| 977 | + fatal_lang_error('package_uninstall_cannot', false); |
|
| 978 | + } |
|
| 941 | 979 | |
| 942 | 980 | // They can only uninstall from what it was originally installed into. |
| 943 | - foreach ($theme_paths as $id => $data) |
|
| 944 | - if ($id != 1 && !in_array($id, $old_themes)) |
|
| 981 | + foreach ($theme_paths as $id => $data) { |
|
| 982 | + if ($id != 1 && !in_array($id, $old_themes)) |
|
| 945 | 983 | unset($theme_paths[$id]); |
| 946 | - } |
|
| 947 | - elseif (isset($old_version) && $old_version != $packageInfo['version']) |
|
| 984 | + } |
|
| 985 | + } elseif (isset($old_version) && $old_version != $packageInfo['version']) |
|
| 948 | 986 | { |
| 949 | 987 | // Look for an upgrade... |
| 950 | 988 | $install_log = parsePackageInfo($packageInfo['xml'], false, 'upgrade', $old_version); |
| 951 | 989 | |
| 952 | 990 | // There was no upgrade.... |
| 953 | - if (empty($install_log)) |
|
| 954 | - $context['is_installed'] = true; |
|
| 955 | - else |
|
| 991 | + if (empty($install_log)) { |
|
| 992 | + $context['is_installed'] = true; |
|
| 993 | + } else |
|
| 956 | 994 | { |
| 957 | 995 | // Upgrade previous themes only! |
| 958 | - foreach ($theme_paths as $id => $data) |
|
| 959 | - if ($id != 1 && !in_array($id, $old_themes)) |
|
| 996 | + foreach ($theme_paths as $id => $data) { |
|
| 997 | + if ($id != 1 && !in_array($id, $old_themes)) |
|
| 960 | 998 | unset($theme_paths[$id]); |
| 999 | + } |
|
| 961 | 1000 | } |
| 1001 | + } elseif (isset($old_version) && $old_version == $packageInfo['version']) { |
|
| 1002 | + $context['is_installed'] = true; |
|
| 962 | 1003 | } |
| 963 | - elseif (isset($old_version) && $old_version == $packageInfo['version']) |
|
| 964 | - $context['is_installed'] = true; |
|
| 965 | 1004 | |
| 966 | - if (!isset($old_version) || $context['is_installed']) |
|
| 967 | - $install_log = parsePackageInfo($packageInfo['xml'], false, 'install'); |
|
| 1005 | + if (!isset($old_version) || $context['is_installed']) { |
|
| 1006 | + $install_log = parsePackageInfo($packageInfo['xml'], false, 'install'); |
|
| 1007 | + } |
|
| 968 | 1008 | |
| 969 | 1009 | $context['install_finished'] = false; |
| 970 | 1010 | |
@@ -981,37 +1021,39 @@ discard block |
||
| 981 | 1021 | |
| 982 | 1022 | if ($action['type'] == 'modification' && !empty($action['filename'])) |
| 983 | 1023 | { |
| 984 | - if ($action['boardmod']) |
|
| 985 | - $mod_actions = parseBoardMod(file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), false, $action['reverse'], $theme_paths); |
|
| 986 | - else |
|
| 987 | - $mod_actions = parseModification(file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), false, $action['reverse'], $theme_paths); |
|
| 1024 | + if ($action['boardmod']) { |
|
| 1025 | + $mod_actions = parseBoardMod(file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), false, $action['reverse'], $theme_paths); |
|
| 1026 | + } else { |
|
| 1027 | + $mod_actions = parseModification(file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $action['filename']), false, $action['reverse'], $theme_paths); |
|
| 1028 | + } |
|
| 988 | 1029 | |
| 989 | 1030 | // Any errors worth noting? |
| 990 | 1031 | foreach ($mod_actions as $key => $modAction) |
| 991 | 1032 | { |
| 992 | - if ($modAction['type'] == 'failure') |
|
| 993 | - $failed_steps[] = array( |
|
| 1033 | + if ($modAction['type'] == 'failure') { |
|
| 1034 | + $failed_steps[] = array( |
|
| 994 | 1035 | 'file' => $modAction['filename'], |
| 995 | 1036 | 'large_step' => $failed_count, |
| 996 | 1037 | 'sub_step' => $key, |
| 997 | 1038 | 'theme' => 1, |
| 998 | 1039 | ); |
| 1040 | + } |
|
| 999 | 1041 | |
| 1000 | 1042 | // Gather the themes we installed into. |
| 1001 | - if (!empty($modAction['is_custom'])) |
|
| 1002 | - $themes_installed[] = $modAction['is_custom']; |
|
| 1043 | + if (!empty($modAction['is_custom'])) { |
|
| 1044 | + $themes_installed[] = $modAction['is_custom']; |
|
| 1045 | + } |
|
| 1003 | 1046 | } |
| 1004 | - } |
|
| 1005 | - elseif ($action['type'] == 'code' && !empty($action['filename'])) |
|
| 1047 | + } elseif ($action['type'] == 'code' && !empty($action['filename'])) |
|
| 1006 | 1048 | { |
| 1007 | 1049 | // This is just here as reference for what is available. |
| 1008 | 1050 | global $txt, $boarddir, $sourcedir, $modSettings, $context, $settings, $forum_version, $smcFunc; |
| 1009 | 1051 | |
| 1010 | 1052 | // Now include the file and be done with it ;). |
| 1011 | - if (file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename'])) |
|
| 1012 | - require($packagesdir . '/temp/' . $context['base_path'] . $action['filename']); |
|
| 1013 | - } |
|
| 1014 | - elseif ($action['type'] == 'credits') |
|
| 1053 | + if (file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename'])) { |
|
| 1054 | + require($packagesdir . '/temp/' . $context['base_path'] . $action['filename']); |
|
| 1055 | + } |
|
| 1056 | + } elseif ($action['type'] == 'credits') |
|
| 1015 | 1057 | { |
| 1016 | 1058 | // Time to build the billboard |
| 1017 | 1059 | $credits_tag = array( |
@@ -1021,13 +1063,13 @@ discard block |
||
| 1021 | 1063 | 'copyright' => $action['copyright'], |
| 1022 | 1064 | 'title' => $action['title'], |
| 1023 | 1065 | ); |
| 1024 | - } |
|
| 1025 | - elseif ($action['type'] == 'hook' && isset($action['hook'], $action['function'])) |
|
| 1066 | + } elseif ($action['type'] == 'hook' && isset($action['hook'], $action['function'])) |
|
| 1026 | 1067 | { |
| 1027 | - if ($action['reverse']) |
|
| 1028 | - remove_integration_function($action['hook'], $action['function'], true, $action['include_file'], $action['object']); |
|
| 1029 | - else |
|
| 1030 | - add_integration_function($action['hook'], $action['function'], true, $action['include_file'], $action['object']); |
|
| 1068 | + if ($action['reverse']) { |
|
| 1069 | + remove_integration_function($action['hook'], $action['function'], true, $action['include_file'], $action['object']); |
|
| 1070 | + } else { |
|
| 1071 | + add_integration_function($action['hook'], $action['function'], true, $action['include_file'], $action['object']); |
|
| 1072 | + } |
|
| 1031 | 1073 | } |
| 1032 | 1074 | // Only do the database changes on uninstall if requested. |
| 1033 | 1075 | elseif ($action['type'] == 'database' && !empty($action['filename']) && (!$context['uninstalling'] || !empty($_POST['do_db_changes']))) |
@@ -1040,8 +1082,9 @@ discard block |
||
| 1040 | 1082 | db_extend('packages'); |
| 1041 | 1083 | |
| 1042 | 1084 | // Let the file work its magic ;) |
| 1043 | - if (file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename'])) |
|
| 1044 | - require($packagesdir . '/temp/' . $context['base_path'] . $action['filename']); |
|
| 1085 | + if (file_exists($packagesdir . '/temp/' . $context['base_path'] . $action['filename'])) { |
|
| 1086 | + require($packagesdir . '/temp/' . $context['base_path'] . $action['filename']); |
|
| 1087 | + } |
|
| 1045 | 1088 | } |
| 1046 | 1089 | // Handle a redirect... |
| 1047 | 1090 | elseif ($action['type'] == 'redirect' && !empty($action['redirect_url'])) |
@@ -1123,8 +1166,9 @@ discard block |
||
| 1123 | 1166 | reloadSettings(); |
| 1124 | 1167 | |
| 1125 | 1168 | // Any db changes from older version? |
| 1126 | - if (!empty($old_db_changes)) |
|
| 1127 | - $db_package_log = empty($db_package_log) ? $old_db_changes : array_merge($old_db_changes, $db_package_log); |
|
| 1169 | + if (!empty($old_db_changes)) { |
|
| 1170 | + $db_package_log = empty($db_package_log) ? $old_db_changes : array_merge($old_db_changes, $db_package_log); |
|
| 1171 | + } |
|
| 1128 | 1172 | |
| 1129 | 1173 | // If there are some database changes we might want to remove then filter them out. |
| 1130 | 1174 | if (!empty($db_package_log)) |
@@ -1140,22 +1184,24 @@ discard block |
||
| 1140 | 1184 | */ |
| 1141 | 1185 | function sort_table_first($a, $b) |
| 1142 | 1186 | { |
| 1143 | - if ($a[0] == $b[0]) |
|
| 1144 | - return 0; |
|
| 1187 | + if ($a[0] == $b[0]) { |
|
| 1188 | + return 0; |
|
| 1189 | + } |
|
| 1145 | 1190 | return $a[0] == 'remove_table' ? -1 : 1; |
| 1146 | 1191 | } |
| 1147 | 1192 | usort($db_package_log, 'sort_table_first'); |
| 1148 | 1193 | foreach ($db_package_log as $k => $log) |
| 1149 | 1194 | { |
| 1150 | - if ($log[0] == 'remove_table') |
|
| 1151 | - $tables[] = $log[1]; |
|
| 1152 | - elseif (in_array($log[1], $tables)) |
|
| 1153 | - unset($db_package_log[$k]); |
|
| 1195 | + if ($log[0] == 'remove_table') { |
|
| 1196 | + $tables[] = $log[1]; |
|
| 1197 | + } elseif (in_array($log[1], $tables)) { |
|
| 1198 | + unset($db_package_log[$k]); |
|
| 1199 | + } |
|
| 1154 | 1200 | } |
| 1155 | 1201 | $db_changes = $smcFunc['json_encode']($db_package_log); |
| 1202 | + } else { |
|
| 1203 | + $db_changes = ''; |
|
| 1156 | 1204 | } |
| 1157 | - else |
|
| 1158 | - $db_changes = ''; |
|
| 1159 | 1205 | |
| 1160 | 1206 | // What themes did we actually install? |
| 1161 | 1207 | $themes_installed = array_unique($themes_installed); |
@@ -1204,18 +1250,20 @@ discard block |
||
| 1204 | 1250 | |
| 1205 | 1251 | foreach ($db_changes as $change) |
| 1206 | 1252 | { |
| 1207 | - if ($change[0] == 'remove_table' && isset($change[1])) |
|
| 1208 | - $smcFunc['db_drop_table']($change[1]); |
|
| 1209 | - elseif ($change[0] == 'remove_column' && isset($change[2])) |
|
| 1210 | - $smcFunc['db_remove_column']($change[1], $change[2]); |
|
| 1211 | - elseif ($change[0] == 'remove_index' && isset($change[2])) |
|
| 1212 | - $smcFunc['db_remove_index']($change[1], $change[2]); |
|
| 1253 | + if ($change[0] == 'remove_table' && isset($change[1])) { |
|
| 1254 | + $smcFunc['db_drop_table']($change[1]); |
|
| 1255 | + } elseif ($change[0] == 'remove_column' && isset($change[2])) { |
|
| 1256 | + $smcFunc['db_remove_column']($change[1], $change[2]); |
|
| 1257 | + } elseif ($change[0] == 'remove_index' && isset($change[2])) { |
|
| 1258 | + $smcFunc['db_remove_index']($change[1], $change[2]); |
|
| 1259 | + } |
|
| 1213 | 1260 | } |
| 1214 | 1261 | } |
| 1215 | 1262 | |
| 1216 | 1263 | // Clean house... get rid of the evidence ;). |
| 1217 | - if (file_exists($packagesdir . '/temp')) |
|
| 1218 | - deltree($packagesdir . '/temp'); |
|
| 1264 | + if (file_exists($packagesdir . '/temp')) { |
|
| 1265 | + deltree($packagesdir . '/temp'); |
|
| 1266 | + } |
|
| 1219 | 1267 | |
| 1220 | 1268 | // Log what we just did. |
| 1221 | 1269 | logAction($context['uninstalling'] ? 'uninstall_package' : (!empty($is_upgrade) ? 'upgrade_package' : 'install_package'), array('package' => $smcFunc['htmlspecialchars']($packageInfo['name']), 'version' => $smcFunc['htmlspecialchars']($packageInfo['version'])), 'admin'); |
@@ -1238,8 +1286,9 @@ discard block |
||
| 1238 | 1286 | require_once($sourcedir . '/Subs-Package.php'); |
| 1239 | 1287 | |
| 1240 | 1288 | // No package? Show him or her the door. |
| 1241 | - if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '') |
|
| 1242 | - redirectexit('action=admin;area=packages'); |
|
| 1289 | + if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '') { |
|
| 1290 | + redirectexit('action=admin;area=packages'); |
|
| 1291 | + } |
|
| 1243 | 1292 | |
| 1244 | 1293 | $context['linktree'][] = array( |
| 1245 | 1294 | 'url' => $scripturl . '?action=admin;area=packages;sa=list;package=' . $_REQUEST['package'], |
@@ -1252,11 +1301,12 @@ discard block |
||
| 1252 | 1301 | $context['filename'] = $_REQUEST['package']; |
| 1253 | 1302 | |
| 1254 | 1303 | // Let the unpacker do the work. |
| 1255 | - if (is_file($packagesdir . '/' . $context['filename'])) |
|
| 1256 | - $context['files'] = read_tgz_file($packagesdir . '/' . $context['filename'], null); |
|
| 1257 | - elseif (is_dir($packagesdir . '/' . $context['filename'])) |
|
| 1258 | - $context['files'] = listtree($packagesdir . '/' . $context['filename']); |
|
| 1259 | -} |
|
| 1304 | + if (is_file($packagesdir . '/' . $context['filename'])) { |
|
| 1305 | + $context['files'] = read_tgz_file($packagesdir . '/' . $context['filename'], null); |
|
| 1306 | + } elseif (is_dir($packagesdir . '/' . $context['filename'])) { |
|
| 1307 | + $context['files'] = listtree($packagesdir . '/' . $context['filename']); |
|
| 1308 | + } |
|
| 1309 | + } |
|
| 1260 | 1310 | |
| 1261 | 1311 | /** |
| 1262 | 1312 | * Display one of the files in a package. |
@@ -1268,22 +1318,25 @@ discard block |
||
| 1268 | 1318 | require_once($sourcedir . '/Subs-Package.php'); |
| 1269 | 1319 | |
| 1270 | 1320 | // No package? Show him or her the door. |
| 1271 | - if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '') |
|
| 1272 | - redirectexit('action=admin;area=packages'); |
|
| 1321 | + if (!isset($_REQUEST['package']) || $_REQUEST['package'] == '') { |
|
| 1322 | + redirectexit('action=admin;area=packages'); |
|
| 1323 | + } |
|
| 1273 | 1324 | |
| 1274 | 1325 | // No file? Show him or her the door. |
| 1275 | - if (!isset($_REQUEST['file']) || $_REQUEST['file'] == '') |
|
| 1276 | - redirectexit('action=admin;area=packages'); |
|
| 1326 | + if (!isset($_REQUEST['file']) || $_REQUEST['file'] == '') { |
|
| 1327 | + redirectexit('action=admin;area=packages'); |
|
| 1328 | + } |
|
| 1277 | 1329 | |
| 1278 | 1330 | $_REQUEST['package'] = preg_replace('~[\.]+~', '.', strtr($_REQUEST['package'], array('/' => '_', '\\' => '_'))); |
| 1279 | 1331 | $_REQUEST['file'] = preg_replace('~[\.]+~', '.', $_REQUEST['file']); |
| 1280 | 1332 | |
| 1281 | 1333 | if (isset($_REQUEST['raw'])) |
| 1282 | 1334 | { |
| 1283 | - if (is_file($packagesdir . '/' . $_REQUEST['package'])) |
|
| 1284 | - echo read_tgz_file($packagesdir . '/' . $_REQUEST['package'], $_REQUEST['file'], true); |
|
| 1285 | - elseif (is_dir($packagesdir . '/' . $_REQUEST['package'])) |
|
| 1286 | - echo file_get_contents($packagesdir . '/' . $_REQUEST['package'] . '/' . $_REQUEST['file']); |
|
| 1335 | + if (is_file($packagesdir . '/' . $_REQUEST['package'])) { |
|
| 1336 | + echo read_tgz_file($packagesdir . '/' . $_REQUEST['package'], $_REQUEST['file'], true); |
|
| 1337 | + } elseif (is_dir($packagesdir . '/' . $_REQUEST['package'])) { |
|
| 1338 | + echo file_get_contents($packagesdir . '/' . $_REQUEST['package'] . '/' . $_REQUEST['file']); |
|
| 1339 | + } |
|
| 1287 | 1340 | |
| 1288 | 1341 | obExit(false); |
| 1289 | 1342 | } |
@@ -1300,17 +1353,19 @@ discard block |
||
| 1300 | 1353 | $context['filename'] = $_REQUEST['file']; |
| 1301 | 1354 | |
| 1302 | 1355 | // Let the unpacker do the work.... but make sure we handle images properly. |
| 1303 | - if (in_array(strtolower(strrchr($_REQUEST['file'], '.')), array('.bmp', '.gif', '.jpeg', '.jpg', '.png'))) |
|
| 1304 | - $context['filedata'] = '<img src="' . $scripturl . '?action=admin;area=packages;sa=examine;package=' . $_REQUEST['package'] . ';file=' . $_REQUEST['file'] . ';raw" alt="' . $_REQUEST['file'] . '">'; |
|
| 1305 | - else |
|
| 1356 | + if (in_array(strtolower(strrchr($_REQUEST['file'], '.')), array('.bmp', '.gif', '.jpeg', '.jpg', '.png'))) { |
|
| 1357 | + $context['filedata'] = '<img src="' . $scripturl . '?action=admin;area=packages;sa=examine;package=' . $_REQUEST['package'] . ';file=' . $_REQUEST['file'] . ';raw" alt="' . $_REQUEST['file'] . '">'; |
|
| 1358 | + } else |
|
| 1306 | 1359 | { |
| 1307 | - if (is_file($packagesdir . '/' . $_REQUEST['package'])) |
|
| 1308 | - $context['filedata'] = $smcFunc['htmlspecialchars'](read_tgz_file($packagesdir . '/' . $_REQUEST['package'], $_REQUEST['file'], true)); |
|
| 1309 | - elseif (is_dir($packagesdir . '/' . $_REQUEST['package'])) |
|
| 1310 | - $context['filedata'] = $smcFunc['htmlspecialchars'](file_get_contents($packagesdir . '/' . $_REQUEST['package'] . '/' . $_REQUEST['file'])); |
|
| 1360 | + if (is_file($packagesdir . '/' . $_REQUEST['package'])) { |
|
| 1361 | + $context['filedata'] = $smcFunc['htmlspecialchars'](read_tgz_file($packagesdir . '/' . $_REQUEST['package'], $_REQUEST['file'], true)); |
|
| 1362 | + } elseif (is_dir($packagesdir . '/' . $_REQUEST['package'])) { |
|
| 1363 | + $context['filedata'] = $smcFunc['htmlspecialchars'](file_get_contents($packagesdir . '/' . $_REQUEST['package'] . '/' . $_REQUEST['file'])); |
|
| 1364 | + } |
|
| 1311 | 1365 | |
| 1312 | - if (strtolower(strrchr($_REQUEST['file'], '.')) == '.php') |
|
| 1313 | - $context['filedata'] = highlight_php_code($context['filedata']); |
|
| 1366 | + if (strtolower(strrchr($_REQUEST['file'], '.')) == '.php') { |
|
| 1367 | + $context['filedata'] = highlight_php_code($context['filedata']); |
|
| 1368 | + } |
|
| 1314 | 1369 | } |
| 1315 | 1370 | } |
| 1316 | 1371 | |
@@ -1325,8 +1380,9 @@ discard block |
||
| 1325 | 1380 | checkSession('get'); |
| 1326 | 1381 | |
| 1327 | 1382 | // Ack, don't allow deletion of arbitrary files here, could become a security hole somehow! |
| 1328 | - if (!isset($_GET['package']) || $_GET['package'] == 'index.php' || $_GET['package'] == 'backups') |
|
| 1329 | - redirectexit('action=admin;area=packages;sa=browse'); |
|
| 1383 | + if (!isset($_GET['package']) || $_GET['package'] == 'index.php' || $_GET['package'] == 'backups') { |
|
| 1384 | + redirectexit('action=admin;area=packages;sa=browse'); |
|
| 1385 | + } |
|
| 1330 | 1386 | $_GET['package'] = preg_replace('~[\.]+~', '.', strtr($_GET['package'], array('/' => '_', '\\' => '_'))); |
| 1331 | 1387 | |
| 1332 | 1388 | // Can't delete what's not there. |
@@ -1334,9 +1390,9 @@ discard block |
||
| 1334 | 1390 | { |
| 1335 | 1391 | create_chmod_control(array($packagesdir . '/' . $_GET['package']), array('destination_url' => $scripturl . '?action=admin;area=packages;sa=remove;package=' . $_GET['package'], 'crash_on_error' => true)); |
| 1336 | 1392 | |
| 1337 | - if (is_dir($packagesdir . '/' . $_GET['package'])) |
|
| 1338 | - deltree($packagesdir . '/' . $_GET['package']); |
|
| 1339 | - else |
|
| 1393 | + if (is_dir($packagesdir . '/' . $_GET['package'])) { |
|
| 1394 | + deltree($packagesdir . '/' . $_GET['package']); |
|
| 1395 | + } else |
|
| 1340 | 1396 | { |
| 1341 | 1397 | smf_chmod($packagesdir . '/' . $_GET['package'], 0777); |
| 1342 | 1398 | unlink($packagesdir . '/' . $_GET['package']); |
@@ -1384,8 +1440,9 @@ discard block |
||
| 1384 | 1440 | 'data' => array( |
| 1385 | 1441 | 'function' => function($package_md5) use ($type, &$context) |
| 1386 | 1442 | { |
| 1387 | - if (isset($context['available_' . $type . ''][$package_md5])) |
|
| 1388 | - return $context['available_' . $type . ''][$package_md5]['sort_id']; |
|
| 1443 | + if (isset($context['available_' . $type . ''][$package_md5])) { |
|
| 1444 | + return $context['available_' . $type . ''][$package_md5]['sort_id']; |
|
| 1445 | + } |
|
| 1389 | 1446 | }, |
| 1390 | 1447 | ), |
| 1391 | 1448 | 'sort' => array( |
@@ -1401,8 +1458,9 @@ discard block |
||
| 1401 | 1458 | 'data' => array( |
| 1402 | 1459 | 'function' => function($package_md5) use ($type, &$context) |
| 1403 | 1460 | { |
| 1404 | - if (isset($context['available_' . $type . ''][$package_md5])) |
|
| 1405 | - return $context['available_' . $type . ''][$package_md5]['name']; |
|
| 1461 | + if (isset($context['available_' . $type . ''][$package_md5])) { |
|
| 1462 | + return $context['available_' . $type . ''][$package_md5]['name']; |
|
| 1463 | + } |
|
| 1406 | 1464 | }, |
| 1407 | 1465 | ), |
| 1408 | 1466 | 'sort' => array( |
@@ -1417,8 +1475,9 @@ discard block |
||
| 1417 | 1475 | 'data' => array( |
| 1418 | 1476 | 'function' => function($package_md5) use ($type, &$context) |
| 1419 | 1477 | { |
| 1420 | - if (isset($context['available_' . $type . ''][$package_md5])) |
|
| 1421 | - return $context['available_' . $type . ''][$package_md5]['version']; |
|
| 1478 | + if (isset($context['available_' . $type . ''][$package_md5])) { |
|
| 1479 | + return $context['available_' . $type . ''][$package_md5]['version']; |
|
| 1480 | + } |
|
| 1422 | 1481 | }, |
| 1423 | 1482 | ), |
| 1424 | 1483 | 'sort' => array( |
@@ -1433,8 +1492,9 @@ discard block |
||
| 1433 | 1492 | 'data' => array( |
| 1434 | 1493 | 'function' => function($package_md5) use ($type, $txt, &$context) |
| 1435 | 1494 | { |
| 1436 | - if (isset($context['available_' . $type . ''][$package_md5])) |
|
| 1437 | - return !empty($context['available_' . $type . ''][$package_md5]['time_installed']) ? timeformat($context['available_' . $type . ''][$package_md5]['time_installed']) : $txt['not_applicable']; |
|
| 1495 | + if (isset($context['available_' . $type . ''][$package_md5])) { |
|
| 1496 | + return !empty($context['available_' . $type . ''][$package_md5]['time_installed']) ? timeformat($context['available_' . $type . ''][$package_md5]['time_installed']) : $txt['not_applicable']; |
|
| 1497 | + } |
|
| 1438 | 1498 | }, |
| 1439 | 1499 | 'class' => 'smalltext', |
| 1440 | 1500 | ), |
@@ -1450,28 +1510,30 @@ discard block |
||
| 1450 | 1510 | 'data' => array( |
| 1451 | 1511 | 'function' => function($package_md5) use ($type, &$context, $scripturl, $txt) |
| 1452 | 1512 | { |
| 1453 | - if (!isset($context['available_' . $type . ''][$package_md5])) |
|
| 1454 | - return ''; |
|
| 1513 | + if (!isset($context['available_' . $type . ''][$package_md5])) { |
|
| 1514 | + return ''; |
|
| 1515 | + } |
|
| 1455 | 1516 | |
| 1456 | 1517 | // Rewrite shortcut |
| 1457 | 1518 | $package = $context['available_' . $type . ''][$package_md5]; |
| 1458 | 1519 | $return = ''; |
| 1459 | 1520 | |
| 1460 | - if ($package['can_uninstall']) |
|
| 1461 | - $return = ' |
|
| 1521 | + if ($package['can_uninstall']) { |
|
| 1522 | + $return = ' |
|
| 1462 | 1523 | <a href="' . $scripturl . '?action=admin;area=packages;sa=uninstall;package=' . $package['filename'] . ';pid=' . $package['installed_id'] . '" class="button">' . $txt['uninstall'] . '</a>'; |
| 1463 | - elseif ($package['can_emulate_uninstall']) |
|
| 1464 | - $return = ' |
|
| 1524 | + } elseif ($package['can_emulate_uninstall']) { |
|
| 1525 | + $return = ' |
|
| 1465 | 1526 | <a href="' . $scripturl . '?action=admin;area=packages;sa=uninstall;ve=' . $package['can_emulate_uninstall'] . ';package=' . $package['filename'] . ';pid=' . $package['installed_id'] . '" class="button">' . $txt['package_emulate_uninstall'] . ' ' . $package['can_emulate_uninstall'] . '</a>'; |
| 1466 | - elseif ($package['can_upgrade']) |
|
| 1467 | - $return = ' |
|
| 1527 | + } elseif ($package['can_upgrade']) { |
|
| 1528 | + $return = ' |
|
| 1468 | 1529 | <a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $package['filename'] . '" class="button">' . $txt['package_upgrade'] . '</a>'; |
| 1469 | - elseif ($package['can_install']) |
|
| 1470 | - $return = ' |
|
| 1530 | + } elseif ($package['can_install']) { |
|
| 1531 | + $return = ' |
|
| 1471 | 1532 | <a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $package['filename'] . '" class="button">' . $txt['install_mod'] . '</a>'; |
| 1472 | - elseif ($package['can_emulate_install']) |
|
| 1473 | - $return = ' |
|
| 1533 | + } elseif ($package['can_emulate_install']) { |
|
| 1534 | + $return = ' |
|
| 1474 | 1535 | <a href="' . $scripturl . '?action=admin;area=packages;sa=install;ve=' . $package['can_emulate_install'] . ';package=' . $package['filename'] . '" class="button">' . $txt['package_emulate_install'] . ' ' . $package['can_emulate_install'] . '</a>'; |
| 1536 | + } |
|
| 1475 | 1537 | |
| 1476 | 1538 | return $return . ' |
| 1477 | 1539 | <a href="' . $scripturl . '?action=admin;area=packages;sa=list;package=' . $package['filename'] . '" class="button">' . $txt['list_files'] . '</a> |
@@ -1536,12 +1598,14 @@ discard block |
||
| 1536 | 1598 | static $packages, $installed_mods; |
| 1537 | 1599 | |
| 1538 | 1600 | // Start things up |
| 1539 | - if (!isset($packages[$params])) |
|
| 1540 | - $packages[$params] = array(); |
|
| 1601 | + if (!isset($packages[$params])) { |
|
| 1602 | + $packages[$params] = array(); |
|
| 1603 | + } |
|
| 1541 | 1604 | |
| 1542 | 1605 | // We need the packages directory to be writable for this. |
| 1543 | - if (!@is_writable($packagesdir)) |
|
| 1544 | - create_chmod_control(array($packagesdir), array('destination_url' => $scripturl . '?action=admin;area=packages', 'crash_on_error' => true)); |
|
| 1606 | + if (!@is_writable($packagesdir)) { |
|
| 1607 | + create_chmod_control(array($packagesdir), array('destination_url' => $scripturl . '?action=admin;area=packages', 'crash_on_error' => true)); |
|
| 1608 | + } |
|
| 1545 | 1609 | |
| 1546 | 1610 | $the_version = strtr($forum_version, array('SMF ' => '')); |
| 1547 | 1611 | |
@@ -1549,41 +1613,44 @@ discard block |
||
| 1549 | 1613 | if (isset($_GET['version_emulate']) && strtr($_GET['version_emulate'], array('SMF ' => '')) == $the_version) |
| 1550 | 1614 | { |
| 1551 | 1615 | unset($_SESSION['version_emulate']); |
| 1552 | - } |
|
| 1553 | - elseif (isset($_GET['version_emulate'])) |
|
| 1616 | + } elseif (isset($_GET['version_emulate'])) |
|
| 1554 | 1617 | { |
| 1555 | - if (($_GET['version_emulate'] === 0 || $_GET['version_emulate'] === $forum_version) && isset($_SESSION['version_emulate'])) |
|
| 1556 | - unset($_SESSION['version_emulate']); |
|
| 1557 | - elseif ($_GET['version_emulate'] !== 0) |
|
| 1558 | - $_SESSION['version_emulate'] = strtr($_GET['version_emulate'], array('-' => ' ', '+' => ' ', 'SMF ' => '')); |
|
| 1618 | + if (($_GET['version_emulate'] === 0 || $_GET['version_emulate'] === $forum_version) && isset($_SESSION['version_emulate'])) { |
|
| 1619 | + unset($_SESSION['version_emulate']); |
|
| 1620 | + } elseif ($_GET['version_emulate'] !== 0) { |
|
| 1621 | + $_SESSION['version_emulate'] = strtr($_GET['version_emulate'], array('-' => ' ', '+' => ' ', 'SMF ' => '')); |
|
| 1622 | + } |
|
| 1559 | 1623 | } |
| 1560 | 1624 | if (!empty($_SESSION['version_emulate'])) |
| 1561 | 1625 | { |
| 1562 | 1626 | $context['forum_version'] = 'SMF ' . $_SESSION['version_emulate']; |
| 1563 | 1627 | $the_version = $_SESSION['version_emulate']; |
| 1564 | 1628 | } |
| 1565 | - if (isset($_SESSION['single_version_emulate'])) |
|
| 1566 | - unset($_SESSION['single_version_emulate']); |
|
| 1629 | + if (isset($_SESSION['single_version_emulate'])) { |
|
| 1630 | + unset($_SESSION['single_version_emulate']); |
|
| 1631 | + } |
|
| 1567 | 1632 | |
| 1568 | 1633 | if (empty($installed_mods)) |
| 1569 | 1634 | { |
| 1570 | 1635 | $instmods = loadInstalledPackages(); |
| 1571 | 1636 | $installed_mods = array(); |
| 1572 | 1637 | // Look through the list of installed mods... |
| 1573 | - foreach ($instmods as $installed_mod) |
|
| 1574 | - $installed_mods[$installed_mod['package_id']] = array( |
|
| 1638 | + foreach ($instmods as $installed_mod) { |
|
| 1639 | + $installed_mods[$installed_mod['package_id']] = array( |
|
| 1575 | 1640 | 'id' => $installed_mod['id'], |
| 1576 | 1641 | 'version' => $installed_mod['version'], |
| 1577 | 1642 | 'time_installed' => $installed_mod['time_installed'], |
| 1578 | 1643 | ); |
| 1644 | + } |
|
| 1579 | 1645 | |
| 1580 | 1646 | // Get a list of all the ids installed, so the latest packages won't include already installed ones. |
| 1581 | 1647 | $context['installed_mods'] = array_keys($installed_mods); |
| 1582 | 1648 | } |
| 1583 | 1649 | |
| 1584 | - if (empty($packages)) |
|
| 1585 | - foreach ($context['modification_types'] as $type) |
|
| 1650 | + if (empty($packages)) { |
|
| 1651 | + foreach ($context['modification_types'] as $type) |
|
| 1586 | 1652 | $packages[$type] = array(); |
| 1653 | + } |
|
| 1587 | 1654 | |
| 1588 | 1655 | if ($dir = @opendir($packagesdir)) |
| 1589 | 1656 | { |
@@ -1599,50 +1666,56 @@ discard block |
||
| 1599 | 1666 | |
| 1600 | 1667 | while ($package = readdir($dir)) |
| 1601 | 1668 | { |
| 1602 | - if ($package == '.' || $package == '..' || $package == 'temp' || (!(is_dir($packagesdir . '/' . $package) && file_exists($packagesdir . '/' . $package . '/package-info.xml')) && substr(strtolower($package), -7) != '.tar.gz' && substr(strtolower($package), -4) != '.tgz' && substr(strtolower($package), -4) != '.zip')) |
|
| 1603 | - continue; |
|
| 1669 | + if ($package == '.' || $package == '..' || $package == 'temp' || (!(is_dir($packagesdir . '/' . $package) && file_exists($packagesdir . '/' . $package . '/package-info.xml')) && substr(strtolower($package), -7) != '.tar.gz' && substr(strtolower($package), -4) != '.tgz' && substr(strtolower($package), -4) != '.zip')) { |
|
| 1670 | + continue; |
|
| 1671 | + } |
|
| 1604 | 1672 | |
| 1605 | 1673 | $skip = false; |
| 1606 | - foreach ($context['modification_types'] as $type) |
|
| 1607 | - if (isset($context['available_' . $type][md5($package)])) |
|
| 1674 | + foreach ($context['modification_types'] as $type) { |
|
| 1675 | + if (isset($context['available_' . $type][md5($package)])) |
|
| 1608 | 1676 | $skip = true; |
| 1677 | + } |
|
| 1609 | 1678 | |
| 1610 | - if ($skip) |
|
| 1611 | - continue; |
|
| 1679 | + if ($skip) { |
|
| 1680 | + continue; |
|
| 1681 | + } |
|
| 1612 | 1682 | |
| 1613 | 1683 | // Skip directories or files that are named the same. |
| 1614 | 1684 | if (is_dir($packagesdir . '/' . $package)) |
| 1615 | 1685 | { |
| 1616 | - if (in_array($package, $dirs)) |
|
| 1617 | - continue; |
|
| 1686 | + if (in_array($package, $dirs)) { |
|
| 1687 | + continue; |
|
| 1688 | + } |
|
| 1618 | 1689 | $dirs[] = $package; |
| 1619 | - } |
|
| 1620 | - elseif (substr(strtolower($package), -7) == '.tar.gz') |
|
| 1690 | + } elseif (substr(strtolower($package), -7) == '.tar.gz') |
|
| 1621 | 1691 | { |
| 1622 | - if (in_array(substr($package, 0, -7), $dirs)) |
|
| 1623 | - continue; |
|
| 1692 | + if (in_array(substr($package, 0, -7), $dirs)) { |
|
| 1693 | + continue; |
|
| 1694 | + } |
|
| 1624 | 1695 | $dirs[] = substr($package, 0, -7); |
| 1625 | - } |
|
| 1626 | - elseif (substr(strtolower($package), -4) == '.zip' || substr(strtolower($package), -4) == '.tgz') |
|
| 1696 | + } elseif (substr(strtolower($package), -4) == '.zip' || substr(strtolower($package), -4) == '.tgz') |
|
| 1627 | 1697 | { |
| 1628 | - if (in_array(substr($package, 0, -4), $dirs)) |
|
| 1629 | - continue; |
|
| 1698 | + if (in_array(substr($package, 0, -4), $dirs)) { |
|
| 1699 | + continue; |
|
| 1700 | + } |
|
| 1630 | 1701 | $dirs[] = substr($package, 0, -4); |
| 1631 | 1702 | } |
| 1632 | 1703 | |
| 1633 | 1704 | $packageInfo = getPackageInfo($package); |
| 1634 | - if (!is_array($packageInfo)) |
|
| 1635 | - continue; |
|
| 1705 | + if (!is_array($packageInfo)) { |
|
| 1706 | + continue; |
|
| 1707 | + } |
|
| 1636 | 1708 | |
| 1637 | 1709 | if (!empty($packageInfo)) |
| 1638 | 1710 | { |
| 1639 | 1711 | $packageInfo['installed_id'] = isset($installed_mods[$packageInfo['id']]) ? $installed_mods[$packageInfo['id']]['id'] : 0; |
| 1640 | 1712 | $packageInfo['time_installed'] = isset($installed_mods[$packageInfo['id']]) ? $installed_mods[$packageInfo['id']]['time_installed'] : 0; |
| 1641 | 1713 | |
| 1642 | - if (!isset($sort_id[$packageInfo['type']])) |
|
| 1643 | - $packageInfo['sort_id'] = $sort_id['unknown']; |
|
| 1644 | - else |
|
| 1645 | - $packageInfo['sort_id'] = $sort_id[$packageInfo['type']]; |
|
| 1714 | + if (!isset($sort_id[$packageInfo['type']])) { |
|
| 1715 | + $packageInfo['sort_id'] = $sort_id['unknown']; |
|
| 1716 | + } else { |
|
| 1717 | + $packageInfo['sort_id'] = $sort_id[$packageInfo['type']]; |
|
| 1718 | + } |
|
| 1646 | 1719 | |
| 1647 | 1720 | $packageInfo['is_installed'] = isset($installed_mods[$packageInfo['id']]); |
| 1648 | 1721 | $packageInfo['is_current'] = $packageInfo['is_installed'] && ($installed_mods[$packageInfo['id']]['version'] == $packageInfo['version']); |
@@ -1691,10 +1764,11 @@ discard block |
||
| 1691 | 1764 | foreach ($upgrades as $upgrade) |
| 1692 | 1765 | { |
| 1693 | 1766 | // Even if it is for this SMF, is it for the installed version of the mod? |
| 1694 | - if (!$upgrade->exists('@for') || matchPackageVersion($the_version, $upgrade->fetch('@for'))) |
|
| 1695 | - if (!$upgrade->exists('@from') || matchPackageVersion($installed_mods[$packageInfo['id']]['version'], $upgrade->fetch('@from'))) |
|
| 1767 | + if (!$upgrade->exists('@for') || matchPackageVersion($the_version, $upgrade->fetch('@for'))) { |
|
| 1768 | + if (!$upgrade->exists('@from') || matchPackageVersion($installed_mods[$packageInfo['id']]['version'], $upgrade->fetch('@from'))) |
|
| 1696 | 1769 | { |
| 1697 | 1770 | $packageInfo['can_upgrade'] = true; |
| 1771 | + } |
|
| 1698 | 1772 | break; |
| 1699 | 1773 | } |
| 1700 | 1774 | } |
@@ -1771,10 +1845,11 @@ discard block |
||
| 1771 | 1845 | |
| 1772 | 1846 | if (isset($_GET['type']) && $_GET['type'] == $params) |
| 1773 | 1847 | { |
| 1774 | - if (isset($_GET['desc'])) |
|
| 1775 | - krsort($packages[$params]); |
|
| 1776 | - else |
|
| 1777 | - ksort($packages[$params]); |
|
| 1848 | + if (isset($_GET['desc'])) { |
|
| 1849 | + krsort($packages[$params]); |
|
| 1850 | + } else { |
|
| 1851 | + ksort($packages[$params]); |
|
| 1852 | + } |
|
| 1778 | 1853 | } |
| 1779 | 1854 | |
| 1780 | 1855 | return $packages[$params]; |
@@ -1803,10 +1878,11 @@ discard block |
||
| 1803 | 1878 | redirectexit('action=admin;area=packages;sa=options'); |
| 1804 | 1879 | } |
| 1805 | 1880 | |
| 1806 | - if (preg_match('~^/home\d*/([^/]+?)/public_html~', $_SERVER['DOCUMENT_ROOT'], $match)) |
|
| 1807 | - $default_username = $match[1]; |
|
| 1808 | - else |
|
| 1809 | - $default_username = ''; |
|
| 1881 | + if (preg_match('~^/home\d*/([^/]+?)/public_html~', $_SERVER['DOCUMENT_ROOT'], $match)) { |
|
| 1882 | + $default_username = $match[1]; |
|
| 1883 | + } else { |
|
| 1884 | + $default_username = ''; |
|
| 1885 | + } |
|
| 1810 | 1886 | |
| 1811 | 1887 | $context['page_title'] = $txt['package_settings']; |
| 1812 | 1888 | $context['sub_template'] = 'install_options'; |
@@ -1835,8 +1911,9 @@ discard block |
||
| 1835 | 1911 | isAllowedTo('admin_forum'); |
| 1836 | 1912 | |
| 1837 | 1913 | // We need to know the operation key for the search and replace, mod file looking at, is it a board mod? |
| 1838 | - if (!isset($_REQUEST['operation_key'], $_REQUEST['filename']) && !is_numeric($_REQUEST['operation_key'])) |
|
| 1839 | - fatal_lang_error('operation_invalid', 'general'); |
|
| 1914 | + if (!isset($_REQUEST['operation_key'], $_REQUEST['filename']) && !is_numeric($_REQUEST['operation_key'])) { |
|
| 1915 | + fatal_lang_error('operation_invalid', 'general'); |
|
| 1916 | + } |
|
| 1840 | 1917 | |
| 1841 | 1918 | // Load the required file. |
| 1842 | 1919 | require_once($sourcedir . '/Subs-Package.php'); |
@@ -1852,18 +1929,19 @@ discard block |
||
| 1852 | 1929 | { |
| 1853 | 1930 | $context['extracted_files'] = read_tgz_file($packagesdir . '/' . $context['filename'], $packagesdir . '/temp'); |
| 1854 | 1931 | |
| 1855 | - if ($context['extracted_files'] && !file_exists($packagesdir . '/temp/package-info.xml')) |
|
| 1856 | - foreach ($context['extracted_files'] as $file) |
|
| 1932 | + if ($context['extracted_files'] && !file_exists($packagesdir . '/temp/package-info.xml')) { |
|
| 1933 | + foreach ($context['extracted_files'] as $file) |
|
| 1857 | 1934 | if (basename($file['filename']) == 'package-info.xml') |
| 1858 | 1935 | { |
| 1859 | 1936 | $context['base_path'] = dirname($file['filename']) . '/'; |
| 1937 | + } |
|
| 1860 | 1938 | break; |
| 1861 | 1939 | } |
| 1862 | 1940 | |
| 1863 | - if (!isset($context['base_path'])) |
|
| 1864 | - $context['base_path'] = ''; |
|
| 1865 | - } |
|
| 1866 | - elseif (is_dir($packagesdir . '/' . $context['filename'])) |
|
| 1941 | + if (!isset($context['base_path'])) { |
|
| 1942 | + $context['base_path'] = ''; |
|
| 1943 | + } |
|
| 1944 | + } elseif (is_dir($packagesdir . '/' . $context['filename'])) |
|
| 1867 | 1945 | { |
| 1868 | 1946 | copytree($packagesdir . '/' . $context['filename'], $packagesdir . '/temp'); |
| 1869 | 1947 | $context['extracted_files'] = listtree($packagesdir . '/temp'); |
@@ -1884,8 +1962,9 @@ discard block |
||
| 1884 | 1962 | ) |
| 1885 | 1963 | ); |
| 1886 | 1964 | $theme_paths = array(); |
| 1887 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1888 | - $theme_paths[$row['id_theme']][$row['variable']] = $row['value']; |
|
| 1965 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1966 | + $theme_paths[$row['id_theme']][$row['variable']] = $row['value']; |
|
| 1967 | + } |
|
| 1889 | 1968 | $smcFunc['db_free_result']($request); |
| 1890 | 1969 | |
| 1891 | 1970 | // If we're viewing uninstall operations, only consider themes that |
@@ -1910,19 +1989,21 @@ discard block |
||
| 1910 | 1989 | list ($old_themes) = $smcFunc['db_fetch_row']($request); |
| 1911 | 1990 | $old_themes = explode(',', $old_themes); |
| 1912 | 1991 | |
| 1913 | - foreach ($theme_paths as $id => $data) |
|
| 1914 | - if ($id != 1 && !in_array($id, $old_themes)) |
|
| 1992 | + foreach ($theme_paths as $id => $data) { |
|
| 1993 | + if ($id != 1 && !in_array($id, $old_themes)) |
|
| 1915 | 1994 | unset($theme_paths[$id]); |
| 1995 | + } |
|
| 1916 | 1996 | } |
| 1917 | 1997 | $smcFunc['db_free_result']($request); |
| 1918 | 1998 | } |
| 1919 | 1999 | } |
| 1920 | 2000 | |
| 1921 | 2001 | // Boardmod? |
| 1922 | - if (isset($_REQUEST['boardmod'])) |
|
| 1923 | - $mod_actions = parseBoardMod(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $_REQUEST['filename']), true, $reverse, $theme_paths); |
|
| 1924 | - else |
|
| 1925 | - $mod_actions = parseModification(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $_REQUEST['filename']), true, $reverse, $theme_paths); |
|
| 2002 | + if (isset($_REQUEST['boardmod'])) { |
|
| 2003 | + $mod_actions = parseBoardMod(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $_REQUEST['filename']), true, $reverse, $theme_paths); |
|
| 2004 | + } else { |
|
| 2005 | + $mod_actions = parseModification(@file_get_contents($packagesdir . '/temp/' . $context['base_path'] . $_REQUEST['filename']), true, $reverse, $theme_paths); |
|
| 2006 | + } |
|
| 1926 | 2007 | |
| 1927 | 2008 | // Ok lets get the content of the file. |
| 1928 | 2009 | $context['operations'] = array( |
@@ -1978,9 +2059,9 @@ discard block |
||
| 1978 | 2059 | 'path' => $detect_path, |
| 1979 | 2060 | 'form_elements_only' => true, |
| 1980 | 2061 | ); |
| 2062 | + } else { |
|
| 2063 | + $context['ftp_connected'] = true; |
|
| 1981 | 2064 | } |
| 1982 | - else |
|
| 1983 | - $context['ftp_connected'] = true; |
|
| 1984 | 2065 | |
| 1985 | 2066 | // Define the template. |
| 1986 | 2067 | $context['page_title'] = $txt['package_file_perms']; |
@@ -2093,17 +2174,18 @@ discard block |
||
| 2093 | 2174 | { |
| 2094 | 2175 | unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['attachments']); |
| 2095 | 2176 | |
| 2096 | - if (!is_array($modSettings['attachmentUploadDir'])) |
|
| 2097 | - $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
| 2177 | + if (!is_array($modSettings['attachmentUploadDir'])) { |
|
| 2178 | + $modSettings['attachmentUploadDir'] = $smcFunc['json_decode']($modSettings['attachmentUploadDir'], true); |
|
| 2179 | + } |
|
| 2098 | 2180 | |
| 2099 | 2181 | // @todo Should we suggest non-current directories be read only? |
| 2100 | - foreach ($modSettings['attachmentUploadDir'] as $dir) |
|
| 2101 | - $context['file_tree'][strtr($dir, array('\\' => '/'))] = array( |
|
| 2182 | + foreach ($modSettings['attachmentUploadDir'] as $dir) { |
|
| 2183 | + $context['file_tree'][strtr($dir, array('\\' => '/'))] = array( |
|
| 2102 | 2184 | 'type' => 'dir', |
| 2103 | 2185 | 'writable_on' => 'restrictive', |
| 2104 | 2186 | ); |
| 2105 | - } |
|
| 2106 | - elseif (substr($modSettings['attachmentUploadDir'], 0, strlen($boarddir)) != $boarddir) |
|
| 2187 | + } |
|
| 2188 | + } elseif (substr($modSettings['attachmentUploadDir'], 0, strlen($boarddir)) != $boarddir) |
|
| 2107 | 2189 | { |
| 2108 | 2190 | unset($context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['attachments']); |
| 2109 | 2191 | $context['file_tree'][strtr($modSettings['attachmentUploadDir'], array('\\' => '/'))] = array( |
@@ -2153,8 +2235,8 @@ discard block |
||
| 2153 | 2235 | ); |
| 2154 | 2236 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 2155 | 2237 | { |
| 2156 | - if (substr(strtolower(strtr($row['value'], array('\\' => '/'))), 0, strlen($boarddir) + 7) == strtolower(strtr($boarddir, array('\\' => '/')) . '/Themes')) |
|
| 2157 | - $context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['Themes']['contents'][substr($row['value'], strlen($boarddir) + 8)] = array( |
|
| 2238 | + if (substr(strtolower(strtr($row['value'], array('\\' => '/'))), 0, strlen($boarddir) + 7) == strtolower(strtr($boarddir, array('\\' => '/')) . '/Themes')) { |
|
| 2239 | + $context['file_tree'][strtr($boarddir, array('\\' => '/'))]['contents']['Themes']['contents'][substr($row['value'], strlen($boarddir) + 8)] = array( |
|
| 2158 | 2240 | 'type' => 'dir_recursive', |
| 2159 | 2241 | 'list_contents' => true, |
| 2160 | 2242 | 'contents' => array( |
@@ -2164,7 +2246,7 @@ discard block |
||
| 2164 | 2246 | ), |
| 2165 | 2247 | ), |
| 2166 | 2248 | ); |
| 2167 | - else |
|
| 2249 | + } else |
|
| 2168 | 2250 | { |
| 2169 | 2251 | $context['file_tree'][strtr($row['value'], array('\\' => '/'))] = array( |
| 2170 | 2252 | 'type' => 'dir_recursive', |
@@ -2181,28 +2263,33 @@ discard block |
||
| 2181 | 2263 | $smcFunc['db_free_result']($request); |
| 2182 | 2264 | |
| 2183 | 2265 | // If we're submitting then let's move on to another function to keep things cleaner.. |
| 2184 | - if (isset($_POST['action_changes'])) |
|
| 2185 | - return PackagePermissionsAction(); |
|
| 2266 | + if (isset($_POST['action_changes'])) { |
|
| 2267 | + return PackagePermissionsAction(); |
|
| 2268 | + } |
|
| 2186 | 2269 | |
| 2187 | 2270 | $context['look_for'] = array(); |
| 2188 | 2271 | // Are we looking for a particular tree - normally an expansion? |
| 2189 | - if (!empty($_REQUEST['find'])) |
|
| 2190 | - $context['look_for'][] = base64_decode($_REQUEST['find']); |
|
| 2272 | + if (!empty($_REQUEST['find'])) { |
|
| 2273 | + $context['look_for'][] = base64_decode($_REQUEST['find']); |
|
| 2274 | + } |
|
| 2191 | 2275 | // Only that tree? |
| 2192 | 2276 | $context['only_find'] = isset($_GET['xml']) && !empty($_REQUEST['onlyfind']) ? $_REQUEST['onlyfind'] : ''; |
| 2193 | - if ($context['only_find']) |
|
| 2194 | - $context['look_for'][] = $context['only_find']; |
|
| 2277 | + if ($context['only_find']) { |
|
| 2278 | + $context['look_for'][] = $context['only_find']; |
|
| 2279 | + } |
|
| 2195 | 2280 | |
| 2196 | 2281 | // Have we got a load of back-catalogue trees to expand from a submit etc? |
| 2197 | 2282 | if (!empty($_GET['back_look'])) |
| 2198 | 2283 | { |
| 2199 | 2284 | $potententialTrees = $smcFunc['json_decode'](base64_decode($_GET['back_look']), true); |
| 2200 | - foreach ($potententialTrees as $tree) |
|
| 2201 | - $context['look_for'][] = $tree; |
|
| 2285 | + foreach ($potententialTrees as $tree) { |
|
| 2286 | + $context['look_for'][] = $tree; |
|
| 2287 | + } |
|
| 2202 | 2288 | } |
| 2203 | 2289 | // ... maybe posted? |
| 2204 | - if (!empty($_POST['back_look'])) |
|
| 2205 | - $context['only_find'] = array_merge($context['only_find'], $_POST['back_look']); |
|
| 2290 | + if (!empty($_POST['back_look'])) { |
|
| 2291 | + $context['only_find'] = array_merge($context['only_find'], $_POST['back_look']); |
|
| 2292 | + } |
|
| 2206 | 2293 | |
| 2207 | 2294 | $context['back_look_data'] = base64_encode($smcFunc['json_encode'](array_slice($context['look_for'], 0, 15))); |
| 2208 | 2295 | |
@@ -2241,9 +2328,9 @@ discard block |
||
| 2241 | 2328 | 'chmod' => @is_writable($path), |
| 2242 | 2329 | 'perms' => @fileperms($path), |
| 2243 | 2330 | ); |
| 2331 | + } else { |
|
| 2332 | + unset($context['file_tree'][$path]); |
|
| 2244 | 2333 | } |
| 2245 | - else |
|
| 2246 | - unset($context['file_tree'][$path]); |
|
| 2247 | 2334 | } |
| 2248 | 2335 | |
| 2249 | 2336 | // Is this actually xml? |
@@ -2267,22 +2354,25 @@ discard block |
||
| 2267 | 2354 | global $context; |
| 2268 | 2355 | |
| 2269 | 2356 | $isLikelyPath = false; |
| 2270 | - foreach ($context['look_for'] as $possiblePath) |
|
| 2271 | - if (substr($possiblePath, 0, strlen($path)) == $path) |
|
| 2357 | + foreach ($context['look_for'] as $possiblePath) { |
|
| 2358 | + if (substr($possiblePath, 0, strlen($path)) == $path) |
|
| 2272 | 2359 | $isLikelyPath = true; |
| 2360 | + } |
|
| 2273 | 2361 | |
| 2274 | 2362 | // Is this where we stop? |
| 2275 | - if (isset($_GET['xml']) && !empty($context['look_for']) && !$isLikelyPath) |
|
| 2276 | - return; |
|
| 2277 | - elseif ($level > $context['default_level'] && !$isLikelyPath) |
|
| 2278 | - return; |
|
| 2363 | + if (isset($_GET['xml']) && !empty($context['look_for']) && !$isLikelyPath) { |
|
| 2364 | + return; |
|
| 2365 | + } elseif ($level > $context['default_level'] && !$isLikelyPath) { |
|
| 2366 | + return; |
|
| 2367 | + } |
|
| 2279 | 2368 | |
| 2280 | 2369 | // Are we actually interested in saving this data? |
| 2281 | 2370 | $save_data = empty($context['only_find']) || $context['only_find'] == $path; |
| 2282 | 2371 | |
| 2283 | 2372 | // @todo Shouldn't happen - but better error message? |
| 2284 | - if (!is_dir($path)) |
|
| 2285 | - fatal_lang_error('no_access', false); |
|
| 2373 | + if (!is_dir($path)) { |
|
| 2374 | + fatal_lang_error('no_access', false); |
|
| 2375 | + } |
|
| 2286 | 2376 | |
| 2287 | 2377 | // This is where we put stuff we've found for sorting. |
| 2288 | 2378 | $foundData = array( |
@@ -2297,11 +2387,13 @@ discard block |
||
| 2297 | 2387 | if (is_file($path . '/' . $entry)) |
| 2298 | 2388 | { |
| 2299 | 2389 | // Are we listing PHP files in this directory? |
| 2300 | - if ($save_data && !empty($data['list_contents']) && substr($entry, -4) == '.php') |
|
| 2301 | - $foundData['files'][$entry] = true; |
|
| 2390 | + if ($save_data && !empty($data['list_contents']) && substr($entry, -4) == '.php') { |
|
| 2391 | + $foundData['files'][$entry] = true; |
|
| 2392 | + } |
|
| 2302 | 2393 | // A file we were looking for. |
| 2303 | - elseif ($save_data && isset($data['contents'][$entry])) |
|
| 2304 | - $foundData['files'][$entry] = true; |
|
| 2394 | + elseif ($save_data && isset($data['contents'][$entry])) { |
|
| 2395 | + $foundData['files'][$entry] = true; |
|
| 2396 | + } |
|
| 2305 | 2397 | } |
| 2306 | 2398 | // It's a directory - we're interested one way or another, probably... |
| 2307 | 2399 | elseif ($entry != '.' && $entry != '..') |
@@ -2309,32 +2401,36 @@ discard block |
||
| 2309 | 2401 | // Going further? |
| 2310 | 2402 | if ((!empty($data['type']) && $data['type'] == 'dir_recursive') || (isset($data['contents'][$entry]) && (!empty($data['contents'][$entry]['list_contents']) || (!empty($data['contents'][$entry]['type']) && $data['contents'][$entry]['type'] == 'dir_recursive')))) |
| 2311 | 2403 | { |
| 2312 | - if (!isset($data['contents'][$entry])) |
|
| 2313 | - $foundData['folders'][$entry] = 'dir_recursive'; |
|
| 2314 | - else |
|
| 2315 | - $foundData['folders'][$entry] = true; |
|
| 2404 | + if (!isset($data['contents'][$entry])) { |
|
| 2405 | + $foundData['folders'][$entry] = 'dir_recursive'; |
|
| 2406 | + } else { |
|
| 2407 | + $foundData['folders'][$entry] = true; |
|
| 2408 | + } |
|
| 2316 | 2409 | |
| 2317 | 2410 | // If this wasn't expected inherit the recusiveness... |
| 2318 | - if (!isset($data['contents'][$entry])) |
|
| 2319 | - // We need to do this as we will be going all recursive. |
|
| 2411 | + if (!isset($data['contents'][$entry])) { |
|
| 2412 | + // We need to do this as we will be going all recursive. |
|
| 2320 | 2413 | $data['contents'][$entry] = array( |
| 2321 | 2414 | 'type' => 'dir_recursive', |
| 2322 | 2415 | ); |
| 2416 | + } |
|
| 2323 | 2417 | |
| 2324 | 2418 | // Actually do the recursive stuff... |
| 2325 | 2419 | fetchPerms__recursive($path . '/' . $entry, $data['contents'][$entry], $level + 1); |
| 2326 | 2420 | } |
| 2327 | 2421 | // Maybe it is a folder we are not descending into. |
| 2328 | - elseif (isset($data['contents'][$entry])) |
|
| 2329 | - $foundData['folders'][$entry] = true; |
|
| 2422 | + elseif (isset($data['contents'][$entry])) { |
|
| 2423 | + $foundData['folders'][$entry] = true; |
|
| 2424 | + } |
|
| 2330 | 2425 | // Otherwise we stop here. |
| 2331 | 2426 | } |
| 2332 | 2427 | } |
| 2333 | 2428 | closedir($dh); |
| 2334 | 2429 | |
| 2335 | 2430 | // Nothing to see here? |
| 2336 | - if (!$save_data) |
|
| 2337 | - return; |
|
| 2431 | + if (!$save_data) { |
|
| 2432 | + return; |
|
| 2433 | + } |
|
| 2338 | 2434 | |
| 2339 | 2435 | // Now actually add the data, starting with the folders. |
| 2340 | 2436 | ksort($foundData['folders']); |
@@ -2346,8 +2442,9 @@ discard block |
||
| 2346 | 2442 | 'perms' => @fileperms($path . '/' . $folder), |
| 2347 | 2443 | ), |
| 2348 | 2444 | ); |
| 2349 | - if ($type !== true) |
|
| 2350 | - $additional_data['type'] = $type; |
|
| 2445 | + if ($type !== true) { |
|
| 2446 | + $additional_data['type'] = $type; |
|
| 2447 | + } |
|
| 2351 | 2448 | |
| 2352 | 2449 | // If there's an offset ignore any folders in XML mode. |
| 2353 | 2450 | if (isset($_GET['xml']) && $context['file_offset'] == 0) |
@@ -2366,13 +2463,13 @@ discard block |
||
| 2366 | 2463 | ), |
| 2367 | 2464 | 'value' => $folder, |
| 2368 | 2465 | ); |
| 2369 | - } |
|
| 2370 | - elseif (!isset($_GET['xml'])) |
|
| 2466 | + } elseif (!isset($_GET['xml'])) |
|
| 2371 | 2467 | { |
| 2372 | - if (isset($data['contents'][$folder])) |
|
| 2373 | - $data['contents'][$folder] = array_merge($data['contents'][$folder], $additional_data); |
|
| 2374 | - else |
|
| 2375 | - $data['contents'][$folder] = $additional_data; |
|
| 2468 | + if (isset($data['contents'][$folder])) { |
|
| 2469 | + $data['contents'][$folder] = array_merge($data['contents'][$folder], $additional_data); |
|
| 2470 | + } else { |
|
| 2471 | + $data['contents'][$folder] = $additional_data; |
|
| 2472 | + } |
|
| 2376 | 2473 | } |
| 2377 | 2474 | } |
| 2378 | 2475 | |
@@ -2384,11 +2481,13 @@ discard block |
||
| 2384 | 2481 | $counter++; |
| 2385 | 2482 | |
| 2386 | 2483 | // Have we reached our offset? |
| 2387 | - if ($context['file_offset'] > $counter) |
|
| 2388 | - continue; |
|
| 2484 | + if ($context['file_offset'] > $counter) { |
|
| 2485 | + continue; |
|
| 2486 | + } |
|
| 2389 | 2487 | // Gone too far? |
| 2390 | - if ($counter > ($context['file_offset'] + $context['file_limit'])) |
|
| 2391 | - continue; |
|
| 2488 | + if ($counter > ($context['file_offset'] + $context['file_limit'])) { |
|
| 2489 | + continue; |
|
| 2490 | + } |
|
| 2392 | 2491 | |
| 2393 | 2492 | $additional_data = array( |
| 2394 | 2493 | 'perms' => array( |
@@ -2414,13 +2513,13 @@ discard block |
||
| 2414 | 2513 | ), |
| 2415 | 2514 | 'value' => $file, |
| 2416 | 2515 | ); |
| 2417 | - } |
|
| 2418 | - elseif ($counter != ($context['file_offset'] + $context['file_limit'])) |
|
| 2516 | + } elseif ($counter != ($context['file_offset'] + $context['file_limit'])) |
|
| 2419 | 2517 | { |
| 2420 | - if (isset($data['contents'][$file])) |
|
| 2421 | - $data['contents'][$file] = array_merge($data['contents'][$file], $additional_data); |
|
| 2422 | - else |
|
| 2423 | - $data['contents'][$file] = $additional_data; |
|
| 2518 | + if (isset($data['contents'][$file])) { |
|
| 2519 | + $data['contents'][$file] = array_merge($data['contents'][$file], $additional_data); |
|
| 2520 | + } else { |
|
| 2521 | + $data['contents'][$file] = $additional_data; |
|
| 2522 | + } |
|
| 2424 | 2523 | } |
| 2425 | 2524 | } |
| 2426 | 2525 | } |
@@ -2442,8 +2541,9 @@ discard block |
||
| 2442 | 2541 | $context['back_look_data'] = isset($_POST['back_look']) ? $_POST['back_look'] : array(); |
| 2443 | 2542 | |
| 2444 | 2543 | // Skipping use of FTP? |
| 2445 | - if (empty($package_ftp)) |
|
| 2446 | - $context['skip_ftp'] = true; |
|
| 2544 | + if (empty($package_ftp)) { |
|
| 2545 | + $context['skip_ftp'] = true; |
|
| 2546 | + } |
|
| 2447 | 2547 | |
| 2448 | 2548 | // We'll start off in a good place, security. Make sure that if we're dealing with individual files that they seem in the right place. |
| 2449 | 2549 | if ($context['method'] == 'individual') |
@@ -2453,8 +2553,9 @@ discard block |
||
| 2453 | 2553 | $context['custom_value'] = (int) $_POST['custom_value']; |
| 2454 | 2554 | |
| 2455 | 2555 | // Continuing? |
| 2456 | - if (isset($_POST['toProcess'])) |
|
| 2457 | - $_POST['permStatus'] = $smcFunc['json_decode'](base64_decode($_POST['toProcess']), true); |
|
| 2556 | + if (isset($_POST['toProcess'])) { |
|
| 2557 | + $_POST['permStatus'] = $smcFunc['json_decode'](base64_decode($_POST['toProcess']), true); |
|
| 2558 | + } |
|
| 2458 | 2559 | |
| 2459 | 2560 | if (isset($_POST['permStatus'])) |
| 2460 | 2561 | { |
@@ -2463,22 +2564,27 @@ discard block |
||
| 2463 | 2564 | foreach ($_POST['permStatus'] as $path => $status) |
| 2464 | 2565 | { |
| 2465 | 2566 | // Nothing to see here? |
| 2466 | - if ($status == 'no_change') |
|
| 2467 | - continue; |
|
| 2567 | + if ($status == 'no_change') { |
|
| 2568 | + continue; |
|
| 2569 | + } |
|
| 2468 | 2570 | $legal = false; |
| 2469 | - foreach ($legal_roots as $root) |
|
| 2470 | - if (substr($path, 0, strlen($root)) == $root) |
|
| 2571 | + foreach ($legal_roots as $root) { |
|
| 2572 | + if (substr($path, 0, strlen($root)) == $root) |
|
| 2471 | 2573 | $legal = true; |
| 2574 | + } |
|
| 2472 | 2575 | |
| 2473 | - if (!$legal) |
|
| 2474 | - continue; |
|
| 2576 | + if (!$legal) { |
|
| 2577 | + continue; |
|
| 2578 | + } |
|
| 2475 | 2579 | |
| 2476 | 2580 | // Check it exists. |
| 2477 | - if (!file_exists($path)) |
|
| 2478 | - continue; |
|
| 2581 | + if (!file_exists($path)) { |
|
| 2582 | + continue; |
|
| 2583 | + } |
|
| 2479 | 2584 | |
| 2480 | - if ($status == 'custom') |
|
| 2481 | - $validate_custom = true; |
|
| 2585 | + if ($status == 'custom') { |
|
| 2586 | + $validate_custom = true; |
|
| 2587 | + } |
|
| 2482 | 2588 | |
| 2483 | 2589 | // Now add it. |
| 2484 | 2590 | $context['to_process'][$path] = $status; |
@@ -2488,17 +2594,20 @@ discard block |
||
| 2488 | 2594 | // Make sure the chmod status is valid? |
| 2489 | 2595 | if ($validate_custom) |
| 2490 | 2596 | { |
| 2491 | - if (preg_match('~^[4567][4567][4567]$~', $context['custom_value']) == false) |
|
| 2492 | - fatal_error($txt['chmod_value_invalid']); |
|
| 2597 | + if (preg_match('~^[4567][4567][4567]$~', $context['custom_value']) == false) { |
|
| 2598 | + fatal_error($txt['chmod_value_invalid']); |
|
| 2599 | + } |
|
| 2493 | 2600 | } |
| 2494 | 2601 | |
| 2495 | 2602 | // Nothing to do? |
| 2496 | - if (empty($context['to_process'])) |
|
| 2497 | - redirectexit('action=admin;area=packages;sa=perms' . (!empty($context['back_look_data']) ? ';back_look=' . base64_encode($smcFunc['json_encode']($context['back_look_data'])) : '') . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 2603 | + if (empty($context['to_process'])) { |
|
| 2604 | + redirectexit('action=admin;area=packages;sa=perms' . (!empty($context['back_look_data']) ? ';back_look=' . base64_encode($smcFunc['json_encode']($context['back_look_data'])) : '') . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 2605 | + } |
|
| 2498 | 2606 | } |
| 2499 | 2607 | // Should never get here, |
| 2500 | - else |
|
| 2501 | - fatal_lang_error('no_access', false); |
|
| 2608 | + else { |
|
| 2609 | + fatal_lang_error('no_access', false); |
|
| 2610 | + } |
|
| 2502 | 2611 | |
| 2503 | 2612 | // Setup the custom value. |
| 2504 | 2613 | $custom_value = octdec('0' . $context['custom_value']); |
@@ -2506,18 +2615,18 @@ discard block |
||
| 2506 | 2615 | // Start processing items. |
| 2507 | 2616 | foreach ($context['to_process'] as $path => $status) |
| 2508 | 2617 | { |
| 2509 | - if (in_array($status, array('execute', 'writable', 'read'))) |
|
| 2510 | - package_chmod($path, $status); |
|
| 2511 | - elseif ($status == 'custom' && !empty($custom_value)) |
|
| 2618 | + if (in_array($status, array('execute', 'writable', 'read'))) { |
|
| 2619 | + package_chmod($path, $status); |
|
| 2620 | + } elseif ($status == 'custom' && !empty($custom_value)) |
|
| 2512 | 2621 | { |
| 2513 | 2622 | // Use FTP if we have it. |
| 2514 | 2623 | if (!empty($package_ftp) && !empty($_SESSION['pack_ftp'])) |
| 2515 | 2624 | { |
| 2516 | 2625 | $ftp_file = strtr($path, array($_SESSION['pack_ftp']['root'] => '')); |
| 2517 | 2626 | $package_ftp->chmod($ftp_file, $custom_value); |
| 2627 | + } else { |
|
| 2628 | + smf_chmod($path, $custom_value); |
|
| 2518 | 2629 | } |
| 2519 | - else |
|
| 2520 | - smf_chmod($path, $custom_value); |
|
| 2521 | 2630 | } |
| 2522 | 2631 | |
| 2523 | 2632 | // This fish is fried... |
@@ -2601,23 +2710,27 @@ discard block |
||
| 2601 | 2710 | { |
| 2602 | 2711 | global $context; |
| 2603 | 2712 | |
| 2604 | - if (!empty($data['writable_on'])) |
|
| 2605 | - if ($context['predefined_type'] == 'standard' || $data['writable_on'] == 'restrictive') |
|
| 2713 | + if (!empty($data['writable_on'])) { |
|
| 2714 | + if ($context['predefined_type'] == 'standard' || $data['writable_on'] == 'restrictive') |
|
| 2606 | 2715 | $context['special_files'][$path] = 1; |
| 2716 | + } |
|
| 2607 | 2717 | |
| 2608 | - if (!empty($data['contents'])) |
|
| 2609 | - foreach ($data['contents'] as $name => $contents) |
|
| 2718 | + if (!empty($data['contents'])) { |
|
| 2719 | + foreach ($data['contents'] as $name => $contents) |
|
| 2610 | 2720 | build_special_files__recursive($path . '/' . $name, $contents); |
| 2721 | + } |
|
| 2611 | 2722 | } |
| 2612 | 2723 | |
| 2613 | - foreach ($context['file_tree'] as $path => $data) |
|
| 2614 | - build_special_files__recursive($path, $data); |
|
| 2724 | + foreach ($context['file_tree'] as $path => $data) { |
|
| 2725 | + build_special_files__recursive($path, $data); |
|
| 2726 | + } |
|
| 2615 | 2727 | } |
| 2616 | 2728 | // Free doesn't need special files. |
| 2617 | - elseif ($context['predefined_type'] == 'free') |
|
| 2618 | - $context['special_files'] = array(); |
|
| 2619 | - else |
|
| 2620 | - $context['special_files'] = $smcFunc['json_decode'](base64_decode($_POST['specialFiles']), true); |
|
| 2729 | + elseif ($context['predefined_type'] == 'free') { |
|
| 2730 | + $context['special_files'] = array(); |
|
| 2731 | + } else { |
|
| 2732 | + $context['special_files'] = $smcFunc['json_decode'](base64_decode($_POST['specialFiles']), true); |
|
| 2733 | + } |
|
| 2621 | 2734 | |
| 2622 | 2735 | // Now we definitely know where we are, we need to go through again doing the chmod! |
| 2623 | 2736 | foreach ($context['directory_list'] as $path => $dummy) |
@@ -10,8 +10,9 @@ discard block |
||
| 10 | 10 | * @version 2.1 Beta 4 |
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | -if (!defined('SMF')) |
|
| 13 | +if (!defined('SMF')) { |
|
| 14 | 14 | die('No direct access...'); |
| 15 | +} |
|
| 15 | 16 | |
| 16 | 17 | /** |
| 17 | 18 | * Class curl_fetch_web_data |
@@ -121,10 +122,11 @@ discard block |
||
| 121 | 122 | public function get_url_data($url, $post_data = array()) |
| 122 | 123 | { |
| 123 | 124 | // POSTing some data perhaps? |
| 124 | - if (!empty($post_data) && is_array($post_data)) |
|
| 125 | - $this->post_data = $this->build_post_data($post_data); |
|
| 126 | - elseif (!empty($post_data)) |
|
| 127 | - $this->post_data = trim($post_data); |
|
| 125 | + if (!empty($post_data) && is_array($post_data)) { |
|
| 126 | + $this->post_data = $this->build_post_data($post_data); |
|
| 127 | + } elseif (!empty($post_data)) { |
|
| 128 | + $this->post_data = trim($post_data); |
|
| 129 | + } |
|
| 128 | 130 | |
| 129 | 131 | // set the options and get it |
| 130 | 132 | $this->set_options(); |
@@ -145,10 +147,11 @@ discard block |
||
| 145 | 147 | private function curl_request($url, $redirect = false) |
| 146 | 148 | { |
| 147 | 149 | // we do have a url I hope |
| 148 | - if ($url == '') |
|
| 149 | - return false; |
|
| 150 | - else |
|
| 151 | - $this->options[CURLOPT_URL] = $url; |
|
| 150 | + if ($url == '') { |
|
| 151 | + return false; |
|
| 152 | + } else { |
|
| 153 | + $this->options[CURLOPT_URL] = $url; |
|
| 154 | + } |
|
| 152 | 155 | |
| 153 | 156 | // if we have not already been redirected, set it up so we can if needed |
| 154 | 157 | if (!$redirect) |
@@ -228,10 +231,11 @@ discard block |
||
| 228 | 231 | $max_result = count($this->response) - 1; |
| 229 | 232 | |
| 230 | 233 | // just return a specifed area or the entire result? |
| 231 | - if ($area == '') |
|
| 232 | - return $this->response[$max_result]; |
|
| 233 | - else |
|
| 234 | - return isset($this->response[$max_result][$area]) ? $this->response[$max_result][$area] : $this->response[$max_result]; |
|
| 234 | + if ($area == '') { |
|
| 235 | + return $this->response[$max_result]; |
|
| 236 | + } else { |
|
| 237 | + return isset($this->response[$max_result][$area]) ? $this->response[$max_result][$area] : $this->response[$max_result]; |
|
| 238 | + } |
|
| 235 | 239 | } |
| 236 | 240 | |
| 237 | 241 | /** |
@@ -244,9 +248,9 @@ discard block |
||
| 244 | 248 | */ |
| 245 | 249 | public function result_raw($response_number = '') |
| 246 | 250 | { |
| 247 | - if (!is_numeric($response_number)) |
|
| 248 | - return $this->response; |
|
| 249 | - else |
|
| 251 | + if (!is_numeric($response_number)) { |
|
| 252 | + return $this->response; |
|
| 253 | + } else |
|
| 250 | 254 | { |
| 251 | 255 | $response_number = min($response_number, count($this->response) - 1); |
| 252 | 256 | return $this->response[$response_number]; |
@@ -268,13 +272,14 @@ discard block |
||
| 268 | 272 | $postvars = array(); |
| 269 | 273 | |
| 270 | 274 | // build the post data, drop ones with leading @'s since those can be used to send files, we don't support that. |
| 271 | - foreach ($post_data as $name => $value) |
|
| 272 | - $postvars[] = $name . '=' . urlencode($value[0] == '@' ? '' : $value); |
|
| 275 | + foreach ($post_data as $name => $value) { |
|
| 276 | + $postvars[] = $name . '=' . urlencode($value[0] == '@' ? '' : $value); |
|
| 277 | + } |
|
| 273 | 278 | |
| 274 | 279 | return implode('&', $postvars); |
| 280 | + } else { |
|
| 281 | + return $post_data; |
|
| 275 | 282 | } |
| 276 | - else |
|
| 277 | - return $post_data; |
|
| 278 | 283 | } |
| 279 | 284 | |
| 280 | 285 | /** |
@@ -294,9 +299,9 @@ discard block |
||
| 294 | 299 | $keys = array_merge(array_keys($this->default_options), array_keys($this->user_options)); |
| 295 | 300 | $vals = array_merge($this->default_options, $this->user_options); |
| 296 | 301 | $this->options = array_combine($keys, $vals); |
| 302 | + } else { |
|
| 303 | + $this->options = $this->default_options; |
|
| 297 | 304 | } |
| 298 | - else |
|
| 299 | - $this->options = $this->default_options; |
|
| 300 | 305 | |
| 301 | 306 | // POST data options, here we don't allow any overide |
| 302 | 307 | if (isset($this->post_data)) |
@@ -335,8 +340,9 @@ discard block |
||
| 335 | 340 | $temp = explode(': ', $_header, 2); |
| 336 | 341 | |
| 337 | 342 | // set proper headers only |
| 338 | - if (isset($temp[0]) && isset($temp[1])) |
|
| 339 | - $this->headers[strtolower($temp[0])] = strtolower(trim($temp[1])); |
|
| 343 | + if (isset($temp[0]) && isset($temp[1])) { |
|
| 344 | + $this->headers[strtolower($temp[0])] = strtolower(trim($temp[1])); |
|
| 345 | + } |
|
| 340 | 346 | |
| 341 | 347 | // return the length of what was passed unless you want a Failed writing header error ;) |
| 342 | 348 | return strlen($header); |
@@ -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 | * Finds or repairs errors in the database to fix possible problems. |
@@ -50,8 +51,9 @@ discard block |
||
| 50 | 51 | ); |
| 51 | 52 | |
| 52 | 53 | // Start displaying errors without fixing them. |
| 53 | - if (isset($_GET['fixErrors'])) |
|
| 54 | - checkSession('get'); |
|
| 54 | + if (isset($_GET['fixErrors'])) { |
|
| 55 | + checkSession('get'); |
|
| 56 | + } |
|
| 55 | 57 | |
| 56 | 58 | // Will want this. |
| 57 | 59 | loadForumTests(); |
@@ -69,11 +71,11 @@ discard block |
||
| 69 | 71 | $_SESSION['repairboards_to_fix'] = $context['to_fix']; |
| 70 | 72 | $_SESSION['repairboards_to_fix2'] = null; |
| 71 | 73 | |
| 72 | - if (empty($context['repair_errors'])) |
|
| 73 | - $context['repair_errors'][] = '???'; |
|
| 74 | + if (empty($context['repair_errors'])) { |
|
| 75 | + $context['repair_errors'][] = '???'; |
|
| 76 | + } |
|
| 74 | 77 | } |
| 75 | - } |
|
| 76 | - else |
|
| 78 | + } else |
|
| 77 | 79 | { |
| 78 | 80 | $context['error_search'] = false; |
| 79 | 81 | $context['to_fix'] = isset($_SESSION['repairboards_to_fix']) ? $_SESSION['repairboards_to_fix'] : array(); |
@@ -120,16 +122,19 @@ discard block |
||
| 120 | 122 | |
| 121 | 123 | // More time, I need more time! |
| 122 | 124 | @set_time_limit(600); |
| 123 | - if (function_exists('apache_reset_timeout')) |
|
| 124 | - @apache_reset_timeout(); |
|
| 125 | + if (function_exists('apache_reset_timeout')) { |
|
| 126 | + @apache_reset_timeout(); |
|
| 127 | + } |
|
| 125 | 128 | |
| 126 | 129 | // Errr, wait. How much time has this taken already? |
| 127 | - if (!$force && (time() - $time_start) < 3) |
|
| 128 | - return; |
|
| 130 | + if (!$force && (time() - $time_start) < 3) { |
|
| 131 | + return; |
|
| 132 | + } |
|
| 129 | 133 | |
| 130 | 134 | // Restore the query cache if interested. |
| 131 | - if (!empty($db_temp_cache)) |
|
| 132 | - $db_cache = $db_temp_cache; |
|
| 135 | + if (!empty($db_temp_cache)) { |
|
| 136 | + $db_cache = $db_temp_cache; |
|
| 137 | + } |
|
| 133 | 138 | |
| 134 | 139 | $context['continue_get_data'] = '?action=admin;area=repairboards' . (isset($_GET['fixErrors']) ? ';fixErrors' : '') . ';step=' . $_GET['step'] . ';substep=' . $_GET['substep'] . ';' . $context['session_var'] . '=' . $context['session_id']; |
| 135 | 140 | $context['page_title'] = $txt['not_done_title']; |
@@ -138,10 +143,11 @@ discard block |
||
| 138 | 143 | $context['sub_template'] = 'not_done'; |
| 139 | 144 | |
| 140 | 145 | // Change these two if more steps are added! |
| 141 | - if (empty($max_substep)) |
|
| 142 | - $context['continue_percent'] = round(($_GET['step'] * 100) / $context['total_steps']); |
|
| 143 | - else |
|
| 144 | - $context['continue_percent'] = round((($_GET['step'] + ($_GET['substep'] / $max_substep)) * 100) / $context['total_steps']); |
|
| 146 | + if (empty($max_substep)) { |
|
| 147 | + $context['continue_percent'] = round(($_GET['step'] * 100) / $context['total_steps']); |
|
| 148 | + } else { |
|
| 149 | + $context['continue_percent'] = round((($_GET['step'] + ($_GET['substep'] / $max_substep)) * 100) / $context['total_steps']); |
|
| 150 | + } |
|
| 145 | 151 | |
| 146 | 152 | // Never more than 100%! |
| 147 | 153 | $context['continue_percent'] = min($context['continue_percent'], 100); |
@@ -609,8 +615,9 @@ discard block |
||
| 609 | 615 | $row['myid_last_msg'] = (int) $row['myid_last_msg']; |
| 610 | 616 | |
| 611 | 617 | // Not really a problem? |
| 612 | - if ($row['id_first_msg'] == $row['myid_first_msg'] && $row['id_last_msg'] == $row['myid_last_msg'] && $row['approved'] == $row['firstmsg_approved']) |
|
| 613 | - return false; |
|
| 618 | + if ($row['id_first_msg'] == $row['myid_first_msg'] && $row['id_last_msg'] == $row['myid_last_msg'] && $row['approved'] == $row['firstmsg_approved']) { |
|
| 619 | + return false; |
|
| 620 | + } |
|
| 614 | 621 | |
| 615 | 622 | $memberStartedID = (int) getMsgMemberID($row['myid_first_msg']); |
| 616 | 623 | $memberUpdatedID = (int) getMsgMemberID($row['myid_last_msg']); |
@@ -634,15 +641,19 @@ discard block |
||
| 634 | 641 | 'message_function' => function ($row) use ($txt, &$context) |
| 635 | 642 | { |
| 636 | 643 | // A pretend error? |
| 637 | - if ($row['id_first_msg'] == $row['myid_first_msg'] && $row['id_last_msg'] == $row['myid_last_msg'] && $row['approved'] == $row['firstmsg_approved']) |
|
| 638 | - return false; |
|
| 644 | + if ($row['id_first_msg'] == $row['myid_first_msg'] && $row['id_last_msg'] == $row['myid_last_msg'] && $row['approved'] == $row['firstmsg_approved']) { |
|
| 645 | + return false; |
|
| 646 | + } |
|
| 639 | 647 | |
| 640 | - if ($row['id_first_msg'] != $row['myid_first_msg']) |
|
| 641 | - $context['repair_errors'][] = sprintf($txt['repair_stats_topics_1'], $row['id_topic'], $row['id_first_msg']); |
|
| 642 | - if ($row['id_last_msg'] != $row['myid_last_msg']) |
|
| 643 | - $context['repair_errors'][] = sprintf($txt['repair_stats_topics_2'], $row['id_topic'], $row['id_last_msg']); |
|
| 644 | - if ($row['approved'] != $row['firstmsg_approved']) |
|
| 645 | - $context['repair_errors'][] = sprintf($txt['repair_stats_topics_5'], $row['id_topic']); |
|
| 648 | + if ($row['id_first_msg'] != $row['myid_first_msg']) { |
|
| 649 | + $context['repair_errors'][] = sprintf($txt['repair_stats_topics_1'], $row['id_topic'], $row['id_first_msg']); |
|
| 650 | + } |
|
| 651 | + if ($row['id_last_msg'] != $row['myid_last_msg']) { |
|
| 652 | + $context['repair_errors'][] = sprintf($txt['repair_stats_topics_2'], $row['id_topic'], $row['id_last_msg']); |
|
| 653 | + } |
|
| 654 | + if ($row['approved'] != $row['firstmsg_approved']) { |
|
| 655 | + $context['repair_errors'][] = sprintf($txt['repair_stats_topics_5'], $row['id_topic']); |
|
| 656 | + } |
|
| 646 | 657 | |
| 647 | 658 | return true; |
| 648 | 659 | }, |
@@ -671,8 +682,9 @@ discard block |
||
| 671 | 682 | $row['my_num_replies'] = (int) $row['my_num_replies']; |
| 672 | 683 | |
| 673 | 684 | // Not really a problem? |
| 674 | - if ($row['my_num_replies'] == $row['num_replies']) |
|
| 675 | - return false; |
|
| 685 | + if ($row['my_num_replies'] == $row['num_replies']) { |
|
| 686 | + return false; |
|
| 687 | + } |
|
| 676 | 688 | |
| 677 | 689 | $smcFunc['db_query']('', ' |
| 678 | 690 | UPDATE {db_prefix}topics |
@@ -689,11 +701,13 @@ discard block |
||
| 689 | 701 | global $txt, $context; |
| 690 | 702 | |
| 691 | 703 | // Just joking? |
| 692 | - if ($row['my_num_replies'] == $row['num_replies']) |
|
| 693 | - return false; |
|
| 704 | + if ($row['my_num_replies'] == $row['num_replies']) { |
|
| 705 | + return false; |
|
| 706 | + } |
|
| 694 | 707 | |
| 695 | - if ($row['num_replies'] != $row['my_num_replies']) |
|
| 696 | - $context['repair_errors'][] = sprintf($txt['repair_stats_topics_3'], $row['id_topic'], $row['num_replies']); |
|
| 708 | + if ($row['num_replies'] != $row['my_num_replies']) { |
|
| 709 | + $context['repair_errors'][] = sprintf($txt['repair_stats_topics_3'], $row['id_topic'], $row['num_replies']); |
|
| 710 | + } |
|
| 697 | 711 | |
| 698 | 712 | return true; |
| 699 | 713 | }, |
@@ -1262,8 +1276,9 @@ discard block |
||
| 1262 | 1276 | $inserts = array(); |
| 1263 | 1277 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
| 1264 | 1278 | { |
| 1265 | - foreach (text2words($row['subject']) as $word) |
|
| 1266 | - $inserts[] = array($word, $row['id_topic']); |
|
| 1279 | + foreach (text2words($row['subject']) as $word) { |
|
| 1280 | + $inserts[] = array($word, $row['id_topic']); |
|
| 1281 | + } |
|
| 1267 | 1282 | if (count($inserts) > 500) |
| 1268 | 1283 | { |
| 1269 | 1284 | $smcFunc['db_insert']('ignore', |
@@ -1276,13 +1291,14 @@ discard block |
||
| 1276 | 1291 | } |
| 1277 | 1292 | } |
| 1278 | 1293 | |
| 1279 | - if (!empty($inserts)) |
|
| 1280 | - $smcFunc['db_insert']('ignore', |
|
| 1294 | + if (!empty($inserts)) { |
|
| 1295 | + $smcFunc['db_insert']('ignore', |
|
| 1281 | 1296 | '{db_prefix}log_search_subjects', |
| 1282 | 1297 | array('word' => 'string', 'id_topic' => 'int'), |
| 1283 | 1298 | $inserts, |
| 1284 | 1299 | array('word', 'id_topic') |
| 1285 | 1300 | ); |
| 1301 | + } |
|
| 1286 | 1302 | }, |
| 1287 | 1303 | 'message_function' => function ($row) |
| 1288 | 1304 | { |
@@ -1541,8 +1557,9 @@ discard block |
||
| 1541 | 1557 | $current_step++; |
| 1542 | 1558 | |
| 1543 | 1559 | // Already done this? |
| 1544 | - if ($_GET['step'] > $current_step) |
|
| 1545 | - continue; |
|
| 1560 | + if ($_GET['step'] > $current_step) { |
|
| 1561 | + continue; |
|
| 1562 | + } |
|
| 1546 | 1563 | |
| 1547 | 1564 | // If we're fixing it but it ain't broke why try? |
| 1548 | 1565 | if ($do_fix && !in_array($error_type, $to_fix)) |
@@ -1571,14 +1588,16 @@ discard block |
||
| 1571 | 1588 | while (!$done) |
| 1572 | 1589 | { |
| 1573 | 1590 | // Make sure there's at least one ID to test. |
| 1574 | - if (isset($test['substeps']) && empty($step_max)) |
|
| 1575 | - break; |
|
| 1591 | + if (isset($test['substeps']) && empty($step_max)) { |
|
| 1592 | + break; |
|
| 1593 | + } |
|
| 1576 | 1594 | |
| 1577 | 1595 | // What is the testing query (Changes if we are testing or fixing) |
| 1578 | - if (!$do_fix) |
|
| 1579 | - $test_query = 'check_query'; |
|
| 1580 | - else |
|
| 1581 | - $test_query = isset($test['fix_query']) ? 'fix_query' : 'check_query'; |
|
| 1596 | + if (!$do_fix) { |
|
| 1597 | + $test_query = 'check_query'; |
|
| 1598 | + } else { |
|
| 1599 | + $test_query = isset($test['fix_query']) ? 'fix_query' : 'check_query'; |
|
| 1600 | + } |
|
| 1582 | 1601 | |
| 1583 | 1602 | // Do the test... |
| 1584 | 1603 | $request = $smcFunc['db_query']('', |
@@ -1588,10 +1607,11 @@ discard block |
||
| 1588 | 1607 | ); |
| 1589 | 1608 | |
| 1590 | 1609 | // Does it need a fix? |
| 1591 | - if (!empty($test['check_type']) && $test['check_type'] == 'count') |
|
| 1592 | - list ($needs_fix) = $smcFunc['db_fetch_row']($request); |
|
| 1593 | - else |
|
| 1594 | - $needs_fix = $smcFunc['db_num_rows']($request); |
|
| 1610 | + if (!empty($test['check_type']) && $test['check_type'] == 'count') { |
|
| 1611 | + list ($needs_fix) = $smcFunc['db_fetch_row']($request); |
|
| 1612 | + } else { |
|
| 1613 | + $needs_fix = $smcFunc['db_num_rows']($request); |
|
| 1614 | + } |
|
| 1595 | 1615 | |
| 1596 | 1616 | $total_queries++; |
| 1597 | 1617 | |
@@ -1603,8 +1623,9 @@ discard block |
||
| 1603 | 1623 | // Assume need to fix. |
| 1604 | 1624 | $found_errors = true; |
| 1605 | 1625 | |
| 1606 | - if (isset($test['message'])) |
|
| 1607 | - $context['repair_errors'][] = $txt[$test['message']]; |
|
| 1626 | + if (isset($test['message'])) { |
|
| 1627 | + $context['repair_errors'][] = $txt[$test['message']]; |
|
| 1628 | + } |
|
| 1608 | 1629 | |
| 1609 | 1630 | // One per row! |
| 1610 | 1631 | elseif (isset($test['messages'])) |
@@ -1614,10 +1635,11 @@ discard block |
||
| 1614 | 1635 | $variables = $test['messages']; |
| 1615 | 1636 | foreach ($variables as $k => $v) |
| 1616 | 1637 | { |
| 1617 | - if ($k == 0 && isset($txt[$v])) |
|
| 1618 | - $variables[$k] = $txt[$v]; |
|
| 1619 | - elseif ($k > 0 && isset($row[$v])) |
|
| 1620 | - $variables[$k] = $row[$v]; |
|
| 1638 | + if ($k == 0 && isset($txt[$v])) { |
|
| 1639 | + $variables[$k] = $txt[$v]; |
|
| 1640 | + } elseif ($k > 0 && isset($row[$v])) { |
|
| 1641 | + $variables[$k] = $row[$v]; |
|
| 1642 | + } |
|
| 1621 | 1643 | } |
| 1622 | 1644 | $context['repair_errors'][] = call_user_func_array('sprintf', $variables); |
| 1623 | 1645 | } |
@@ -1628,13 +1650,15 @@ discard block |
||
| 1628 | 1650 | { |
| 1629 | 1651 | // Find out if there are actually errors. |
| 1630 | 1652 | $found_errors = false; |
| 1631 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1632 | - $found_errors |= $test['message_function']($row); |
|
| 1653 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1654 | + $found_errors |= $test['message_function']($row); |
|
| 1655 | + } |
|
| 1633 | 1656 | } |
| 1634 | 1657 | |
| 1635 | 1658 | // Actually have something to fix? |
| 1636 | - if ($found_errors) |
|
| 1637 | - $to_fix[] = $error_type; |
|
| 1659 | + if ($found_errors) { |
|
| 1660 | + $to_fix[] = $error_type; |
|
| 1661 | + } |
|
| 1638 | 1662 | } |
| 1639 | 1663 | |
| 1640 | 1664 | // We want to fix, we need to fix - so work out what exactly to do! |
@@ -1644,8 +1668,9 @@ discard block |
||
| 1644 | 1668 | if (isset($test['fix_collect'])) |
| 1645 | 1669 | { |
| 1646 | 1670 | $ids = array(); |
| 1647 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1648 | - $ids[] = $row[$test['fix_collect']['index']]; |
|
| 1671 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1672 | + $ids[] = $row[$test['fix_collect']['index']]; |
|
| 1673 | + } |
|
| 1649 | 1674 | if (!empty($ids)) |
| 1650 | 1675 | { |
| 1651 | 1676 | // Fix it! |
@@ -1654,30 +1679,34 @@ discard block |
||
| 1654 | 1679 | } |
| 1655 | 1680 | |
| 1656 | 1681 | // Simply executing a fix it query? |
| 1657 | - elseif (isset($test['fix_it_query'])) |
|
| 1658 | - $smcFunc['db_query']('', |
|
| 1682 | + elseif (isset($test['fix_it_query'])) { |
|
| 1683 | + $smcFunc['db_query']('', |
|
| 1659 | 1684 | $test['fix_it_query'], |
| 1660 | 1685 | array( |
| 1661 | 1686 | ) |
| 1662 | 1687 | ); |
| 1688 | + } |
|
| 1663 | 1689 | |
| 1664 | 1690 | // Do we have some processing to do? |
| 1665 | 1691 | elseif (isset($test['fix_processing'])) |
| 1666 | 1692 | { |
| 1667 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1668 | - $test['fix_processing']($row); |
|
| 1693 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1694 | + $test['fix_processing']($row); |
|
| 1695 | + } |
|
| 1669 | 1696 | } |
| 1670 | 1697 | |
| 1671 | 1698 | // What about the full set of processing? |
| 1672 | - elseif (isset($test['fix_full_processing'])) |
|
| 1673 | - $test['fix_full_processing']($request); |
|
| 1699 | + elseif (isset($test['fix_full_processing'])) { |
|
| 1700 | + $test['fix_full_processing']($request); |
|
| 1701 | + } |
|
| 1674 | 1702 | |
| 1675 | 1703 | // Do we have other things we need to fix as a result? |
| 1676 | 1704 | if (!empty($test['force_fix'])) |
| 1677 | 1705 | { |
| 1678 | - foreach ($test['force_fix'] as $item) |
|
| 1679 | - if (!in_array($item, $to_fix)) |
|
| 1706 | + foreach ($test['force_fix'] as $item) { |
|
| 1707 | + if (!in_array($item, $to_fix)) |
|
| 1680 | 1708 | $to_fix[] = $item; |
| 1709 | + } |
|
| 1681 | 1710 | } |
| 1682 | 1711 | } |
| 1683 | 1712 | } |
@@ -1695,16 +1724,17 @@ discard block |
||
| 1695 | 1724 | if ($_GET['substep'] <= $step_max) |
| 1696 | 1725 | { |
| 1697 | 1726 | pauseRepairProcess($to_fix, $error_type, $step_max); |
| 1727 | + } else { |
|
| 1728 | + $done = true; |
|
| 1698 | 1729 | } |
| 1699 | - else |
|
| 1700 | - $done = true; |
|
| 1730 | + } else { |
|
| 1731 | + $done = true; |
|
| 1701 | 1732 | } |
| 1702 | - else |
|
| 1703 | - $done = true; |
|
| 1704 | 1733 | |
| 1705 | 1734 | // Don't allow more than 1000 queries at a time. |
| 1706 | - if ($total_queries >= 1000) |
|
| 1707 | - pauseRepairProcess($to_fix, $error_type, $step_max, true); |
|
| 1735 | + if ($total_queries >= 1000) { |
|
| 1736 | + pauseRepairProcess($to_fix, $error_type, $step_max, true); |
|
| 1737 | + } |
|
| 1708 | 1738 | } |
| 1709 | 1739 | |
| 1710 | 1740 | // Keep going. |
@@ -1717,8 +1747,9 @@ discard block |
||
| 1717 | 1747 | if ($do_fix) |
| 1718 | 1748 | { |
| 1719 | 1749 | $key = array_search($error_type, $to_fix); |
| 1720 | - if ($key !== false && isset($to_fix[$key])) |
|
| 1721 | - unset($to_fix[$key]); |
|
| 1750 | + if ($key !== false && isset($to_fix[$key])) { |
|
| 1751 | + unset($to_fix[$key]); |
|
| 1752 | + } |
|
| 1722 | 1753 | } |
| 1723 | 1754 | |
| 1724 | 1755 | // Are we done? |
@@ -1741,10 +1772,11 @@ discard block |
||
| 1741 | 1772 | static $createOnce = false; |
| 1742 | 1773 | |
| 1743 | 1774 | // Have we already created it? |
| 1744 | - if ($createOnce) |
|
| 1745 | - return; |
|
| 1746 | - else |
|
| 1747 | - $createOnce = true; |
|
| 1775 | + if ($createOnce) { |
|
| 1776 | + return; |
|
| 1777 | + } else { |
|
| 1778 | + $createOnce = true; |
|
| 1779 | + } |
|
| 1748 | 1780 | |
| 1749 | 1781 | // Back to the forum's default language. |
| 1750 | 1782 | loadLanguage('Admin', $language); |
@@ -1759,8 +1791,9 @@ discard block |
||
| 1759 | 1791 | 'cat_name' => $txt['salvaged_category_name'], |
| 1760 | 1792 | ) |
| 1761 | 1793 | ); |
| 1762 | - if ($smcFunc['db_num_rows']($result) != 0) |
|
| 1763 | - list ($salvageCatID) = $smcFunc['db_fetch_row']($result); |
|
| 1794 | + if ($smcFunc['db_num_rows']($result) != 0) { |
|
| 1795 | + list ($salvageCatID) = $smcFunc['db_fetch_row']($result); |
|
| 1796 | + } |
|
| 1764 | 1797 | $smcFunc['db_free_result']($result); |
| 1765 | 1798 | |
| 1766 | 1799 | if (empty($salvageCatID)) |
@@ -1792,8 +1825,9 @@ discard block |
||
| 1792 | 1825 | 'board_name' => $txt['salvaged_board_name'], |
| 1793 | 1826 | ) |
| 1794 | 1827 | ); |
| 1795 | - if ($smcFunc['db_num_rows']($result) != 0) |
|
| 1796 | - list ($salvageBoardID) = $smcFunc['db_fetch_row']($result); |
|
| 1828 | + if ($smcFunc['db_num_rows']($result) != 0) { |
|
| 1829 | + list ($salvageBoardID) = $smcFunc['db_fetch_row']($result); |
|
| 1830 | + } |
|
| 1797 | 1831 | $smcFunc['db_free_result']($result); |
| 1798 | 1832 | |
| 1799 | 1833 | if (empty($salvageBoardID)) |
@@ -15,8 +15,9 @@ discard block |
||
| 15 | 15 | * @version 2.1 Beta 4 |
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | -if (!defined('SMF')) |
|
| 18 | +if (!defined('SMF')) { |
|
| 19 | 19 | die('No direct access...'); |
| 20 | +} |
|
| 20 | 21 | |
| 21 | 22 | /** |
| 22 | 23 | * Creates a wave file that spells the letters of $word. |
@@ -32,8 +33,9 @@ discard block |
||
| 32 | 33 | global $settings, $user_info; |
| 33 | 34 | |
| 34 | 35 | // Allow max 2 requests per 20 seconds. |
| 35 | - if (($ip = cache_get_data('wave_file/' . $user_info['ip'], 20)) > 2 || ($ip2 = cache_get_data('wave_file/' . $user_info['ip2'], 20)) > 2) |
|
| 36 | - die(header('HTTP/1.1 400 Bad Request')); |
|
| 36 | + if (($ip = cache_get_data('wave_file/' . $user_info['ip'], 20)) > 2 || ($ip2 = cache_get_data('wave_file/' . $user_info['ip2'], 20)) > 2) { |
|
| 37 | + die(header('HTTP/1.1 400 Bad Request')); |
|
| 38 | + } |
|
| 37 | 39 | cache_put_data('wave_file/' . $user_info['ip'], $ip ? $ip + 1 : 1, 20); |
| 38 | 40 | cache_put_data('wave_file/' . $user_info['ip2'], $ip2 ? $ip2 + 1 : 1, 20); |
| 39 | 41 | |
@@ -42,16 +44,19 @@ discard block |
||
| 42 | 44 | mt_srand(end($tmp)); |
| 43 | 45 | |
| 44 | 46 | // Try to see if there's a sound font in the user's language. |
| 45 | - if (file_exists($settings['default_theme_dir'] . '/fonts/sound/a.' . $user_info['language'] . '.wav')) |
|
| 46 | - $sound_language = $user_info['language']; |
|
| 47 | + if (file_exists($settings['default_theme_dir'] . '/fonts/sound/a.' . $user_info['language'] . '.wav')) { |
|
| 48 | + $sound_language = $user_info['language']; |
|
| 49 | + } |
|
| 47 | 50 | |
| 48 | 51 | // English should be there. |
| 49 | - elseif (file_exists($settings['default_theme_dir'] . '/fonts/sound/a.english.wav')) |
|
| 50 | - $sound_language = 'english'; |
|
| 52 | + elseif (file_exists($settings['default_theme_dir'] . '/fonts/sound/a.english.wav')) { |
|
| 53 | + $sound_language = 'english'; |
|
| 54 | + } |
|
| 51 | 55 | |
| 52 | 56 | // Guess not... |
| 53 | - else |
|
| 54 | - return false; |
|
| 57 | + else { |
|
| 58 | + return false; |
|
| 59 | + } |
|
| 55 | 60 | |
| 56 | 61 | // File names are in lower case so lets make sure that we are only using a lower case string |
| 57 | 62 | $word = strtolower($word); |
@@ -61,20 +66,25 @@ discard block |
||
| 61 | 66 | for ($i = 0; $i < strlen($word); $i++) |
| 62 | 67 | { |
| 63 | 68 | $sound_letter = implode('', file($settings['default_theme_dir'] . '/fonts/sound/' . $word{$i} . '.' . $sound_language . '.wav')); |
| 64 | - if (strpos($sound_letter, 'data') === false) |
|
| 65 | - return false; |
|
| 69 | + if (strpos($sound_letter, 'data') === false) { |
|
| 70 | + return false; |
|
| 71 | + } |
|
| 66 | 72 | |
| 67 | 73 | $sound_letter = substr($sound_letter, strpos($sound_letter, 'data') + 8); |
| 68 | 74 | switch ($word{$i} === 's' ? 0 : mt_rand(0, 2)) |
| 69 | 75 | { |
| 70 | - case 0 : for ($j = 0, $n = strlen($sound_letter); $j < $n; $j++) |
|
| 71 | - for ($k = 0, $m = round(mt_rand(15, 25) / 10); $k < $m; $k++) |
|
| 72 | - $sound_word .= $word{$i} === 's' ? $sound_letter{$j} : chr(mt_rand(max(ord($sound_letter{$j}) - 1, 0x00), min(ord($sound_letter{$j}) + 1, 0xFF))); |
|
| 76 | + case 0 : for ($j = 0, $n = strlen($sound_letter); $j < $n; $j++) { |
|
| 77 | + for ($k = 0, $m = round(mt_rand(15, 25) / 10); |
|
| 78 | + } |
|
| 79 | + $k < $m; $k++) { |
|
| 80 | + $sound_word .= $word{$i} === 's' ? $sound_letter{$j} : chr(mt_rand(max(ord($sound_letter{$j}) - 1, 0x00), min(ord($sound_letter{$j}) + 1, 0xFF))); |
|
| 81 | + } |
|
| 73 | 82 | break; |
| 74 | 83 | |
| 75 | 84 | case 1: |
| 76 | - for ($j = 0, $n = strlen($sound_letter) - 1; $j < $n; $j += 2) |
|
| 77 | - $sound_word .= (mt_rand(0, 3) == 0 ? '' : $sound_letter{$j}) . (mt_rand(0, 3) === 0 ? $sound_letter{$j + 1} : $sound_letter{$j}) . (mt_rand(0, 3) === 0 ? $sound_letter{$j} : $sound_letter{$j + 1}) . $sound_letter{$j + 1} . (mt_rand(0, 3) == 0 ? $sound_letter{$j + 1} : ''); |
|
| 85 | + for ($j = 0, $n = strlen($sound_letter) - 1; $j < $n; $j += 2) { |
|
| 86 | + $sound_word .= (mt_rand(0, 3) == 0 ? '' : $sound_letter{$j}) . (mt_rand(0, 3) === 0 ? $sound_letter{$j + 1} : $sound_letter{$j}) . (mt_rand(0, 3) === 0 ? $sound_letter{$j} : $sound_letter{$j + 1}) . $sound_letter{$j + 1} . (mt_rand(0, 3) == 0 ? $sound_letter{$j + 1} : ''); |
|
| 87 | + } |
|
| 78 | 88 | $sound_word .= str_repeat($sound_letter{$n}, 2); |
| 79 | 89 | break; |
| 80 | 90 | |
@@ -82,10 +92,12 @@ discard block |
||
| 82 | 92 | $shift = 0; |
| 83 | 93 | for ($j = 0, $n = strlen($sound_letter); $j < $n; $j++) |
| 84 | 94 | { |
| 85 | - if (mt_rand(0, 10) === 0) |
|
| 86 | - $shift += mt_rand(-3, 3); |
|
| 87 | - for ($k = 0, $m = round(mt_rand(15, 25) / 10); $k < $m; $k++) |
|
| 88 | - $sound_word .= chr(min(max(ord($sound_letter{$j}) + $shift, 0x00), 0xFF)); |
|
| 95 | + if (mt_rand(0, 10) === 0) { |
|
| 96 | + $shift += mt_rand(-3, 3); |
|
| 97 | + } |
|
| 98 | + for ($k = 0, $m = round(mt_rand(15, 25) / 10); $k < $m; $k++) { |
|
| 99 | + $sound_word .= chr(min(max(ord($sound_letter{$j}) + $shift, 0x00), 0xFF)); |
|
| 100 | + } |
|
| 89 | 101 | } |
| 90 | 102 | break; |
| 91 | 103 | } |