Fixed BUG-136, now can search with a * or % as wildcards, and fix bug where no search results broke pa

This commit is contained in:
2024-12-31 15:13:17 +11:00
parent b34b71bf32
commit 37c0125fbd
4 changed files with 10 additions and 4 deletions

View File

@@ -29,7 +29,7 @@
<script>
function HandleSearch()
{
st=$('#search_term').val();
st=encodeURIComponent( $('#search_term').val() )
if( st != '' ) {
document.location.href='/search/'+st
}