removing the required * from "message" field

Everything related to Hesk - helpdesk software

Moderator: mkoch227

Post Reply
lynncap
Posts: 8
Joined: Mon Jun 07, 2010 10:41 pm

removing the required * from "message" field

Post by lynncap »

/*************************************
Title:
Version:
Author:
Demo:
Download:
Website:

Short description:


*************************************/

I used the same directions posted for the email field on the message field to make it not required by deleting "or $hesk_error_buffer[]=$hesklang['enter_message']" from the message part in submit-ticket.php but i can't figure out how to removed the asterisk that says the fields is required. Thank you.
Klemen
Site Admin
Posts: 10136
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

In index.php change

Code: Select all

<?php echo $hesklang['message']; ?>: <font class="important">*</font>
to just

Code: Select all

<?php echo $hesklang['message']; ?>:
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image 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
lynncap
Posts: 8
Joined: Mon Jun 07, 2010 10:41 pm

Post by lynncap »

Thank you.
Post Reply