source: branches/comu/html/error.php @ 2

Revision 2, 579 bytes checked in by root, 17 years ago (diff)

new import

Line 
1<?php
2/*
3 * Copyright(c) 2000-2006 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7
8require_once("./require.php");
9
10class LC_Page {
11    var $arrSession;
12    function LC_Page() {
13        $this->tpl_mainpage = 'error.tpl';
14        $this->tpl_title = '¥¨¥é¡¼';
15    }
16}
17
18$conn = new SC_DBConn();
19$objPage = new LC_Page();
20$objView = new SC_SiteView();
21$objQuery = new SC_Query();
22
23$objView->assignobj($objPage);
24$objView->display(MAIN_FRAME);
25
26//-----------------------------------------------------------------------------------------------------------------------------------
27?>
Note: See TracBrowser for help on using the repository browser.