Changeset 13098 for freepbx/branches
- Timestamp:
- 12/20/11 18:13:49 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.10/amp_conf/htdocs/admin/functions.inc.php
r13083 r13098 99 99 /* Special case of TRUE forces all classes to be loaded. Make sure to add new classes to this array 100 100 * as they are added to the autoloader. This was added because the presence of Zend enabled modules 101 * can result in the autoloader function failing. 101 * can result in the autoloader function failing. 102 * 103 * Don't force ampuser though it is always loaded in advance 102 104 * 103 105 * Basically, every 'case' below should have a corresponding entry in the $class array below. 104 106 */ 105 107 if ($class === true) { 106 $class = array(' ampuser','CI_Email','CI_Table','CssMin','component','featurecode','cronmanager','moduleHook','modulelist','notifications','xml2Array','modgettext');108 $class = array('CI_Email','CI_Table','CssMin','component','featurecode','cronmanager','moduleHook','modulelist','notifications','xml2Array','modgettext'); 107 109 } else { 108 110 $class = array($class);
