X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/06524ec25d81c383bc801dee70582a42b348303c..c9e9855eb649e5b9237a81a6076ddd7fb30fe9e3:/scripts/search.php diff --git a/scripts/search.php b/scripts/search.php index f9688bb..121c7e2 100644 --- a/scripts/search.php +++ b/scripts/search.php @@ -2,20 +2,7 @@ //search namespace phorkie; -set_include_path( - __DIR__ . '/../src/' - . PATH_SEPARATOR . get_include_path() -); -spl_autoload_register( - function ($class) { - $file = str_replace(array('\\', '_'), '/', $class) . '.php'; - $hdl = @fopen($file, 'r', true); - if ($hdl !== false) { - fclose($hdl); - require $file; - } - } -); +require_once __DIR__ . '/../src/phorkie/autoload.php'; require_once __DIR__ . '/../data/config.default.php'; if (file_exists(__DIR__ . '/../data/config.php')) { require_once __DIR__ . '/../data/config.php'; @@ -24,7 +11,7 @@ if ($GLOBALS['phorkie']['cfg']['setupcheck']) { SetupCheck::run(); } -$r = new \HTTP_Request2( +$r = new Database_Adapter_Elasticsearch_HTTPRequest( $GLOBALS['phorkie']['cfg']['elasticsearch'] . 'repo/_search', \HTTP_Request2::METHOD_GET );