From e0cc766cc73950fe10f34fc7e300ae3fff883cd4 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Mon, 30 Aug 2021 11:28:06 +0900 Subject: [PATCH] Fix Flash constant calls --- www/configs/config.master.php | 2 -- www/lib/CoreLibs/Basic.php | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) 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,