From 1f320dc1e7645a2481359ce80c75f002ba21897a Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 8 Jan 2013 12:27:17 +0100 Subject: [PATCH] Fix: Comment must be before tag --- htdocs/main.inc.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/htdocs/main.inc.php b/htdocs/main.inc.php index 9057ae085bd..dabfd81fac5 100644 --- a/htdocs/main.inc.php +++ b/htdocs/main.inc.php @@ -927,10 +927,10 @@ function top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs foreach($filescss as $cssfile) { // cssfile is a relative path - print ''."\n"; + print '">'."\n"; } } } @@ -939,10 +939,10 @@ function top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs { foreach($arrayofcss as $cssfile) { - print ''."\n"; + print '">'."\n"; } } @@ -1087,7 +1087,7 @@ function top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs foreach($filesjs as $jsfile) { // jsfile is a relative path - print ''."\n"; + print ''."\n".''."\n"; } } }