Comment 9 for bug 806480

Revision history for this message
Garwood Pang (garwoodpang) wrote :

I think i found the bug. On calExchange.js for function "sendMail(aItem)" ur conditional on 0.17 have

if(inv == "TRUE" || inv == true)
return "SendToAllAndSaveCopy";

but on 0.13, the one that works have

if(inv == "TRUE" || true)
return "SendToAllAndSaveCopy";

i tried it and it seems to work for me.