Changeset 116
- Timestamp:
- 11/11/07 15:34:39 (1 year ago)
- Files:
-
- trunk/XJConf/XJConfLoader.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/XJConf/XJConfLoader.php
r115 r116 30 30 31 31 if (substr(__FILE__, 0, 7) === 'star://') { 32 include str_replace( 'net::xjconf::XJConfLoader', '', __FILE__) . $className;32 include str_replace(__CLASS__, $className, __FILE__); 33 33 } 34 34 … … 45 45 { 46 46 if (substr(__FILE__, 0, 7) === 'star://') { 47 return file_exists(str_replace( 'net::xjconf::XJConfLoader', '', __FILE__) . $className);47 return file_exists(str_replace(__CLASS__, $className, __FILE__)); 48 48 } 49 49
