Changeset 2515
- Timestamp:
- 06/06/08 01:39:38 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/release-39/plugins/WXRImporter/lib/WXRImporter/WXRHandler.pm
r1104 r2515 13 13 use MT::Util qw( offset_time_list ); 14 14 15 @WXRImporter::WXRHandler::ISA =qw(XML::SAX::Base);16 17 use constant POST_SEPARATOR => '<!--more-->';# WordPress's separator string15 use base qw(XML::SAX::Base); 16 17 sub POST_SEPARATOR { '<!--more-->'; } # WordPress's separator string 18 18 19 19 sub new { … … 460 460 $post->blog_id($blog->id); 461 461 $post->convert_breaks($self->{convert_breaks}); 462 $post->status($blog->status_default); 462 463 for my $hash (@$hashes) { 463 464 my @hash_array = %$hash;
