@@ -469,7 +469,7 @@ discard block |
||
| 469 | 469 | // Figure out the filename we'll tell the browser. |
| 470 | 470 | $datatypes = file_exists($progressfile) ? array_keys($smcFunc['json_decode'](file_get_contents($progressfile), true)) : array('profile'); |
| 471 | 471 | $included_desc = array_map( |
| 472 | - function ($datatype) use ($txt) |
|
| 472 | + function($datatype) use ($txt) |
|
| 473 | 473 | { |
| 474 | 474 | return $txt[$datatype]; |
| 475 | 475 | }, |
@@ -789,9 +789,9 @@ discard block |
||
| 789 | 789 | $xslt_variables = array(); |
| 790 | 790 | |
| 791 | 791 | // Do not change any of these to HTTPS URLs. For explanation, see comments in the buildXmlFeed() function. |
| 792 | - $smf_ns = 'htt'.'p:/'.'/ww'.'w.simple'.'machines.o'.'rg/xml/profile'; |
|
| 793 | - $xslt_ns = 'htt'.'p:/'.'/ww'.'w.w3.o'.'rg/1999/XSL/Transform'; |
|
| 794 | - $html_ns = 'htt'.'p:/'.'/ww'.'w.w3.o'.'rg/1999/xhtml'; |
|
| 792 | + $smf_ns = 'htt' . 'p:/' . '/ww' . 'w.simple' . 'machines.o' . 'rg/xml/profile'; |
|
| 793 | + $xslt_ns = 'htt' . 'p:/' . '/ww' . 'w.w3.o' . 'rg/1999/XSL/Transform'; |
|
| 794 | + $html_ns = 'htt' . 'p:/' . '/ww' . 'w.w3.o' . 'rg/1999/xhtml'; |
|
| 795 | 795 | |
| 796 | 796 | require_once($sourcedir . DIRECTORY_SEPARATOR . 'News.php'); |
| 797 | 797 | |
@@ -1696,14 +1696,14 @@ discard block |
||
| 1696 | 1696 | |
| 1697 | 1697 | if (!empty($context['export_css_header'])) |
| 1698 | 1698 | { |
| 1699 | - $stylesheet['css_js'] .= ' |
|
| 1699 | + $stylesheet['css_js'] .= ' |
|
| 1700 | 1700 | <style><![CDATA[' . "\n" . implode("\n", $context['export_css_header']) . "\n" . ']]> |
| 1701 | 1701 | </style>'; |
| 1702 | 1702 | } |
| 1703 | 1703 | |
| 1704 | 1704 | if (!empty($context['export_javascript_vars'])) |
| 1705 | 1705 | { |
| 1706 | - $stylesheet['css_js'] .= ' |
|
| 1706 | + $stylesheet['css_js'] .= ' |
|
| 1707 | 1707 | <script><![CDATA['; |
| 1708 | 1708 | |
| 1709 | 1709 | foreach ($context['export_javascript_vars'] as $var => $val) |
@@ -1739,7 +1739,7 @@ discard block |
||
| 1739 | 1739 | |
| 1740 | 1740 | if (!empty($context['export_javascript_inline']['standard'])) |
| 1741 | 1741 | { |
| 1742 | - $stylesheet['css_js'] .= ' |
|
| 1742 | + $stylesheet['css_js'] .= ' |
|
| 1743 | 1743 | <script><![CDATA[' . "\n" . implode("\n", $context['export_javascript_inline']['standard']) . "\n" . ']]> |
| 1744 | 1744 | </script>'; |
| 1745 | 1745 | } |
@@ -1751,7 +1751,7 @@ discard block |
||
| 1751 | 1751 | |
| 1752 | 1752 | $stylesheet['css_js'] .= "\n\t" . str_replace("\n", "\n\t", implode("\n", $context['export_javascript_inline']['defer'])); |
| 1753 | 1753 | |
| 1754 | - $stylesheet['css_js'] .= "\n" . '});'. "\n" . ']]> |
|
| 1754 | + $stylesheet['css_js'] .= "\n" . '});' . "\n" . ']]> |
|
| 1755 | 1755 | </script>'; |
| 1756 | 1756 | } |
| 1757 | 1757 | |
@@ -1834,7 +1834,7 @@ discard block |
||
| 1834 | 1834 | |
| 1835 | 1835 | usort( |
| 1836 | 1836 | $context['css_files'], |
| 1837 | - function ($a, $b) |
|
| 1837 | + function($a, $b) |
|
| 1838 | 1838 | { |
| 1839 | 1839 | return $a['options']['order_pos'] < $b['options']['order_pos'] ? -1 : ($a['options']['order_pos'] > $b['options']['order_pos'] ? 1 : 0); |
| 1840 | 1840 | } |
@@ -315,7 +315,7 @@ |
||
| 315 | 315 | |
| 316 | 316 | array_walk_recursive( |
| 317 | 317 | $_POST, |
| 318 | - function (&$value, $key) use ($context, $smcFunc) |
|
| 318 | + function(&$value, $key) use ($context, $smcFunc) |
|
| 319 | 319 | { |
| 320 | 320 | // Normalize Unicode characters. (Does nothing if not in UTF-8 mode.) |
| 321 | 321 | $value = $smcFunc['normalize']($value); |
@@ -256,7 +256,7 @@ |
||
| 256 | 256 | return array(); |
| 257 | 257 | |
| 258 | 258 | // preparse code does a few things which might mess with our parsing |
| 259 | - $body = htmlspecialchars_decode(preg_replace('~<br\s*/?'.'>~', "\n", str_replace(' ', ' ', $body)), ENT_QUOTES); |
|
| 259 | + $body = htmlspecialchars_decode(preg_replace('~<br\s*/?' . '>~', "\n", str_replace(' ', ' ', $body)), ENT_QUOTES); |
|
| 260 | 260 | |
| 261 | 261 | if (empty(self::$excluded_bbc_regex)) |
| 262 | 262 | self::setExcludedBbcRegex(); |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | return false; |
| 93 | 93 | }, |
| 94 | 94 | 'utf8_version' => '8.0', |
| 95 | - 'utf8_version_check' => function (){ |
|
| 95 | + 'utf8_version_check' => function() { |
|
| 96 | 96 | global $db_connection; |
| 97 | 97 | $request = pg_query($db_connection, 'SELECT version()'); |
| 98 | 98 | list ($version) = pg_fetch_row($request); |
@@ -987,7 +987,7 @@ discard block |
||
| 987 | 987 | $incontext['continue'] = 1; |
| 988 | 988 | |
| 989 | 989 | // Check Postgres setting |
| 990 | - if ( $db_type === 'postgresql') |
|
| 990 | + if ($db_type === 'postgresql') |
|
| 991 | 991 | { |
| 992 | 992 | load_database(); |
| 993 | 993 | $result = $smcFunc['db_query']('', ' |
@@ -853,7 +853,7 @@ discard block |
||
| 853 | 853 | 'filename' => empty($user_settings['filename']) ? '' : $user_settings['filename'], |
| 854 | 854 | 'custom_dir' => !empty($user_settings['attachment_type']) && $user_settings['attachment_type'] == 1, |
| 855 | 855 | 'id_attach' => isset($user_settings['id_attach']) ? $user_settings['id_attach'] : 0, |
| 856 | - 'width' => isset($user_settings['attachment_width']) > 0 ? $user_settings['attachment_width']: 0, |
|
| 856 | + 'width' => isset($user_settings['attachment_width']) > 0 ? $user_settings['attachment_width'] : 0, |
|
| 857 | 857 | 'height' => isset($user_settings['attachment_height']) > 0 ? $user_settings['attachment_height'] : 0, |
| 858 | 858 | ), |
| 859 | 859 | 'smiley_set' => isset($user_settings['smiley_set']) ? $user_settings['smiley_set'] : '', |
@@ -2539,7 +2539,7 @@ discard block |
||
| 2539 | 2539 | ); |
| 2540 | 2540 | |
| 2541 | 2541 | // Add the JQuery library to the list of files to load. |
| 2542 | - $jQueryUrls = array ('cdn' => 'https://ajax.googleapis.com/ajax/libs/jquery/'. JQUERY_VERSION . '/jquery.min.js', 'jquery_cdn' => 'https://code.jquery.com/jquery-'. JQUERY_VERSION . '.min.js', 'microsoft_cdn' => 'https://ajax.aspnetcdn.com/ajax/jQuery/jquery-'. JQUERY_VERSION . '.min.js'); |
|
| 2542 | + $jQueryUrls = array('cdn' => 'https://ajax.googleapis.com/ajax/libs/jquery/' . JQUERY_VERSION . '/jquery.min.js', 'jquery_cdn' => 'https://code.jquery.com/jquery-' . JQUERY_VERSION . '.min.js', 'microsoft_cdn' => 'https://ajax.aspnetcdn.com/ajax/jQuery/jquery-' . JQUERY_VERSION . '.min.js'); |
|
| 2543 | 2543 | |
| 2544 | 2544 | if (isset($modSettings['jquery_source']) && array_key_exists($modSettings['jquery_source'], $jQueryUrls)) |
| 2545 | 2545 | loadJavaScriptFile($jQueryUrls[$modSettings['jquery_source']], array('external' => true, 'seed' => false), 'smf_jquery'); |
@@ -2780,8 +2780,7 @@ discard block |
||
| 2780 | 2780 | $context['css_files_order'] = array(); |
| 2781 | 2781 | |
| 2782 | 2782 | $params['seed'] = (!array_key_exists('seed', $params) || (array_key_exists('seed', $params) && $params['seed'] === true)) ? |
| 2783 | - (array_key_exists('browser_cache', $context) ? $context['browser_cache'] : '') : |
|
| 2784 | - (is_string($params['seed']) ? '?' . ltrim($params['seed'], '?') : ''); |
|
| 2783 | + (array_key_exists('browser_cache', $context) ? $context['browser_cache'] : '') : (is_string($params['seed']) ? '?' . ltrim($params['seed'], '?') : ''); |
|
| 2785 | 2784 | $params['force_current'] = isset($params['force_current']) ? $params['force_current'] : false; |
| 2786 | 2785 | $themeRef = !empty($params['default_theme']) ? 'default_theme' : 'theme'; |
| 2787 | 2786 | $params['minimize'] = isset($params['minimize']) ? $params['minimize'] : true; |
@@ -2896,8 +2895,7 @@ discard block |
||
| 2896 | 2895 | global $settings, $context, $modSettings; |
| 2897 | 2896 | |
| 2898 | 2897 | $params['seed'] = (!array_key_exists('seed', $params) || (array_key_exists('seed', $params) && $params['seed'] === true)) ? |
| 2899 | - (array_key_exists('browser_cache', $context) ? $context['browser_cache'] : '') : |
|
| 2900 | - (is_string($params['seed']) ? '?' . ltrim($params['seed'], '?') : ''); |
|
| 2898 | + (array_key_exists('browser_cache', $context) ? $context['browser_cache'] : '') : (is_string($params['seed']) ? '?' . ltrim($params['seed'], '?') : ''); |
|
| 2901 | 2899 | $params['force_current'] = isset($params['force_current']) ? $params['force_current'] : false; |
| 2902 | 2900 | $themeRef = !empty($params['default_theme']) ? 'default_theme' : 'theme'; |
| 2903 | 2901 | $params['async'] = isset($params['async']) ? $params['async'] : false; |
@@ -3687,8 +3685,7 @@ discard block |
||
| 3687 | 3685 | |
| 3688 | 3686 | // What accelerator we are going to try. |
| 3689 | 3687 | $cache_class_name = !empty($cache_accelerator) ? $cache_accelerator : CacheApi::APIS_DEFAULT; |
| 3690 | - $fully_qualified_class_name = !empty($overrideCache) ? $overrideCache : |
|
| 3691 | - CacheApi::APIS_NAMESPACE . $cache_class_name; |
|
| 3688 | + $fully_qualified_class_name = !empty($overrideCache) ? $overrideCache : CacheApi::APIS_NAMESPACE . $cache_class_name; |
|
| 3692 | 3689 | |
| 3693 | 3690 | // Do some basic tests. |
| 3694 | 3691 | if (class_exists($fully_qualified_class_name)) |
@@ -3992,7 +3989,7 @@ discard block |
||
| 3992 | 3989 | $auth_secret = hash_file('sha256', $boarddir . '/Settings.php'); |
| 3993 | 3990 | |
| 3994 | 3991 | // Set the last error to now, but only every 15 minutes. Don't need to flood the logs. |
| 3995 | - if (empty($db_last_error) || ($db_last_error + 60*15) <= time()) |
|
| 3992 | + if (empty($db_last_error) || ($db_last_error + 60 * 15) <= time()) |
|
| 3996 | 3993 | { |
| 3997 | 3994 | updateDbLastError(time()); |
| 3998 | 3995 | loadLanguage('Errors'); |
@@ -871,7 +871,7 @@ |
||
| 871 | 871 | // Intercept cookie? |
| 872 | 872 | call_integration_hook('integrate_cookie', array($name, $value, $expire, $path, $domain, $secure, $httponly, $samesite)); |
| 873 | 873 | |
| 874 | - if(PHP_VERSION_ID < 70300) |
|
| 874 | + if (PHP_VERSION_ID < 70300) |
|
| 875 | 875 | return setcookie($name, $value, $expire, $path . ';samesite=' . $samesite, $domain, $secure, $httponly); |
| 876 | 876 | else |
| 877 | 877 | return setcookie($name, $value, array( |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | } |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | - $unnotified = array_filter($this->members['watching'], function ($member) { |
|
| 190 | + $unnotified = array_filter($this->members['watching'], function($member) { |
|
| 191 | 191 | return empty($member['sent']); |
| 192 | 192 | }); |
| 193 | 193 | |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | if ($type == 'edit' || !empty($this->_details['respawns'])) |
| 197 | 197 | { |
| 198 | 198 | // Notifications about modified posts only go to members who were mentioned or quoted |
| 199 | - $this->members['watching'] = $type == 'edit' ? array(): $unnotified; |
|
| 199 | + $this->members['watching'] = $type == 'edit' ? array() : $unnotified; |
|
| 200 | 200 | |
| 201 | 201 | // If this post has no quotes or mentions, just delete any obsolete alerts and bail out. |
| 202 | 202 | if (empty($this->members['quoted']) && empty($this->members['mentioned'])) |
@@ -512,8 +512,7 @@ discard block |
||
| 512 | 512 | if (!empty($member_data['id_topic']) && $type != 'topic' && !empty($this->prefs[$member_id])) |
| 513 | 513 | { |
| 514 | 514 | $pref = !empty($this->prefs[$member_id]['topic_notify_' . $topicOptions['id']]) ? |
| 515 | - $this->prefs[$member_id]['topic_notify_' . $topicOptions['id']] : |
|
| 516 | - (!empty($this->prefs[$member_id]['topic_notify']) ? $this->prefs[$member_id]['topic_notify'] : 0); |
|
| 515 | + $this->prefs[$member_id]['topic_notify_' . $topicOptions['id']] : (!empty($this->prefs[$member_id]['topic_notify']) ? $this->prefs[$member_id]['topic_notify'] : 0); |
|
| 517 | 516 | |
| 518 | 517 | $message_type = 'notification_' . $type; |
| 519 | 518 | |
@@ -532,8 +531,7 @@ discard block |
||
| 532 | 531 | elseif ($type == 'topic') |
| 533 | 532 | { |
| 534 | 533 | $pref = !empty($this->prefs[$member_id]['board_notify_' . $topicOptions['board']]) ? |
| 535 | - $this->prefs[$member_id]['board_notify_' . $topicOptions['board']] : |
|
| 536 | - (!empty($this->prefs[$member_id]['board_notify']) ? $this->prefs[$member_id]['board_notify'] : 0); |
|
| 534 | + $this->prefs[$member_id]['board_notify_' . $topicOptions['board']] : (!empty($this->prefs[$member_id]['board_notify']) ? $this->prefs[$member_id]['board_notify'] : 0); |
|
| 537 | 535 | |
| 538 | 536 | $content_type = 'board'; |
| 539 | 537 | |
@@ -758,7 +758,7 @@ discard block |
||
| 758 | 758 | // Filter out any redundant separators before we start the loop |
| 759 | 759 | $context['config_vars'] = array_filter( |
| 760 | 760 | $context['config_vars'], |
| 761 | - function ($v) use ($context) |
|
| 761 | + function($v) use ($context) |
|
| 762 | 762 | { |
| 763 | 763 | static $config_vars, $prev; |
| 764 | 764 | |
@@ -1659,7 +1659,7 @@ discard block |
||
| 1659 | 1659 | echo ' |
| 1660 | 1660 | <form action="' . $scripturl . '?action=admin;area=search" method="post" accept-charset="' . $context['character_set'] . '" class="admin_search"> |
| 1661 | 1661 | <span class="main_icons filter centericon"></span> |
| 1662 | - <input type="search" name="search_term" placeholder="', $txt['admin_search'], '"', isset($context['search_term']) ? ' value="' . $context['search_term'] . '"' : '','> |
|
| 1662 | + <input type="search" name="search_term" placeholder="', $txt['admin_search'], '"', isset($context['search_term']) ? ' value="' . $context['search_term'] . '"' : '', '> |
|
| 1663 | 1663 | <select name="search_type"> |
| 1664 | 1664 | <option value="internal"', (empty($context['admin_preferences']['sb']) || $context['admin_preferences']['sb'] == 'internal' ? ' selected' : ''), '>', $txt['admin_search_type_internal'], '</option> |
| 1665 | 1665 | <option value="member"', (!empty($context['admin_preferences']['sb']) && $context['admin_preferences']['sb'] == 'member' ? ' selected' : ''), '>', $txt['admin_search_type_member'], '</option> |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | require_once($sourcedir . '/Subs-Compat.php'); |
| 83 | 83 | |
| 84 | 84 | // If $maintenance is set specifically to 2, then we're upgrading or something. |
| 85 | -if (!empty($maintenance) && 2 === $maintenance) |
|
| 85 | +if (!empty($maintenance) && 2 === $maintenance) |
|
| 86 | 86 | { |
| 87 | 87 | display_maintenance_message(); |
| 88 | 88 | } |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | * |
| 99 | 99 | * @param string $class The fully-qualified class name. |
| 100 | 100 | */ |
| 101 | -spl_autoload_register(function ($class) use ($sourcedir) |
|
| 101 | +spl_autoload_register(function($class) use ($sourcedir) |
|
| 102 | 102 | { |
| 103 | 103 | $classMap = array( |
| 104 | 104 | 'ReCaptcha\\' => 'ReCaptcha/', |