load class from controller path from third_party

这个提交包含在:
abarrau 2021-04-10 04:41:49 +02:00 提交者 GitHub
父节点 ae4a7e596b
当前提交 ad572219ec
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -402,13 +402,17 @@ if ( ! is_php('5.4'))
$class = ucfirst($RTR->class);
$method = $RTR->method;
if (empty($class) OR ! file_exists(APPPATH.'controllers/'.$RTR->directory.$class.'.php'))
if (empty($class) OR !(file_exists(APPPATH.'controllers/'.$RTR->directory.$class.'.php') OR file_exists(APPPATH.'third_party/controllers/'.$RTR->directory.$class.'.php')))
{
$e404 = TRUE;
}
else
{
require_once(APPPATH.'controllers/'.$RTR->directory.$class.'.php');
if (file_exists(APPPATH.'third_party/controllers/'.$RTR->directory.$class.'.php')) {
require_once(APPPATH.'third_party/controllers/'.$RTR->directory.$class.'.php');
} else {
require_once(APPPATH.'controllers/'.$RTR->directory.$class.'.php');
}
if ( ! class_exists($class, FALSE) OR $method[0] === '_' OR method_exists('CI_Controller', $method))
{