1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-21 05:41:58 +02:00

Issue #991 : Added support for CSS files in the footer of the <body>. Tested in FF successfully, more testing required.

This commit is contained in:
Cameron
2015-05-23 12:02:14 -07:00
parent 999c3d1ded
commit 05083699e4
2 changed files with 15 additions and 1 deletions

View File

@@ -1193,7 +1193,7 @@ class e_jsmanager
$path = $path[1];
if(strpos($path, 'http') !== 0) $path = $tp->replaceConstants($path, 'abs').'?'.$this->getCacheId();
echo $pre.'<link rel="stylesheet" media="'.$media.'" type="text/css" href="'.$path.'" />'.$post;
echo $pre.'<link rel="stylesheet" media="'.$media.'" property="stylesheet" type="text/css" href="'.$path.'" />'.$post;
echo "\n";
continue;
}