correction bug

This commit is contained in:
Deltacms 2023-02-03 08:31:53 +01:00
parent 55caa9415a
commit fb88eaab7a
1 changed files with 1 additions and 1 deletions

View File

@ -2187,7 +2187,7 @@ class common {
$vendorFiles = json_decode(file_get_contents($vendorPath . 'inc.json'));
foreach($vendorFiles as $vendorFile) {
if( pathinfo($vendorFile, PATHINFO_EXTENSION) === 'css') {
echo '<link rel="stylesheet" href="' . $vendorPath . $vendorFile'">';
echo '<link rel="stylesheet" href="' . $vendorPath . $vendorFile . '">';
}
}
}