Hello, I've installed last version and the search doesn't work. With ajax enabled it works, but disabling ajax in config.php, the search string doesn't do anything. Can you please check this?
Discussion
Anonymous
-
2015-02-11
Post awaiting moderation.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
search do not work, alphabet search works
SOLVED
I have changed function in address.class.php - added first blank parameter
public static function withSearchString($searchstring, $alphabet = "") {
$instance = new self();
$instance->loadBy('',$searchstring, $alphabet);
return $instance;