Kayako logo
Developers & Code Interested in customizing your Kayako products? Discuss modifications and develop your own mods with the community.

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  (#16) Old
jnet Offline
Member
 
Posts: 524
Join Date: Mar 2008
18-06-2008, 01:02 AM

this is what I have in there. not sure what I should replace

Code:
// Sanitize the text
    if ($noparity)
    {
        $stopdata = array("#\s+#s", "#(\r\n|\r|\n)#s");
        $replacewith = array(" ", " ");
    } else {
        $stopdata = array("#\s+#s", "#(\r\n|\r|\n)#s", "/[^a-zA-Z0-9.@\-\_\s]/");
        $replacewith = array(" ", " ", "");
    }
    $_query = preg_replace($stopdata, $replacewith, $query);
   
Reply With Quote
Reply

Tags
characters, knowledgebase, multibyte, search

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46