From 977cb305f8063d42cc5f554c77595f8c773ef02f Mon Sep 17 00:00:00 2001 From: Shish Date: Tue, 21 Jul 2009 07:39:49 +0100 Subject: [PATCH] custom page is custom --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index cb27dcb2..dcb5105c 100644 --- a/index.php +++ b/index.php @@ -82,7 +82,7 @@ try { // load the theme parts $_theme = $config->get_string("theme", "default"); if(!file_exists("themes/$_theme")) $_theme = "default"; - if(file_exists("themes/$_theme/page.class.php")) require_once "themes/$_theme/page.class.php"; + if(file_exists("themes/$_theme/custompage.class.php")) require_once "themes/$_theme/custompage.class.php"; require_once "themes/$_theme/layout.class.php"; require_once "themes/$_theme/themelet.class.php";