Skip to content

Commit

Permalink
Skip lines in THEME and PLUGIN files that are blank or consist of not…
Browse files Browse the repository at this point in the history
…hing

but spaces.
  • Loading branch information
jamiemccarthy committed Mar 30, 2003
1 parent 4a668f3 commit 13b5b0b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Slash/Install/Install.pm
Expand Up @@ -556,6 +556,7 @@ sub _getList {

for (@info) {
next if /^#/;
next if /^\s*$/;
my($key, $val) = split(/=/, $_, 2);
$key = lc $key;
if ($key =~ /^(
Expand Down

0 comments on commit 13b5b0b

Please sign in to comment.