View Single Post
  #2  
Old 6th January 2009, 13:19
hack346 hack346 is offline
Banned
 
Join Date: Mar 2008
Turkey
Posts: 80
Default
try this

open your backend/functions.php

find this line

Code:
function searchfield($s) {
    return preg_replace(array('/[^a-z0-9]/si', '/^\s*/s', '/\s*$/s', '/\s+/s'), array(" ", "", "", " "), $s);
}

replace with:
Code:
function searchfield($s) {
    return preg_replace(array('/[^a-zA-Zа-яА-Я0-9]/si', '/^\s*/s', '/\s*$/s', '/\s+/s'), array(" ", "", "", " "), $s);
}
Reply With Quote