Minahito
minah****@users*****
2006年 9月 1日 (金) 12:09:07 JST
Index: xoops2jp/html/kernel/XCube_Controller.class.php diff -u xoops2jp/html/kernel/XCube_Controller.class.php:1.1.2.16 xoops2jp/html/kernel/XCube_Controller.class.php:1.1.2.17 --- xoops2jp/html/kernel/XCube_Controller.class.php:1.1.2.16 Wed Aug 30 19:05:15 2006 +++ xoops2jp/html/kernel/XCube_Controller.class.php Fri Sep 1 12:09:07 2006 @@ -1,7 +1,7 @@ <?php /** * @package XCube - * @version $Id: XCube_Controller.class.php,v 1.1.2.16 2006/08/30 10:05:15 minahito Exp $ + * @version $Id: XCube_Controller.class.php,v 1.1.2.17 2006/09/01 03:09:07 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -13,6 +13,10 @@ require_once XOOPS_ROOT_PATH . "/kernel/XCube_UserAccount.class.php"; +require_once XOOPS_ROOT_PATH . "/kernel/XCube_Object.class.php"; +require_once XOOPS_ROOT_PATH . "/kernel/XCube_Service.class.php"; + + /** * Virtual front controller class */ @@ -346,7 +350,7 @@ function &_createServiceManager() { - require_once XOOPS_ROOT_PATH . "/class/XCube_ServiceManager.class.php"; + require_once XOOPS_ROOT_PATH . "/kernel/XCube_ServiceManager.class.php"; $serviceManager =& new XCube_ServiceManager(); return $serviceManager; }