By default, no longer treat deprecations as errors

Close #363.

See also https://www.youtube.com/watch?v=9crnlHLVdno
This commit is contained in:
Fredrick Brennan
2020-01-20 10:01:23 +08:00
parent a2ba03849f
commit 5e809047ad
2 changed files with 10 additions and 1 deletions

View File

@@ -45,6 +45,9 @@
$config['debug'] = false;
// For development purposes. Displays (and "dies" on) all errors and warnings. Turn on with the above.
$config['verbose_errors'] = true;
// Warn about deprecations? See vichan-devel/vichan#363 and https://www.youtube.com/watch?v=9crnlHLVdno
$config['deprecation_errors'] = false;
// EXPLAIN all SQL queries (when in debug mode).
$config['debug_explain'] = false;