Skip to content

Commit

Permalink
Fixed an uninitialized variable warnings in MT::WeblogPublisher
Browse files Browse the repository at this point in the history
  • Loading branch information
jayallen committed Mar 16, 2009
1 parent 3e89466 commit 644fb33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/MT/WeblogPublisher.pm
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ sub rebuild {
# Skip this archive type if the archive type doesn't
# match the kind of entry we've loaded
next unless $archiver;
next if $entry->class ne $archiver->entry_class;
next if $entry->class||'' ne $archiver->entry_class||'';
if ( $archiver->category_based ) {
my $cats = $entry->categories;
CATEGORY: for my $cat (@$cats) {
Expand Down

0 comments on commit 644fb33

Please sign in to comment.