From: Matthias Schmidt Date: Sun, 20 Jan 2019 09:14:13 +0000 (+0100) Subject: Fix WCFSetup due to undefined option constant X-Git-Tag: 5.2.0_Alpha_1~353 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3acbb79071398e283fa64813527d8164ab5cb0e8;p=GitHub%2FWoltLab%2FWCF.git Fix WCFSetup due to undefined option constant See b5158645d503bd1d8c484001f8a41f7a52449c5f --- diff --git a/constants.php b/constants.php index cfeba96c0a..340e1f9d29 100644 --- a/constants.php +++ b/constants.php @@ -251,3 +251,4 @@ define('CONTACT_FORM_ENABLE_ATTACHMENTS', 0); define('CONTACT_FORM_PRUNE_ATTACHMENTS', 180); define('IMAGE_EXTERNAL_SOURCE_WHITELIST', ''); define('SEARCH_MAX_COMBINED_TAGS', 3); +define('ENABLE_PRODUCTION_DEBUG_MODE', 0); diff --git a/wcfsetup/install/files/options.inc.php b/wcfsetup/install/files/options.inc.php index 7bf07237cf..6b7716a81a 100644 --- a/wcfsetup/install/files/options.inc.php +++ b/wcfsetup/install/files/options.inc.php @@ -36,6 +36,7 @@ define('MODULE_MASTER_PASSWORD', 0); define('TIMEZONE', 'Europe/Berlin'); define('ENABLE_DEBUG_MODE', 1); +define('ENABLE_PRODUCTION_DEBUG_MODE', 1); define('ENABLE_BENCHMARK', 0); define('EXTERNAL_LINK_TARGET_BLANK', 0); define('URL_LEGACY_MODE', 0);