forked from extern/egroupware
* Mail: fix for Horde_Imap_Client-2.26.0 requiring Horde_Mail-2.5.1 requring Horde_Idna-1.0.1 which stalls our autoloader by calling spl_autoload_register
This commit is contained in:
parent
c041ea1801
commit
13af54802f
@ -1637,8 +1637,8 @@ function __autoload($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') ||
|
||||||
// classes with an underscore in their name
|
// classes with an underscore in their name
|
||||||
!isset($GLOBALS['egw_info']['apps'][$app]) && isset($GLOBALS['egw_info']['apps'][$app . '_' . $components[0]]) && file_exists($file =
|
!isset($GLOBALS['egw_info']['apps'][$app]) && isset($GLOBALS['egw_info']['apps'][$app . '_' . $components[0]]) &&
|
||||||
EGW_INCLUDE_ROOT.'/'.$app.'_'.$components[0].'/inc/class.'.$class.'.inc.php') ||
|
file_exists($file = EGW_INCLUDE_ROOT.'/'.$app.'_'.$components[0].'/inc/class.'.$class.'.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') ||
|
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
|
||||||
@ -1651,7 +1651,7 @@ EGW_INCLUDE_ROOT.'/'.$app.'_'.$components[0].'/inc/class.'.$class.'.inc.php') ||
|
|||||||
!isset($GLOBALS['egw_info']['apps'][$app]) && @include($file = strtr($class, array('_'=>'/','\\'=>'/')).'.php'))
|
!isset($GLOBALS['egw_info']['apps'][$app]) && @include($file = strtr($class, array('_'=>'/','\\'=>'/')).'.php'))
|
||||||
{
|
{
|
||||||
include_once($file);
|
include_once($file);
|
||||||
//error_log("autoloading class $class by include_once($file)");
|
//if (!class_exists($class, false) && !interface_exists($class, false)) error_log("autoloading class $class by include_once($file) failed!");
|
||||||
}
|
}
|
||||||
// allow apps to define an own autoload method
|
// allow apps to define an own autoload method
|
||||||
elseif (isset($GLOBALS['egw_info']['flags']['autoload']) && is_callable($GLOBALS['egw_info']['flags']['autoload']))
|
elseif (isset($GLOBALS['egw_info']['flags']['autoload']) && is_callable($GLOBALS['egw_info']['flags']['autoload']))
|
||||||
@ -1659,6 +1659,8 @@ EGW_INCLUDE_ROOT.'/'.$app.'_'.$components[0].'/inc/class.'.$class.'.inc.php') ||
|
|||||||
call_user_func($GLOBALS['egw_info']['flags']['autoload'],$class);
|
call_user_func($GLOBALS['egw_info']['flags']['autoload'],$class);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// register our autoloader with sql, so other PHP code can use spl_autoload_register, without stalling our autoloader
|
||||||
|
spl_autoload_register('__autoload');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Clasify exception for a headline and log it to error_log, if not running as cli
|
* Clasify exception for a headline and log it to error_log, if not running as cli
|
||||||
|
Loading…
Reference in New Issue
Block a user