From a7b982bf620f19804d2f762d769e1de820bad252 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Sat, 24 Jul 2021 20:58:17 +0200 Subject: Use correct config option for redirect singles In addition to the last commit, use the correct configuration option in the code to check if single items should be redirected. --- core/include/post/list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/include/post/list.php') diff --git a/core/include/post/list.php b/core/include/post/list.php index ab48552..c696419 100644 --- a/core/include/post/list.php +++ b/core/include/post/list.php @@ -29,7 +29,7 @@ if($currentSite < 1 OR ($currentSite > $lastSite AND $lastSite > 0)) { #=============================================================================== # Single redirect #=============================================================================== -if(Application::get('POST.SINGLE_REDIRECT') === TRUE AND $count === 1) { +if(Application::get('POST.REDIRECT_SINGLE') === TRUE AND $count === 1) { $Post = $PostRepository->getLast(); HTTP::redirect(Application::getEntityURL($Post)); } -- cgit v1.2.3