This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/search.php
Chris Morgan 97513244c4 Admin app queue page was only displaying like matches for a submitted app.
Factor like and fuzzy searches out in to a function and call that function
from normal search and from the app queue page so admins see fuzzy matches
for submitted apps.
2005-06-08 00:35:30 +00:00

18 lines
302 B
PHP

<?php
/*****************/
/* search engine */
/*****************/
/*
* application environment
*/
include("path.php");
require(BASE."include/incl.php");
require(BASE."include/application.php");
apidb_header("Search Results");
perform_search_and_output_results($_REQUEST['q']);
apidb_footer();
?>