Passed
Pull Request — release-2.1 (#6406)
by Mathias
05:19
created
Themes/default/Profile.template.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1721,7 +1721,7 @@  discard block
 block discarded – undo
1721 1721
 		{
1722 1722
 			// Avoid double separators and empty titled sections
1723 1723
 			$empty_section = true;
1724
-			for ($j=$i+1; $j < count($context['theme_options']); $j++)
1724
+			for ($j = $i + 1; $j < count($context['theme_options']); $j++)
1725 1725
 			{
1726 1726
 				// Found another separator, so we're done
1727 1727
 				if (!is_array($context['theme_options'][$j]))
@@ -2700,8 +2700,7 @@  discard block
 block discarded – undo
2700 2700
 		foreach ($context['post_errors'] as $error)
2701 2701
 		{
2702 2702
 			$text_key_error = $error == 'password_short' ?
2703
-				sprintf($txt['profile_error_' . $error], (empty($modSettings['password_strength']) ? 4 : 8)) :
2704
-				$txt['profile_error_' . $error];
2703
+				sprintf($txt['profile_error_' . $error], (empty($modSettings['password_strength']) ? 4 : 8)) : $txt['profile_error_' . $error];
2705 2704
 
2706 2705
 			echo '
2707 2706
 				<li>', isset($txt['profile_error_' . $error]) ? $text_key_error : $error, '</li>';
Please login to merge, or discard this patch.
Sources/Subs-Db-postgresql.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
 		display_db_error();
76 76
 
77 77
 	// We need to escape ' and \
78
-	$db_passwd = str_replace(array('\\','\''), array('\\\\','\\\''), $db_passwd);
78
+	$db_passwd = str_replace(array('\\', '\''), array('\\\\', '\\\''), $db_passwd);
79 79
 
80 80
 	// Since pg_connect doesn't feed error info to pg_last_error, we have to catch issues with a try/catch.
81 81
 	set_error_handler(function($errno, $errstr) {
82
-		throw new ErrorException($errstr, $errno);});
82
+		throw new ErrorException($errstr, $errno); });
83 83
 	try
84 84
 	{
85 85
 		if (!empty($db_options['persist']))
@@ -938,7 +938,7 @@  discard block
 block discarded – undo
938 938
 	if (filter_var($error_array[2], FILTER_VALIDATE_IP) === false)
939 939
 		$error_array[2] = null;
940 940
 
941
-	if(empty($db_persist))
941
+	if (empty($db_persist))
942 942
 	{ // without pooling
943 943
 		if (empty($pg_error_data_prep))
944 944
 			$pg_error_data_prep = pg_prepare($db_connection, 'smf_log_errors',
Please login to merge, or discard this patch.
Sources/ManageServer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1638,7 +1638,7 @@
 block discarded – undo
1638 1638
 	$cacheAPIdir = $sourcedir . '/Cache';
1639 1639
 
1640 1640
 	$loadedApis = array();
1641
-	$apis_dir = $cacheAPIdir .'/'. CacheApi::APIS_FOLDER;
1641
+	$apis_dir = $cacheAPIdir . '/' . CacheApi::APIS_FOLDER;
1642 1642
 
1643 1643
 	$api_classes = new GlobIterator($apis_dir . '/*.php', FilesystemIterator::NEW_CURRENT_AND_KEY);
1644 1644
 
Please login to merge, or discard this patch.
Sources/Subs-BoardIndex.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -195,8 +195,7 @@
 block discarded – undo
195 195
 				);
196 196
 
197 197
 				$categories[$row_board['id_cat']]['link'] = '<a id="c' . $row_board['id_cat'] . '"></a>' . (!$context['user']['is_guest'] ?
198
-						'<a href="' . $scripturl . '?action=unread;c=' . $row_board['id_cat'] . '" title="' . sprintf($txt['new_posts_in_category'], $row_board['cat_name']) . '">' . $row_board['cat_name'] . '</a>' :
199
-						$row_board['cat_name']);
198
+						'<a href="' . $scripturl . '?action=unread;c=' . $row_board['id_cat'] . '" title="' . sprintf($txt['new_posts_in_category'], $row_board['cat_name']) . '">' . $row_board['cat_name'] . '</a>' : $row_board['cat_name']);
200 199
 
201 200
 			}
202 201
 
Please login to merge, or discard this patch.
Sources/Subs-Boards.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -851,7 +851,7 @@  discard block
 block discarded – undo
851 851
 
852 852
 	clean_cache('data');
853 853
 
854
-	cache_put_data('parsed_boards_descriptions_'. $parsed_boards_cat_id, $already_parsed_boards, 864000);
854
+	cache_put_data('parsed_boards_descriptions_' . $parsed_boards_cat_id, $already_parsed_boards, 864000);
855 855
 
856 856
 	if (empty($boardOptions['dont_log']))
857 857
 		logAction('edit_board', array('board' => $board_id), 'admin');
@@ -1579,7 +1579,7 @@  discard block
 block discarded – undo
1579 1579
 			$context['description_allowed_tags']
1580 1580
 		);
1581 1581
 
1582
-	cache_put_data('parsed_boards_descriptions_'. $category_id, $already_parsed_boards, 864000);
1582
+	cache_put_data('parsed_boards_descriptions_' . $category_id, $already_parsed_boards, 864000);
1583 1583
 
1584 1584
 	return $already_parsed_boards;
1585 1585
 }
Please login to merge, or discard this patch.
Themes/default/Packages.template.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -455,7 +455,7 @@
 block discarded – undo
455 455
 
456 456
 	elseif ($context['uninstalling'])
457 457
 		echo '
458
-			', $txt['package_uninstall_done'] .' <br>
458
+			', $txt['package_uninstall_done'] . ' <br>
459 459
 			', '<a href="', $context['keep_url'], '" class="button">', $txt['package_keep'], '</a>', '<a href="', $context['remove_url'], '" class="button">', $txt['package_delete2'], '</a>';
460 460
 
461 461
 	elseif ($context['install_finished'])
Please login to merge, or discard this patch.
Sources/Subs-Timezones.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 		output will be 'Mountain Time (MST/MDT)' for America/Denver vs.
51 51
 		'Mountain Standard Time (MST)' for America/Phoenix.
52 52
 	 */
53
-	$tzid_metazones =  array(
53
+	$tzid_metazones = array(
54 54
 		// Africa_Central (no DST)
55 55
 		'Africa/Maputo' => 'Africa_Central',
56 56
 
Please login to merge, or discard this patch.
Sources/Load.php 1 patch
Spacing   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2717,8 +2717,7 @@  discard block
 block discarded – undo
2717 2717
 		$context['css_files_order'] = array();
2718 2718
 
2719 2719
 	$params['seed'] = (!array_key_exists('seed', $params) || (array_key_exists('seed', $params) && $params['seed'] === true)) ?
2720
-		(array_key_exists('browser_cache', $context) ? $context['browser_cache'] : '') :
2721
-		(is_string($params['seed']) ? '?' . ltrim($params['seed'], '?') : '');
2720
+		(array_key_exists('browser_cache', $context) ? $context['browser_cache'] : '') : (is_string($params['seed']) ? '?' . ltrim($params['seed'], '?') : '');
2722 2721
 	$params['force_current'] = isset($params['force_current']) ? $params['force_current'] : false;
2723 2722
 	$themeRef = !empty($params['default_theme']) ? 'default_theme' : 'theme';
2724 2723
 	$params['minimize'] = isset($params['minimize']) ? $params['minimize'] : true;
@@ -2832,8 +2831,7 @@  discard block
 block discarded – undo
2832 2831
 	global $settings, $context, $modSettings;
2833 2832
 
2834 2833
 	$params['seed'] = (!array_key_exists('seed', $params) || (array_key_exists('seed', $params) && $params['seed'] === true)) ?
2835
-		(array_key_exists('browser_cache', $context) ? $context['browser_cache'] : '') :
2836
-		(is_string($params['seed']) ? '?' . ltrim($params['seed'], '?') : '');
2834
+		(array_key_exists('browser_cache', $context) ? $context['browser_cache'] : '') : (is_string($params['seed']) ? '?' . ltrim($params['seed'], '?') : '');
2837 2835
 	$params['force_current'] = isset($params['force_current']) ? $params['force_current'] : false;
2838 2836
 	$themeRef = !empty($params['default_theme']) ? 'default_theme' : 'theme';
2839 2837
 	$params['async'] = isset($params['async']) ? $params['async'] : false;
@@ -3572,8 +3570,7 @@  discard block
 block discarded – undo
3572 3570
 
3573 3571
 	// What accelerator we are going to try.
3574 3572
 	$cache_class_name = !empty($cache_accelerator) ? $cache_accelerator : CacheApi::APIS_DEFAULT;
3575
-	$fully_qualified_class_name = !empty($overrideCache) ? $overrideCache :
3576
-		CacheApi::APIS_NAMESPACE . $cache_class_name;
3573
+	$fully_qualified_class_name = !empty($overrideCache) ? $overrideCache : CacheApi::APIS_NAMESPACE . $cache_class_name;
3577 3574
 
3578 3575
 	// Do some basic tests.
3579 3576
 	if (class_exists($fully_qualified_class_name))
Please login to merge, or discard this patch.
Sources/Subs.php 1 patch
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
 			{
378 378
 				$val = 'CASE ';
379 379
 				foreach ($members as $k => $v)
380
-					$val .= 'WHEN id_member = ' . $v . ' THEN '. alert_count($v, true) . ' ';
380
+					$val .= 'WHEN id_member = ' . $v . ' THEN ' . alert_count($v, true) . ' ';
381 381
 
382 382
 				$val = $val . ' END';
383 383
 				$type = 'raw';
@@ -1039,11 +1039,11 @@  discard block
 block discarded – undo
1039 1039
 			// Anything that isn't a specification, punctuation mark, or whitespace.
1040 1040
 			'~(?<!%)\p{L}|[^\p{L}\p{P}\s]~u',
1041 1041
 			// A series of punctuation marks (except %), possibly separated by whitespace.
1042
-			'~([^%\P{P}])(\s*)(?'.'>(\1|[^%\P{Po}])\s*(?!$))*~u',
1042
+			'~([^%\P{P}])(\s*)(?' . '>(\1|[^%\P{Po}])\s*(?!$))*~u',
1043 1043
 			// Unwanted trailing punctuation and whitespace.
1044
-			'~(?'.'>([\p{Pd}\p{Ps}\p{Pi}\p{Pc}]|[^%\P{Po}])\s*)*$~u',
1044
+			'~(?' . '>([\p{Pd}\p{Ps}\p{Pi}\p{Pc}]|[^%\P{Po}])\s*)*$~u',
1045 1045
 			// Unwanted opening punctuation and whitespace.
1046
-			'~^\s*(?'.'>([\p{Pd}\p{Pe}\p{Pf}\p{Pc}]|[^%\P{Po}])\s*)*~u',
1046
+			'~^\s*(?' . '>([\p{Pd}\p{Pe}\p{Pf}\p{Pc}]|[^%\P{Po}])\s*)*~u',
1047 1047
 		),
1048 1048
 		array(
1049 1049
 			'',
@@ -1462,7 +1462,7 @@  discard block
 block discarded – undo
1462 1462
 							$width = !empty($width) ? ' width="' . $width . '"' : '';
1463 1463
 							$height = !empty($height) ? ' height="' . $height . '"' : '';
1464 1464
 
1465
-							$returnContext .= '<div class="videocontainer"><video controls preload="metadata" src="'. $currentAttachment['href'] . '" playsinline' . $width . $height . '><a href="' . $currentAttachment['href'] . '" class="bbc_link">' . $smcFunc['htmlspecialchars'](!empty($data) ? $data : $currentAttachment['name']) . '</a></video></div>' . (!empty($data) && $data != $currentAttachment['name'] ? '<div class="smalltext">' . $data . '</div>' : '');
1465
+							$returnContext .= '<div class="videocontainer"><video controls preload="metadata" src="' . $currentAttachment['href'] . '" playsinline' . $width . $height . '><a href="' . $currentAttachment['href'] . '" class="bbc_link">' . $smcFunc['htmlspecialchars'](!empty($data) ? $data : $currentAttachment['name']) . '</a></video></div>' . (!empty($data) && $data != $currentAttachment['name'] ? '<div class="smalltext">' . $data . '</div>' : '');
1466 1466
 						}
1467 1467
 						// Audio.
1468 1468
 						elseif (strpos($currentAttachment['mime_type'], 'audio/') === 0)
@@ -1470,7 +1470,7 @@  discard block
 block discarded – undo
1470 1470
 							$width = 'max-width:100%; width: ' . (!empty($width) ? $width : '400') . 'px;';
1471 1471
 							$height = !empty($height) ? 'height: ' . $height . 'px;' : '';
1472 1472
 
1473
-							$returnContext .= (!empty($data) && $data != $currentAttachment['name'] ? $data . ' ' : '') . '<audio controls preload="none" src="'. $currentAttachment['href'] . '" class="bbc_audio" style="vertical-align:middle;' . $width . $height . '"><a href="' . $currentAttachment['href'] . '" class="bbc_link">' . $smcFunc['htmlspecialchars'](!empty($data) ? $data : $currentAttachment['name']) . '</a></audio>';
1473
+							$returnContext .= (!empty($data) && $data != $currentAttachment['name'] ? $data . ' ' : '') . '<audio controls preload="none" src="' . $currentAttachment['href'] . '" class="bbc_audio" style="vertical-align:middle;' . $width . $height . '"><a href="' . $currentAttachment['href'] . '" class="bbc_link">' . $smcFunc['htmlspecialchars'](!empty($data) ? $data : $currentAttachment['name']) . '</a></audio>';
1474 1474
 						}
1475 1475
 						// Anything else.
1476 1476
 						else
@@ -1639,7 +1639,7 @@  discard block
 block discarded – undo
1639 1639
 				'type' => 'unparsed_commas_content',
1640 1640
 				'test' => '\d+,\d+\]',
1641 1641
 				'content' => '<a href="$1" target="_blank" rel="noopener">$1</a>',
1642
-				'validate' => function (&$tag, &$data, $disabled)
1642
+				'validate' => function(&$tag, &$data, $disabled)
1643 1643
 				{
1644 1644
 					$scheme = parse_url($data[0], PHP_URL_SCHEME);
1645 1645
 					if (empty($scheme))
@@ -2177,12 +2177,12 @@  discard block
 block discarded – undo
2177 2177
 		$codes[] = array(
2178 2178
 			'tag' => 'cowsay',
2179 2179
 			'parameters' => array(
2180
-				'e' => array('optional' => true, 'quoted' => true, 'match' => '(.*?)', 'default' => 'oo', 'validate' => function ($eyes) use ($smcFunc)
2180
+				'e' => array('optional' => true, 'quoted' => true, 'match' => '(.*?)', 'default' => 'oo', 'validate' => function($eyes) use ($smcFunc)
2181 2181
 					{
2182 2182
 						return $smcFunc['substr']($eyes . 'oo', 0, 2);
2183 2183
 					},
2184 2184
 				),
2185
-				't' => array('optional' => true, 'quoted' => true, 'match' => '(.*?)', 'default' => '  ', 'validate' => function ($tongue) use ($smcFunc)
2185
+				't' => array('optional' => true, 'quoted' => true, 'match' => '(.*?)', 'default' => '  ', 'validate' => function($tongue) use ($smcFunc)
2186 2186
 					{
2187 2187
 						return $smcFunc['substr']($tongue . '  ', 0, 2);
2188 2188
 					},
@@ -3563,7 +3563,7 @@  discard block
 block discarded – undo
3563 3563
 		if ($fp != false)
3564 3564
 		{
3565 3565
 			// Send the HEAD request (since we don't have to worry about chunked, HTTP/1.1 is fine here.)
3566
-			fwrite($fp, 'HEAD /' . $match[2] . ' HTTP/1.1' . "\r\n" . 'Host: ' . $match[1] . "\r\n" . 'user-agent: '. SMF_USER_AGENT . "\r\n" . 'Connection: close' . "\r\n\r\n");
3566
+			fwrite($fp, 'HEAD /' . $match[2] . ' HTTP/1.1' . "\r\n" . 'Host: ' . $match[1] . "\r\n" . 'user-agent: ' . SMF_USER_AGENT . "\r\n" . 'Connection: close' . "\r\n\r\n");
3567 3567
 
3568 3568
 			// Read in the HTTP/1.1 or whatever.
3569 3569
 			$test = substr(fgets($fp, 11), -1);
@@ -4167,7 +4167,7 @@  discard block
 block discarded – undo
4167 4167
 	$toMinify = array();
4168 4168
 	$normal = array();
4169 4169
 
4170
-	uasort($context['css_files'], function ($a, $b)
4170
+	uasort($context['css_files'], function($a, $b)
4171 4171
 	{
4172 4172
 		return $a['options']['order_pos'] < $b['options']['order_pos'] ? -1 : ($a['options']['order_pos'] > $b['options']['order_pos'] ? 1 : 0);
4173 4173
 	});
@@ -5464,7 +5464,7 @@  discard block
 block discarded – undo
5464 5464
 			{
5465 5465
 				fwrite($fp, 'GET ' . ($match[6] !== '/' ? str_replace(' ', '%20', $match[6]) : '') . ' HTTP/1.0' . "\r\n");
5466 5466
 				fwrite($fp, 'Host: ' . $match[3] . (empty($match[5]) ? ($match[2] ? ':443' : '') : ':' . $match[5]) . "\r\n");
5467
-				fwrite($fp, 'user-agent: '. SMF_USER_AGENT . "\r\n");
5467
+				fwrite($fp, 'user-agent: ' . SMF_USER_AGENT . "\r\n");
5468 5468
 				if ($keep_alive)
5469 5469
 					fwrite($fp, 'connection: Keep-Alive' . "\r\n\r\n");
5470 5470
 				else
@@ -5474,7 +5474,7 @@  discard block
 block discarded – undo
5474 5474
 			{
5475 5475
 				fwrite($fp, 'POST ' . ($match[6] !== '/' ? $match[6] : '') . ' HTTP/1.0' . "\r\n");
5476 5476
 				fwrite($fp, 'Host: ' . $match[3] . (empty($match[5]) ? ($match[2] ? ':443' : '') : ':' . $match[5]) . "\r\n");
5477
-				fwrite($fp, 'user-agent: '. SMF_USER_AGENT . "\r\n");
5477
+				fwrite($fp, 'user-agent: ' . SMF_USER_AGENT . "\r\n");
5478 5478
 				if ($keep_alive)
5479 5479
 					fwrite($fp, 'connection: Keep-Alive' . "\r\n");
5480 5480
 				else
@@ -5722,13 +5722,13 @@  discard block
 block discarded – undo
5722 5722
 
5723 5723
 	// UTF-8 occurences of MS special characters
5724 5724
 	$findchars_utf8 = array(
5725
-		"\xe2\x80\x9a",	// single low-9 quotation mark
5726
-		"\xe2\x80\x9e",	// double low-9 quotation mark
5727
-		"\xe2\x80\xa6",	// horizontal ellipsis
5728
-		"\xe2\x80\x98",	// left single curly quote
5729
-		"\xe2\x80\x99",	// right single curly quote
5730
-		"\xe2\x80\x9c",	// left double curly quote
5731
-		"\xe2\x80\x9d",	// right double curly quote
5725
+		"\xe2\x80\x9a", // single low-9 quotation mark
5726
+		"\xe2\x80\x9e", // double low-9 quotation mark
5727
+		"\xe2\x80\xa6", // horizontal ellipsis
5728
+		"\xe2\x80\x98", // left single curly quote
5729
+		"\xe2\x80\x99", // right single curly quote
5730
+		"\xe2\x80\x9c", // left double curly quote
5731
+		"\xe2\x80\x9d", // right double curly quote
5732 5732
 	);
5733 5733
 
5734 5734
 	// windows 1252 / iso equivalents
@@ -5744,13 +5744,13 @@  discard block
 block discarded – undo
5744 5744
 
5745 5745
 	// safe replacements
5746 5746
 	$replacechars = array(
5747
-		',',	// &sbquo;
5748
-		',,',	// &bdquo;
5749
-		'...',	// &hellip;
5750
-		"'",	// &lsquo;
5751
-		"'",	// &rsquo;
5752
-		'"',	// &ldquo;
5753
-		'"',	// &rdquo;
5747
+		',', // &sbquo;
5748
+		',,', // &bdquo;
5749
+		'...', // &hellip;
5750
+		"'", // &lsquo;
5751
+		"'", // &rsquo;
5752
+		'"', // &ldquo;
5753
+		'"', // &rdquo;
5754 5754
 	);
5755 5755
 
5756 5756
 	if ($context['utf8'])
@@ -6090,7 +6090,7 @@  discard block
 block discarded – undo
6090 6090
 			$desc = implode(', ', array_slice(array_unique($tzvalue['locations']), 0, 5)) . (count($tzvalue['locations']) > 5 ? ', ' . $txt['etc'] : '');
6091 6091
 
6092 6092
 		// We don't want abbreviations like '+03' or '-11'.
6093
-		$abbrs = array_filter($tzvalue['abbrs'], function ($abbr) {
6093
+		$abbrs = array_filter($tzvalue['abbrs'], function($abbr) {
6094 6094
 			return !strspn($abbr, '+-');
6095 6095
 		});
6096 6096
 		$abbrs = count($abbrs) == count($tzvalue['abbrs']) ? array_unique($abbrs) : array();
@@ -7054,7 +7054,7 @@  discard block
 block discarded – undo
7054 7054
 			EXISTS (
7055 7055
 				SELECT bpv.id_board
7056 7056
 				FROM ' . $db_prefix . 'board_permissions_view AS bpv
7057
-				WHERE bpv.id_group IN ('. implode(',', $groups) .')
7057
+				WHERE bpv.id_group IN ('. implode(',', $groups) . ')
7058 7058
 					AND bpv.deny = 0
7059 7059
 					AND bpv.id_board = b.id_board
7060 7060
 			)';
@@ -7064,7 +7064,7 @@  discard block
 block discarded – undo
7064 7064
 			AND NOT EXISTS (
7065 7065
 				SELECT bpv.id_board
7066 7066
 				FROM ' . $db_prefix . 'board_permissions_view AS bpv
7067
-				WHERE bpv.id_group IN ( '. implode(',', $groups) .')
7067
+				WHERE bpv.id_group IN ( '. implode(',', $groups) . ')
7068 7068
 					AND bpv.deny = 1
7069 7069
 					AND bpv.id_board = b.id_board
7070 7070
 			)';
@@ -7335,8 +7335,8 @@  discard block
 block discarded – undo
7335 7335
 	$i = 0;
7336 7336
 	while (empty($done))
7337 7337
 	{
7338
-		if (strpos($format, '{'. --$i . '}') !== false)
7339
-			$replacements['{'. $i . '}'] = array_pop($list);
7338
+		if (strpos($format, '{' . --$i . '}') !== false)
7339
+			$replacements['{' . $i . '}'] = array_pop($list);
7340 7340
 		else
7341 7341
 			$done = true;
7342 7342
 	}
@@ -7346,8 +7346,8 @@  discard block
 block discarded – undo
7346 7346
 	$i = 0;
7347 7347
 	while (empty($done))
7348 7348
 	{
7349
-		if (strpos($format, '{'. ++$i . '}') !== false)
7350
-			$replacements['{'. $i . '}'] = array_shift($list);
7349
+		if (strpos($format, '{' . ++$i . '}') !== false)
7350
+			$replacements['{' . $i . '}'] = array_shift($list);
7351 7351
 		else
7352 7352
 			$done = true;
7353 7353
 	}
Please login to merge, or discard this patch.