--- trunk/lib/Frey/Config.pm 2008/11/01 13:06:31 228 +++ trunk/lib/Frey/Config.pm 2008/11/01 13:17:45 229 @@ -52,7 +52,8 @@ my $key = shift || ref($self); warn "## config $key" if $self->debug; $self->load_config unless defined %config; - confess "$key doesn't exist in config" unless defined $config{ $key }; + #confess "$key doesn't exist in config" unless defined $config{ $key }; + return unless defined $config{ $key }; return $config{ $key }; }