mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
fix PHP 8 Fatal error undefined constant EGW_API_INC
This commit is contained in:
parent
3e278b3bd3
commit
52e8aff9ae
@ -85,9 +85,9 @@ spl_autoload_register(function($class)
|
|||||||
// classes using the new naming schema app_class_name, eg. admin_cmd
|
// classes using the new naming schema app_class_name, eg. admin_cmd
|
||||||
isset($components[0]) && file_exists($file = EGW_INCLUDE_ROOT.'/'.$app.'/inc/class.'.$app.'_'.$components[0].'.inc.php') ||
|
isset($components[0]) && file_exists($file = EGW_INCLUDE_ROOT.'/'.$app.'/inc/class.'.$app.'_'.$components[0].'.inc.php') ||
|
||||||
// eGW api classes using the old naming schema, eg. html
|
// eGW api classes using the old naming schema, eg. html
|
||||||
file_exists($file = EGW_API_INC.'/class.'.$class.'.inc.php') ||
|
defined('EGW_API_INC') && (file_exists($file = EGW_API_INC.'/class.'.$class.'.inc.php') ||
|
||||||
// eGW api classes containing multiple classes in on file, eg. egw_exception
|
// eGW api classes containing multiple classes in on file, eg. egw_exception
|
||||||
isset($components[0]) && file_exists($file = EGW_API_INC.'/class.'.$app.'_'.$components[0].'.inc.php') ||
|
isset($components[0]) && file_exists($file = EGW_API_INC.'/class.'.$app.'_'.$components[0].'.inc.php')) ||
|
||||||
// eGW eTemplate classes using the old naming schema, eg. etemplate
|
// eGW eTemplate classes using the old naming schema, eg. etemplate
|
||||||
file_exists($file = EGW_INCLUDE_ROOT.'/etemplate/inc/class.'.$class.'.inc.php') ||
|
file_exists($file = EGW_INCLUDE_ROOT.'/etemplate/inc/class.'.$class.'.inc.php') ||
|
||||||
// classes with an underscore in their name
|
// classes with an underscore in their name
|
||||||
|
Loading…
Reference in New Issue
Block a user