From 5711cf8f891b201ab218f29270a3380487cf1bc5 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Thu, 19 Apr 2018 12:07:18 -0400 Subject: [PATCH] *Replace single and double quotes --- lib/Rocket/Async/CSS/Integration/EssentialGrid.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Rocket/Async/CSS/Integration/EssentialGrid.php b/lib/Rocket/Async/CSS/Integration/EssentialGrid.php index 936385e..4c43167 100644 --- a/lib/Rocket/Async/CSS/Integration/EssentialGrid.php +++ b/lib/Rocket/Async/CSS/Integration/EssentialGrid.php @@ -69,6 +69,7 @@ public function block_image( $value ) { if ( $this->in_essentialgrid ) { if ( false === strpos( $value, 'no-lazyload' ) ) { $value = str_replace( 'class="', 'class="no-lazyload ', $value ); + $value = str_replace( "class='", "class='no-lazyload ", $value ); } } return $value;