From d22dad11db40b4286cc0003ca844dc3874a9051f Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Wed, 14 Feb 2018 04:08:45 +0100 Subject: Add configuration option "$ITEM.SINGLE_REDIRECT" Each option can be set to "TRUE" or "FALSE" (the default value is "FALSE"). For example, if you only have one user and "USER.SINGLE_REDIRECT" is set to "TRUE", then requests to "/user/" will be automatically redirected to "/user/username/". --- core/application.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'core/application.php') diff --git a/core/application.php b/core/application.php index 3b1eba7..7e4f731 100644 --- a/core/application.php +++ b/core/application.php @@ -72,6 +72,9 @@ $configuration = [ 'PAGE.DESCRIPTION_SIZE' => 200, 'POST.DESCRIPTION_SIZE' => 200, 'USER.DESCRIPTION_SIZE' => 200, + 'PAGE.SINGLE_REDIRECT' => FALSE, + 'POST.SINGLE_REDIRECT' => FALSE, + 'USER.SINGLE_REDIRECT' => FALSE, 'PAGE.LIST_SORT' => 'time_insert DESC', 'POST.LIST_SORT' => 'time_insert DESC', 'USER.LIST_SORT' => 'time_insert DESC', -- cgit v1.2.3