Commit e096f611 authored by travis%sedsystems.ca's avatar travis%sedsystems.ca

Bug 172284 : checksetup assumes that there are < 99999 bugs

Patch by Marc Schumann <wurblzap@gmail.com> r=mkanat a=justdave
parent ab5067bb
......@@ -2431,7 +2431,8 @@ if (!($sth->fetchrow_arrayref()->[0])) {
"SELECT longdescs.bug_id, thetext " .
"FROM longdescs " .
"LEFT JOIN bugs using(bug_id) " .
"WHERE (thetext regexp '[.*.]{3,3} This bug has been marked as a duplicate of [[:digit:]]{1,5} [.*.]{3,3}') " .
"WHERE (thetext " . $dbh->sql_regexp .
" '[.*.]{3} This bug has been marked as a duplicate of [[:digit:]]+ [.*.]{3}') " .
"AND (resolution = 'DUPLICATE') " .
"ORDER BY longdescs.bug_when");
$sth->execute();
......
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