Subject: | blech warnings |
Undef warnings sometimes. Patchy patch:
Index: General.pm
===================================================================
--- General.pm (revision 93)
+++ General.pm (working copy)
@@ -869,7 +869,7 @@
}
}
else {
- if($this->{ForceArray} && $value =~ /^\[\s*(.+?)\s*\]$/) {
+ if($this->{ForceArray} && defined $value && $value =~ /^\[\s*
(.+?)\s*\]$/) {
# force single value array entry
push @{$config->{$option}}, $this->_parse_value($config,
$option, $1);
}