Skip to content

Commit

Permalink
Added parens around a split to fix syntax highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnereese committed Feb 4, 2011
1 parent dc1d36b commit 45ca7b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/MT/Upgrade.pm
Expand Up @@ -745,7 +745,7 @@ sub core_upgrade_functions {
label => 'Removing unused template maps...',
condition => sub {
my $blog = shift;
my @blog_at = split /,/, $blog->archive_type;
my @blog_at = split(/,/, $blog->archive_type);
require MT::TemplateMap;
MT::TemplateMap->remove(
{ blog_id => $blog->id, archive_type => \@blog_at },
Expand Down

0 comments on commit 45ca7b7

Please sign in to comment.