Hello I have a problem with the option "Forgot tracking ID?" wenn a ticket have multiple emails in it seperated with a "'," it won't email this ticket to the customer.
What could I do to fix this?
Forgot tracking ID? With multiple email in ticket
Moderator: mkoch227
Re: Forgot tracking ID? With multiple email in ticket
In index.php (the one in main help desk folder) try changing to
Be careful to change exactly this code (take special care of quotes).
Code: Select all
LIKE \''.hesk_dbEscape($email).'\'
Code: Select all
LIKE \'%'.hesk_dbEscape($email).'%\'
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: Forgot tracking ID? With multiple email in ticket
Worked, will this also be in the new version?
Re: Forgot tracking ID? With multiple email in ticket
Probably not, because this could lead to various issues. For example if customer A has e-mail address "doe@gmail.com" and customer B has "johndoe@gmail.com" and customer A wants to get his tickets he might get tickets from johndoe@gmail.com instead (because %doe@gmail.com% will also match johndoe@gmail.com in the database).
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
-
- Posts: 46
- Joined: Sun May 10, 2009 3:44 pm
Re: Forgot tracking ID? With multiple email in ticket
Hi Klemen,
Any possibility perhaps to not allow more than one email address, but to provide a seperate slot for a alternative email address and then allow both to get all emails?
Regards.
Any possibility perhaps to not allow more than one email address, but to provide a seperate slot for a alternative email address and then allow both to get all emails?
Regards.
Re: Forgot tracking ID? With multiple email in ticket
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools