From 91f1ae986ae7f526f77ab81be4194a34cb296ab4 Mon Sep 17 00:00:00 2001 From: shish Date: Tue, 17 Jul 2007 17:57:13 +0000 Subject: [PATCH] add_x_block -> add_block git-svn-id: file:///home/shish/svn/shimmie2/trunk@317 7f39781d-f577-437e-ae19-be835c7a54ca --- themes/danbooru/themelet.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/danbooru/themelet.class.php b/themes/danbooru/themelet.class.php index f01e4c5f..067a99e9 100644 --- a/themes/danbooru/themelet.class.php +++ b/themes/danbooru/themelet.class.php @@ -4,8 +4,8 @@ class Themelet { public function display_error($page, $title, $message) { $page->set_title($title); $page->set_heading($title); - $page->add_side_block(new NavBlock()); - $page->add_main_block(new Block("Error", $message)); + $page->add_block(new NavBlock()); + $page->add_block(new Block("Error", $message)); } } ?>