From fe60f9cfccad7f2fd8f7e212f3dc5038321134f8 Mon Sep 17 00:00:00 2001 From: HWFord <54360213+HWFord@users.noreply.github.com> Date: Wed, 26 Nov 2025 16:44:47 +0100 Subject: [PATCH] fixes #2461 send standard pages conf value to tpl --- index.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.php b/index.php index 6ccc93ed3..3c067a11c 100644 --- a/index.php +++ b/index.php @@ -92,6 +92,10 @@ else } $template->assign('U_CANONICAL', $canonical_url); +// Standard Pages +// Some themes will want to use standard pages so this will let them know +$template->assign('use_standard_pages', conf_get_param('use_standard_pages', false)); + //-------------------------------------------------------------- page title $title = $page['title']; $template_title = $page['section_title'];