Bug 352702: Warnings in the web server error log when no URL is given on bug creation - Patch by Fr�d�ric Buclin <LpSolit@gmail.com> r=mkanat a=myk

This commit is contained in:
lpsolit%gmail.com 2006-09-14 19:38:52 +00:00
Родитель f3eeddcc4b
Коммит d902a7bf03
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -450,7 +450,7 @@ sub _check_assigned_to {
sub _check_bug_file_loc { sub _check_bug_file_loc {
my ($invocant, $url) = @_; my ($invocant, $url) = @_;
# If bug_file_loc is "http://", the default, use an empty value instead. # If bug_file_loc is "http://", the default, use an empty value instead.
$url = '' if $url eq 'http://'; $url = '' if (!defined($url) || $url eq 'http://');
return $url; return $url;
} }