Ticket #147 (closed defect: fixed)
Bugs in send Client Email
| Reported by: | Rick | Owned by: | brieb |
|---|---|---|---|
| Priority: | major | Milestone: | 0.8 |
| Component: | phpbms | Version: | 0.7 |
| Keywords: | Cc: |
Description
Send client email just displays an alert "clients_email_process.php?id=123" when processing the emails and no email is sent.
There are two bugs which are stopping emails working properly:
1. In clients_email_process.php, after
require("../../include/session.php");
insert the line:
include("../../include/common_functions.php");
because common functions is required to allow the dateToString function to be called later in this routine.
2. In clientemail.js, at line 175, change:
if(response.getElementsByTagName('result')[0].firstChild.data!="sent"){
to
if(response.getElementsByTagName('result')[0].firstChild.data!="Sent"){
Change History
Note: See
TracTickets for help on using
tickets.