REPORT BUGS AND MISSPELLING HERE

Helpdesk for my helpdesk software

Moderator: mkoch227

MOB
Posts: 54
Joined: Sat May 10, 2008 9:51 am

Post by MOB »

Thanks. Could you do a FIND then REPLACE WITH instructions below? Thanks in advance.
Klemen
Site Admin
Posts: 10143
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

It's just a line of code you need to paste. So just find

Code: Select all

$v['value'] = $k_value; 
and replace it with

Code: Select all

$k_value = hesk_msgToPlain($k_value,0,0); 
$v['value'] = $k_value; 
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
MOB
Posts: 54
Joined: Sat May 10, 2008 9:51 am

Post by MOB »

Thanks. That fixed it. I'm glad I was able to contribute to your program. One less bug is always a nice thing.
webdeweb
Posts: 1
Joined: Fri Dec 11, 2009 11:34 pm

all BUT closed mistake

Post by webdeweb »

Hello,
I tried the demo of Version: 2.1 and I installed to my server too. This is the very good script.

There is a mistake:
Where: Admin panel - Show tickets table
Which: all BUT closed (at lang file)
True : All NOT closed

File: EN/text.php
at 281.

Code: Select all

$hesklang['all_not_closed']='All but closed';

code (inc/show_search_form.inc.php) is true but lang file is wrong...

Code: Select all

<td width="50%"><label><input type="radio" name="status" value="6" <?php if ($status == 6) {echo 'checked="checked"';} ?> /><span class="replied"> <?php echo $hesklang['all_not_closed']; ?></span></label></td>
Solution: at language/en/text.php (Also All languages)

Replace :

Code: Select all

$hesklang['all_not_closed']='All but closed';
With

Code: Select all

$hesklang['all_not_closed']='All not closed';

SY.
Klemen
Site Admin
Posts: 10143
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

It's the same meaning :wink: All but closed = All except closed
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
johnjohn
Posts: 1
Joined: Tue Apr 06, 2010 10:12 am

Web Page mispelling

Post by johnjohn »

Klemen

On your HEST home page, just above demo video, you have

HESK Intorduction Video

should be

HESK Introduction Video
JohnJohn
Klemen
Site Admin
Posts: 10143
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Thanks for the heads-up, can't believe I missed that one :oops:

Fixed now.
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