Completed
Push — master ( 054b93...c7a07d )
by Marc
03:18
created
core/lazyload/LazyLoad.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     public function run()
38 38
     {
39 39
         $tag = Html::tag('img', '', ['class' => $this->class, 'data-src' => $this->src, 'data-width' => $this->width, 'data-height' => $this->height]);
40
-        $tag.= '<noscript><img class="'.$this->class.'" src="'.$this->src.'" /></noscript>';
40
+        $tag .= '<noscript><img class="'.$this->class.'" src="'.$this->src.'" /></noscript>';
41 41
         return $tag;
42 42
     }
43 43
 }
44 44
\ No newline at end of file
Please login to merge, or discard this patch.