fixing warnings generated by php 5.3.8 is_a($obj) trying to autoload huge strings

This commit is contained in:
Ralf Becker 2011-11-15 12:22:47 +00:00
parent 8202298db5
commit 988123bb73

View File

@ -1438,6 +1438,9 @@ function try_lang($key,$vars=null)
*/
function __autoload($class)
{
// fixing warnings generated by php 5.3.8 is_a($obj) trying to autoload huge strings
if (strlen($class) > 40) return;
$components = explode('_',$class);
$app = array_shift($components);
// classes using the new naming schema app_class_name, eg. admin_cmd