diff --git a/www/configs/config.master.php b/www/configs/config.master.php index 66e7d9bf..2c6b07f2 100644 --- a/www/configs/config.master.php +++ b/www/configs/config.master.php @@ -41,8 +41,6 @@ define('IMAGES', 'images' . DS); define('ICONS', 'icons' . DS); // media (accessable from outside) define('MEDIA', 'media' . DS); -// flash-root (below media or data) -define('FLASH', 'flash' . DS); // uploads (anything to keep or data) define('UPLOADS', 'uploads' . DS); // files (binaries) (below media or data) diff --git a/www/lib/CoreLibs/Basic.php b/www/lib/CoreLibs/Basic.php index cdc13347..84064aea 100644 --- a/www/lib/CoreLibs/Basic.php +++ b/www/lib/CoreLibs/Basic.php @@ -115,7 +115,7 @@ class Basic // set the paths matching to the valid file types $this->data_path = [ 'P' => PICTURES, - 'F' => FLASH, + 'F' => DATA, 'V' => VIDEOS, 'D' => DOCUMENTS, 'A' => PDFS,