Skip to content

Commit

Permalink
Fix config migration of LOG_FILE_NAME=null
Browse files Browse the repository at this point in the history
Fixes #801
  • Loading branch information
danmichaelo authored and osma committed Oct 5, 2018
1 parent 27e53ed commit 2634666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrate-config.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function parse_vocabularies_file($vocabulariesFile)
$transitiveLimit = defined('DEFAULT_TRANSITIVE_LIMIT') ? DEFAULT_TRANSITIVE_LIMIT : "?";
$logCaughtExceptions = defined('LOG_CAUGHT_EXCEPTIONS') ? (LOG_CAUGHT_EXCEPTIONS ? "true" : "false") : "?";
$logBrowserConsole = defined('LOG_BROWSER_CONSOLE') ? (LOG_BROWSER_CONSOLE ? "true" : "false") : "?";
$logFileName = defined('LOG_FILE_NAME') ? LOG_FILE_NAME : "?";
$logFileName = defined('LOG_FILE_NAME') && !empty(LOG_FILE_NAME) ? LOG_FILE_NAME : "?";
$templateCache = defined('TEMPLATE_CACHE') ? TEMPLATE_CACHE : "?";
$customCss = defined('CUSTOM_CSS') ? CUSTOM_CSS : "?";
$feedbackAddress = defined('FEEDBACK_ADDRESS') ? FEEDBACK_ADDRESS : "?";
Expand Down

0 comments on commit 2634666

Please sign in to comment.