We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b83858 commit 8d022b9Copy full SHA for 8d022b9
inc/3rd-party/plugins/sf-move-login.php
@@ -36,10 +36,11 @@ function rocket_add_sfml_exclude_pages( $urls ) {
36
$sfml_slugs = array_map( 'home_url', $sfml_slugs );
37
$sfml_slugs = array_map( 'trailingslashit', $sfml_slugs );
38
$sfml_slugs = array_map( 'rocket_clean_exclude_file', $sfml_slugs );
39
- $sfml_slugs = array_map( function( $sfml_slug ) {
40
- return $sfml_slug . '?';
41
- }, $sfml_slugs );
42
-
+
+ foreach( $sfml_slugs as $key => $slug ) {
+ $sfml_slugs[ $key ] = $slug . '?':
+ }
43
44
return array_merge( $urls, $sfml_slugs );
45
}
46
0 commit comments