From ec4284ec050359b40d0bceda48920432e8c1a1ea Mon Sep 17 00:00:00 2001 From: Reza Ardestani Date: Thu, 27 Dec 2018 10:45:00 +0330 Subject: [PATCH] Fix prefix attribute It's used by some plugins for open graph settings. Related to #356 --- lib/templates/structure/header.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/templates/structure/header.php b/lib/templates/structure/header.php index ccfc85dc..7aced1bb 100644 --- a/lib/templates/structure/header.php +++ b/lib/templates/structure/header.php @@ -11,7 +11,7 @@ beans_output_e( 'beans_doctype', '' ); -beans_open_markup_e( 'beans_html', 'html', str_replace( ' ', '&', str_replace( '"', '', beans_render_function( 'language_attributes' ) ) ) ); +beans_open_markup_e( 'beans_html', 'html', str_replace( '"', '', str_replace( '" ', '&', beans_render_function( 'language_attributes' ) ) ) ); beans_open_markup_e( 'beans_head', 'head' );