hi,
i have just upgraded to ZP 1.4.2 on my development server and i'm running some test before going live.
there is something weird with the search form.
if we do one search, we get the results and the reset icon is shown. the title attribute of the search button is changed to '... within previous results'
now if by mistake we hit the search button without entering a new search word, no results is return. looking at the submit javascript function it should actually repeat the initial search and return the exact same results.
i think line 3978 of the template_functions.php file is not correct. it reads
`$('#search_input').val(<?php echo $searchwords; ?>);` but i think it should read
`$('#search_input').val('<?php echo $searchwords; ?>');`
the `<?php echo $searchwords;?>` should be in between simple quotes.
frankm