diff --git a/utils/phone_home_stat.php b/utils/phone_home_stat.php index f720f0dd0..d01a736c1 100644 --- a/utils/phone_home_stat.php +++ b/utils/phone_home_stat.php @@ -35,6 +35,14 @@ get_include_path(), realpath($CC_CONFIG['phpDir'] . '/library') ))); +function __autoload($classname){ + global $CC_CONFIG; + $info = explode('_', $classname); + if (isset($info[2])) { + $filename = $info[2].".php"; + require_once($CC_CONFIG['phpDir'].'/application/models/'.$filename); + } +} require_once($CC_CONFIG['phpDir'].'/application/models/User.php'); require_once($CC_CONFIG['phpDir'].'/application/models/StoredFile.php'); require_once($CC_CONFIG['phpDir'].'/application/models/Playlist.php');