|
发表于 2010-12-27 16:40:50
|
显示全部楼层
不好用。我修改了下。
71行 if(!is_dir(APPPATH.'/controllers/'.implode('/', $tempDir)))
修改为 if(!is_dir(APPPATH.'controllers/'.implode('/', $tempDir)))
追加下面重载函数
/**
* rewrite
* Set the directory name
*
* @access public
* @param string
* @return void
*/
function set_directory($dir)
{
$this->directory = $dir.'/';
} |
|