https://bugs.winehq.org/show_bug.cgi?id=56630
Damjan Jovanovic damjan.jov@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |damjan.jov@gmail.com
--- Comment #3 from Damjan Jovanovic damjan.jov@gmail.com --- This is a highly annoying bug.
Basically, there is a garbage "3D" after every "=" sign in the URL's query parameters, which needs to be deleted for the link to work, ie. (broken):
https://appdb.winehq.org/objectManager.php?sClass=3Dversion&iId=3D24358&... ;iTestingId=3D114903
should be (working):
https://appdb.winehq.org/objectManager.php?sClass=version&iId=24358&... ;iTestingId=114903
That link is generated from include/testData.php:
function SendNotificationMail($sAction="add",$sMsg=null) { ... $sBacklink = $oVersion->objectMakeUrl()."&iTestingId=".$this->iTestingId."\n"; ... $sSubject = "Test Results added to version ".$oVersion->sName." of ".$oApp->sName." by ".$_SESSION['current']->sRealname; $sMsg .= $sBacklink;
... if($sEmail) mail_appdb($sEmail, $sSubject ,$sMsg); }
and then presumably in file include/mail.php:
function mail_appdb($sEmailList,$sSubject,$sMsg) { ... $sMsg = $mime->setTXTBody($sMsg); $sMsg = $mime->get(); ... $ret = $mail->send($to, $headers, $sMsg); ... }