From 2bc1a32105cbba50e323d9d3a7bb1ba0672022ee Mon Sep 17 00:00:00 2001 From: Fred Brennan Date: Mon, 29 Aug 2022 11:48:38 -0400 Subject: [PATCH] Flip insane default for non-developers --- README.md | 2 ++ inc/config.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e8c0a7fe..5ce1b597 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ vichan - A lightweight and full featured PHP imageboard. **Vichan has next to no active development.** +As of 29 August 2022, though, it supports PHP8.1. + About ------------ vichan is a free light-weight, fast, highly configurable and user-friendly diff --git a/inc/config.php b/inc/config.php index 42b09e0e..c898555b 100644 --- a/inc/config.php +++ b/inc/config.php @@ -44,7 +44,7 @@ // Shows some extra information at the bottom of pages. Good for development/debugging. $config['debug'] = false; // For development purposes. Displays (and "dies" on) all errors and warnings. Turn on with the above. - $config['verbose_errors'] = true; + $config['verbose_errors'] = false; // Warn about deprecations? See vichan-devel/vichan#363 and https://www.youtube.com/watch?v=9crnlHLVdno $config['deprecation_errors'] = false;