Update main.inc.php

This commit is contained in:
Laurent Destailleur 2018-05-10 13:12:24 +02:00 committed by GitHub
parent 70a185a9e6
commit a6966fe295
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1234,25 +1234,6 @@ function top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs
print '<link rel="stylesheet" type="text/css" href="'.$themepath.$themeparam.'">'."\n";
if (! empty($conf->global->MAIN_FIX_FLASH_ON_CHROME)) print '<!-- Includes CSS that does not exists as a workaround of flash bug of chrome -->'."\n".'<link rel="stylesheet" type="text/css" href="filethatdoesnotexiststosolvechromeflashbug">'."\n";
//Overload css files to the current theme
// Check if the /theme/nameoftheme/style folder exists and add the contains css files to head
if (file_exists(dirname(dol_buildpath($conf->css, 0))."/style"))
{
//browse the style dir and add the contains css files
if ($handle = opendir(dirname(dol_buildpath($conf->css, 0))."/style"))
{
while (false !== ($entry = readdir($handle)))
{
list($filename, $extension) = explode(".", $entry);
if ($entry !== '.' && $entry !== '..' && $extension == 'css')
{
print '<link rel="stylesheet" type="text/css" href="'.dirname(dol_buildpath($conf->css, 1))."/style/".$entry.'">'."\n";
}
}
closedir($handle);
}
}
// CSS forced by modules (relative url starting with /)
if (! empty($conf->modules_parts['css']))
{