Completed
Push — release-2.1 ( d7437d...6e2675 )
by Mathias
18:35
created
index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
  *
105 105
  * @param string $class The fully-qualified class name.
106 106
  */
107
-spl_autoload_register(function ($class) use ($sourcedir)
107
+spl_autoload_register(function($class) use ($sourcedir)
108 108
 {
109 109
 	$classMap = array(
110 110
 		'ReCaptcha\\' => 'ReCaptcha/',
Please login to merge, or discard this patch.
Sources/ManagePermissions.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1826,7 +1826,7 @@
 block discarded – undo
1826 1826
 	if (!empty($excluded_groups))
1827 1827
 	{
1828 1828
 		// Make sure this is an array of integers
1829
-		$excluded_groups = array_filter((array) $excluded_groups, function ($v)
1829
+		$excluded_groups = array_filter((array) $excluded_groups, function($v)
1830 1830
 			{
1831 1831
 				return is_int($v) || is_string($v) && (string) intval($v) === $v;
1832 1832
 			});
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1827,7 +1827,7 @@
 block discarded – undo
1827 1827
 	{
1828 1828
 		// Make sure this is an array of integers
1829 1829
 		$excluded_groups = array_filter((array) $excluded_groups, function ($v)
1830
-			{
1830
+		{
1831 1831
 				return is_int($v) || is_string($v) && (string) intval($v) === $v;
1832 1832
 			});
1833 1833
 
Please login to merge, or discard this patch.
Themes/default/Profile.template.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1730,7 +1730,7 @@
 block discarded – undo
1730 1730
 		{
1731 1731
 			// Avoid double separators and empty titled sections
1732 1732
 			$empty_section = true;
1733
-			for ($j=$i+1; $j <= count($context['theme_options']); $j++)
1733
+			for ($j = $i + 1; $j <= count($context['theme_options']); $j++)
1734 1734
 			{
1735 1735
 				// Found another separator, so we're done
1736 1736
 				if (!is_array($context['theme_options'][$j]))
Please login to merge, or discard this patch.