Change mandatory folder locations & remove obsolete masks

This commit is contained in:
2026-05-30 01:29:34 +02:00
parent d13fdacdde
commit af7d0f4c86
5 changed files with 43 additions and 86 deletions

View File

@@ -21,7 +21,7 @@ class Mask extends PhpObject
private $oLang;
private $sTimezone;
const MASK_FOLDER = '../src/masks/';
const MASK_FOLDER = '../resources/masks';
const MASK_EXT = '.html';
const START_TAG = 'START';
const END_TAG = 'END';
@@ -79,7 +79,7 @@ class Mask extends PhpObject
public static function getMaskFile($sFileName)
{
return self::MASK_FOLDER.$sFileName.self::MASK_EXT;
return self::MASK_FOLDER.'/'.$sFileName.self::MASK_EXT;
}
public function initFile($sFileName)