summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Bugzilla/Config/Common.pm2
-rw-r--r--Bugzilla/Config/Core.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Config/Common.pm b/Bugzilla/Config/Common.pm
index 4ca48b839..ee6e9fe47 100644
--- a/Bugzilla/Config/Common.pm
+++ b/Bugzilla/Config/Common.pm
@@ -189,7 +189,7 @@ sub check_shadowdb {
sub check_urlbase {
my ($url) = (@_);
- if ($url !~ m:^http.*/$:) {
+ if ($url && $url !~ m:^http.*/$:) {
return "must be a legal URL, that starts with http and ends with a slash.";
}
return "";
diff --git a/Bugzilla/Config/Core.pm b/Bugzilla/Config/Core.pm
index 21b974852..738c28fe2 100644
--- a/Bugzilla/Config/Core.pm
+++ b/Bugzilla/Config/Core.pm
@@ -49,7 +49,7 @@ sub get_param_list {
{
name => 'urlbase',
type => 't',
- default => 'http://you-havent-visited-editparams.cgi-yet/',
+ default => '',
checker => \&check_urlbase
},