diff --git a/includes/EmbedVideo.php b/includes/EmbedVideo.php index bf41d2b..611144e 100644 --- a/includes/EmbedVideo.php +++ b/includes/EmbedVideo.php @@ -152,7 +152,7 @@ public static function parseEVL( Parser $parser, PPFrame $frame, array $args ): $value = trim( $frame->expand( $arg ) ); if ( str_contains( $value, '=' ) ) { - $parts = array_map( 'trim', explode( '=', $value ) ); + $parts = array_map( 'trim', explode( '=', $value, 1 ) ); $expandedArgs[$parts[0]] = $parts[1] ?? null; } else {