Unverified Commit 113caf70 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

base_url_for: fix config key (it's "base_url")

parent 6c966262
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ sub startup {
		base_url_for => sub {
			my ( $self, $path ) = @_;
			if ( ( my $url = $self->url_for($path) )->base ne q{}
				or not $self->app->config->{base_url_for} )
				or not $self->app->config->{base_url} )
			{
				return $url;
			}