Changeset 4930
- Timestamp:
- 10/29/09 11:17:46 (4 weeks ago)
- Files:
-
- 1 modified
-
branches/greyhound/lib/MT/BackupRestore.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/greyhound/lib/MT/BackupRestore.pm
r4749 r4930 142 142 ? $instructions->{$key}{order} 143 143 : 500; 144 $pkg->_create_obj_to_backup( 145 $class, $blog_ids, \@object_hashes, \%populated, $order); 144 145 if ( $class->can('create_obj_to_backup') ) { 146 $class->create_obj_to_backup( 147 $blog_ids, \@object_hashes, \%populated, $order); 148 } 149 else { 150 $pkg->_create_obj_to_backup( 151 $class, $blog_ids, \@object_hashes, \%populated, $order); 152 } 146 153 } 147 154
