From e31f27ee49ba82e2d175b86b12532fae0b43a120 Mon Sep 17 00:00:00 2001 From: ismaail Date: Tue, 17 May 2016 00:17:55 +0100 Subject: [PATCH] Fix HTML5 Validation The HTML validation of a document with Debugbar enabled gives this error `Element link is missing required attribute property.` The line source of the error is link of stylesheet: ``` ``` --- src/JavascriptRenderer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/JavascriptRenderer.php b/src/JavascriptRenderer.php index ff14394c..77ce8c1a 100644 --- a/src/JavascriptRenderer.php +++ b/src/JavascriptRenderer.php @@ -45,7 +45,7 @@ public function renderHead() 'v' => $this->getModifiedTime('js') ]); - $html = ""; + $html = ""; $html .= ""; if ($this->isJqueryNoConflictEnabled()) {