Hi,
Forgot tracking ID? Sent to customer all tickets!
I want only status of open ticket list.
help please...
Forgot tracking ID?
Moderator: mkoch227
If I understood correctly... in index.php change to
I also recommend that you change words in emails/forgot_ticket_id.txt :
This e-mail contains a list of support tickets
change to
This e-mail contains a list of open support tickets
Code: Select all
$sql = "SELECT * FROM `hesk_tickets` WHERE `email` LIKE '$email'";
Code: Select all
$sql = "SELECT * FROM `hesk_tickets` WHERE `email` LIKE '$email' AND `status` != '3'";
This e-mail contains a list of support tickets
change to
This e-mail contains a list of open support tickets
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: 90
- Joined: Tue Dec 30, 2008 11:29 am
how can i change new version (2.0) this?
Klemen wrote:If I understood correctly... in index.php changetoCode: Select all
$sql = "SELECT * FROM `hesk_tickets` WHERE `email` LIKE '$email'";
I also recommend that you change words in emails/forgot_ticket_id.txt :Code: Select all
$sql = "SELECT * FROM `hesk_tickets` WHERE `email` LIKE '$email' AND `status` != '3'";
This e-mail contains a list of support tickets
change to
This e-mail contains a list of open support tickets
In the new version you have change it to
Code: Select all
$sql = 'SELECT * FROM `'.$hesk_settings['db_pfix'].'tickets` WHERE `email` LIKE \''.$email.'\'';
Code: Select all
$sql = 'SELECT * FROM `'.$hesk_settings['db_pfix'].'tickets` WHERE `email` LIKE \''.$email.'\' AND `status` != \'3\'';
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