Changeset 6153 for branches/1.1/bb-includes/class.bb-dir-map.php
- Timestamp:
- 12/09/2016 01:58:10 PM (9 years ago)
- File:
-
- 1 edited
-
branches/1.1/bb-includes/class.bb-dir-map.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1/bb-includes/class.bb-dir-map.php
r2393 r6153 15 15 var $_current_file; 16 16 17 function BB_Dir_Map( $root, $args = '' ) {17 function __construct( $root, $args = '' ) { 18 18 if ( !is_dir( $root ) ) { 19 19 $this->error = new WP_Error( 'bb_dir_map', __('Not a valid directory') ); … … 28 28 $this->_current_root = $this->root = rtrim($root, '/\\'); 29 29 $this->map(); 30 } 31 32 function BB_Dir_Map( $root, $args = '' ) { 33 $this->__construct( $root, $args ); 30 34 } 31 35
Note: See TracChangeset
for help on using the changeset viewer.