@@ -104,7 +104,7 @@ |
||
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/', |
@@ -1826,7 +1826,7 @@ |
||
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 | }); |
@@ -1827,7 +1827,7 @@ |
||
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 |
@@ -1730,7 +1730,7 @@ |
||
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])) |