bug-gnats
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Fix: Can't change "Reporter's E-mail" from gnatsweb


From: Warren McNeil
Subject: Fix: Can't change "Reporter's E-mail" from gnatsweb
Date: Fri, 19 Mar 2004 17:40:16 -0500

I have stumbled across a problem with gnatsweb where I am unable to change
the Reporter's email. 
The fix was to remove the single quotes around the regex pattern
^'Reply-To':

1783c1783
<       if ($fields{'envelope'} =~ /^'Reply-To':/m)
---
>     if ($fields{'envelope'} =~ /^Reply-To:/m)
1786c1786
<         $fields{'envelope'} =~ s/^'Reply-To':.*$/'Reply-To':
$fields{'Reply-To'}/m;
---
>         $fields{'envelope'} =~ s/^Reply-To:.*$/Reply-To:
$fields{'Reply-To'}/m;

Thanks,
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]