Hi, I have noticed that when adding a list of options to a customfield for a dropdown menu that if I have an option like this: Don't Know then save, then edit again it has been changed to read Don\'t Know.
No big deal as it does not show when viewingoptions on the customer side. However, if I edit again then it shows like: Don\\\'t Know... This then shows the extra \ for the customer when viewing the drop down.
Any ideas on how to prevent this from happening or at least check that any ' have an \ next to them before simply adding more and more each time?
I hope you see what I mean.
[RESOLVED] Customfield dropdown adding \\\ to options?
Moderator: mkoch227
[RESOLVED] Customfield dropdown adding \\\ to options?
Last edited by Raven on Fri Oct 30, 2009 1:17 am, edited 1 time in total.
You're right, it's another PHP "magic quotes" issue. I'm so glad they are disabling this feature in PHP 6.
Anyway, try adding
just below
in file admin/options.php
Then go to the settings, fix all values, save changes and it should work fine from now on.
Anyway, try adding
Code: Select all
$query = stripslashes($query);
Code: Select all
$maxlen = hesk_input($_GET['m']) or $maxlen = 255;
Then go to the settings, fix all values, save changes and it should work fine from now on.
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
No, all the bugs are fixed of course in the next version and new bugs are added so I have more work for the future



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