Changeset 2621 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-autoloader.php
- Timestamp:
- 02/25/2016 10:49:24 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-autoloader.php
r2611 r2621 5 5 * An Autoloader which respects WordPress's filename standards. 6 6 * 7 * @package WordPressdotorg _Plugin_Directory7 * @package WordPressdotorg\Plugin_Directory\Autoloader 8 8 */ 9 9 class Autoloader { … … 27 27 $class = substr( $class, $this->prefix_length + 1 ); 28 28 $class = strtolower( $class ); 29 $file = '';29 $file = ''; 30 30 31 31 if ( false !== ( $last_ns_pos = strripos( $class, self::NS_SEPARATOR ) ) ) { … … 43 43 } 44 44 } 45 46 45 } 47 46
Note: See TracChangeset
for help on using the changeset viewer.