From 8fe406639b7377b27571693203e909edc0d44c5e Mon Sep 17 00:00:00 2001 From: HWFord <54360213+HWFord@users.noreply.github.com> Date: Wed, 26 Nov 2025 16:47:05 +0100 Subject: [PATCH] (cp fe60f9cfc) 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'];