diff options
Diffstat (limited to 'wp-includes/class-wp-matchesmapregex.php')
-rw-r--r-- | wp-includes/class-wp-matchesmapregex.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-includes/class-wp-matchesmapregex.php b/wp-includes/class-wp-matchesmapregex.php index 558bd98..ddca4f2 100644 --- a/wp-includes/class-wp-matchesmapregex.php +++ b/wp-includes/class-wp-matchesmapregex.php @@ -63,8 +63,8 @@ class WP_MatchesMapRegex { * @return string */ public static function apply( $subject, $matches ) { - $oSelf = new WP_MatchesMapRegex( $subject, $matches ); - return $oSelf->output; + $result = new WP_MatchesMapRegex( $subject, $matches ); + return $result->output; } /** |