edit_post.php Still Uses Old Name / Subject maxlengths

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
mkoch227
Posts: 666
Joined: Wed Jul 04, 2012 3:37 pm

edit_post.php Still Uses Old Name / Subject maxlengths

Post by mkoch227 »

While going through the changes to update Mods for HESK, I noticed that edit_post wasn't updated to include the new maxlength values. They are still 40 for subject and 30 for name (see code snippet below).

Code: Select all

// Lines 369-376
<tr>
    <td style="text-align:right"><?php echo $hesklang['subject']; ?>: </td>
    <td><input type="text" name="subject" size="40" maxlength="40" value="<?php echo $ticket['subject'];?>" /></td>
</tr>
<tr>
    <td style="text-align:right"><?php echo $hesklang['name']; ?>: </td>
    <td><input type="text" name="name" size="40" maxlength="30" value="<?php echo $ticket['name'];?>" /></td>
</tr>
Mike, Lead Developer of Image HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
Klemen
Site Admin
Posts: 10145
Joined: Fri Feb 11, 2005 4:04 pm

Re: edit_post.php Still Uses Old Name / Subject maxlengths

Post by Klemen »

Thanks for the heads up. I guess we will see 2.7.5 soon, I will wait a few more days to see if anything else pops up.
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
Klemen
Site Admin
Posts: 10145
Joined: Fri Feb 11, 2005 4:04 pm

Re: edit_post.php Still Uses Old Name / Subject maxlengths

Post by Klemen »

Here's the fixed file if anyone needs this functionality asap:
https://hesk.com/extras/274_edit_post.zip

It goes into your "admin" folder.
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
Post Reply