Module: appdb Branch: master Commit: 27660a74d95288601c4b50c63c4d3d705fc03a69 URL: http://source.winehq.org/git/appdb.git/?a=commit;h=27660a74d95288601c4b50c63...
Author: Alexander Nicolaysen Sørnes alex@thehandofagony.com Date: Tue Sep 18 14:53:25 2007 +0200
bug: Fix unqueue mails
---
include/bugs.php | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/include/bugs.php b/include/bugs.php index 4f12624..51710bb 100644 --- a/include/bugs.php +++ b/include/bugs.php @@ -487,7 +487,8 @@ class Bug function outputEditor() { $this->display(); - echo '<input type="hidden" name="iBugLinkId" value="'.$this->iLinkId.'" >'; + echo '<input type="hidden" name="iBuglinkId" value="'.$this->iBug_id.'" />'; + echo '<input type="hidden" name="iVersionId" value="'.$this->iVersionId.'" />'; }
function getOutputEditorValues($aClean)