간단한 코드 정리

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3905 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
bnu 2008-03-04 00:00:56 +00:00
parent 1b719c3258
commit 07348d2899

View file

@ -1,7 +1,7 @@
<?php
/**
* @file index.php
* @author zero (zero@zeroboard.com)
* @author zero <zero@zeroboard.com>
* @brief 시작 페이지
*
* zeroboard XE의 시작 페이지
@ -44,14 +44,14 @@
/**
* @brief 필요한 설정 파일들을 include
**/
require_once("./config/config.inc.php");
require_once('./config/config.inc.php');
/**
/**
* @brief Context 객체를 생성하여 초기화
* 모든 Request Argument/ 환경변수등을 세팅
**/
$oContext = &Context::getInstance();
$oContext->init();
$oContext = &Context::getInstance();
$oContext->init();
/**
* @brief ModuleHandler 객체를 생성/ 실행
@ -66,4 +66,4 @@
$oModuleHandler->init();
$oModule = &$oModuleHandler->procModule();
$oModuleHandler->displayContent($oModule);
?>
?>