Patch by Tom Schutter <tom@platte.com> -- was setting milestone descriptions to NULL instead of ''.

This commit is contained in:
terry%mozilla.org 1999-09-22 15:55:56 +00:00
Родитель 6d44195acc
Коммит 608a6c6772
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -743,7 +743,7 @@ sub write_non_bugs_tables {
" product, description, milestoneurl, disallownew\n";
print DATA ") values (\n";
print DATA
" $product, $description, 'NULL', 0\n";
" $product, $description, '', 0\n";
print DATA ");\n";
print DATA "\ninsert into components (\n";
@ -751,7 +751,7 @@ sub write_non_bugs_tables {
" value, program, initialowner, initialqacontact, description\n";
print DATA ") values (\n";
print DATA
" $product, $product, $initialowner, 'NULL', $description\n";
" $product, $product, $initialowner, '', $description\n";
print DATA ");\n";
}