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.
18 lines
302 B
PHP
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();
|
|
?>
|