Commit 650e4220 authored by terry%mozilla.org's avatar terry%mozilla.org

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

parent 2b39b1a5
......@@ -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";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment