I have searched the web and the documentation on how to change the default autosuggest behavior from finding your search string anywhere in a word, to finding only "starts with". Documentation indicates to change $suggestAllContent in includes/dbcommon.php from true to false. Well in my version (PHP 5.3) that variable is only located in includes/appsettings.php. See below:
$useAJAX = true;
$suggestAllContent = false;
As you can see I have updated the setting, however the behavior in my app is unchanged. Can someone please point me in the right direction?
Thanks