From 6f2711f42206068026097e0966727a1595bd985f 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 d5d505e6..6388f65d 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";