Page 1 of 1

Modify the email number of characters

Posted: Tue Mar 02, 2010 8:59 pm
by morsedesign
/*************************************
Title:
Version:2.1
Author:
Demo:
Download:
Website:

Short description:


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

I am in need of a mod or something for expanding the characters allowed for emails when a ticket is added. Currently I added more characters to the form field but when I view the email in the ticket after it's been submitted they are truncated.
I'm not sure if it's the DB field or not.

Any help is appreciated.

Posted: Wed Mar 03, 2010 4:09 pm
by Klemen
Try this (see my first response):
viewtopic.php?t=2718&highlight=heskdbquery

You said you already modified number of chars in the form field, but for others who might need this also make these changes:

2. In index.php change

Code: Select all

maxlength="50"
to

Code: Select all

maxlength="255"
3. In /admin/edit_post.php change

Code: Select all

maxlength="50"
to

Code: Select all

maxlength="255"
This should do the trick.