[-] BO : Add a check on the scandir for the Employees theme

This commit is contained in:
gCharmes
2012-05-23 23:05:13 +00:00
parent 7b740da54f
commit 2464b59eff
@@ -111,7 +111,7 @@ class AdminEmployeesControllerCore extends AdminController
$path = _PS_ADMIN_DIR_.'/themes/';
foreach (scandir($path) as $theme)
if (file_exists($path.$theme.'/css/admin.css'))
if ($theme[0] != '.' && is_dir($path.$theme) && file_exists($path.$theme.'/css/admin.css'))
$this->themes[] = $theme;
$home_tab = Tab::getInstanceFromClassName('adminHome');