Skip to content

Commit

Permalink
Fixed unitialized variable warning in MT::Template
Browse files Browse the repository at this point in the history
  • Loading branch information
jayallen committed Mar 16, 2009
1 parent c8d62a5 commit 3e89466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/MT/Template.pm
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ sub save_widgetset {
$obj->modulesets( join ',', @inst );
}
else {
@inst = split /,/, $obj->modulesets;
@inst = split /,/, $obj->modulesets||'';
}

my @widgets = MT::Template->load(
Expand Down

0 comments on commit 3e89466

Please sign in to comment.