BUG 7366 Can't create skin from classic skin

In fresh installation Skins folder doesn't exists. Now it is being created before create a new skin
This commit is contained in:
Hugo Loza
2011-08-09 11:51:25 -04:00
parent cc816747ae
commit b72e411ecb

View File

@@ -41,6 +41,11 @@ function updatePageSize() {
}
function skinList() {
//Create Skins custom folder if it doesn't exists
if(!is_dir(PATH_CUSTOM_SKINS)){
G::verifyPath(PATH_CUSTOM_SKINS, true);
}
//Get Skin Config files
$skinListArray = array();
$customSkins = glob(PATH_CUSTOM_SKINS . "*/config.xml");