Fix for bug 74394: editmilestones.cgi can't edit the name and sortkey at the same time

Patch by slee@uk.bnsmc.com (Stephen Lee)
This commit is contained in:
justdave%syndicomm.com 2001-04-06 16:47:49 +00:00
Родитель 73ce3da023
Коммит f09960cb4a
1 изменённых файлов: 7 добавлений и 7 удалений

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

@ -513,6 +513,13 @@ if ($action eq 'update') {
milestones WRITE,
products WRITE");
if ($sortkey != $sortkeyold) {
SendSQL("UPDATE milestones SET sortkey=$sortkey
WHERE product=" . SqlQuote($product) . "
AND value=" . SqlQuote($milestoneold));
unlink "data/versioncache";
print "Updated sortkey.<BR>\n";
}
if ($milestone ne $milestoneold) {
unless ($milestone) {
print "Sorry, I can't delete the milestone text.";
@ -541,13 +548,6 @@ if ($action eq 'update') {
unlink "data/versioncache";
print "Updated milestone.<BR>\n";
}
if ($sortkey != $sortkeyold) {
SendSQL("UPDATE milestones SET sortkey=$sortkey
WHERE product=" . SqlQuote($product) . "
AND value=" . SqlQuote($milestoneold));
unlink "data/versioncache";
print "Updated sortkey.<BR>\n";
}
SendSQL("UNLOCK TABLES");
PutTrailer($localtrailer);