X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/925eaabf42cbbbe2ceac8e1bb95c11ec8be5f375..a8a7006fb93492febf83dfa89583447d958b18fb:/www/search.php diff --git a/www/search.php b/www/search.php index cb72c6a..82b40a7 100644 --- a/www/search.php +++ b/www/search.php @@ -3,10 +3,11 @@ namespace phorkie; /** * Search for a search term */ +$reqWritePermissions = false; require_once 'www-header.php'; if (!isset($_GET['q']) || $_GET['q'] == '') { - header('Location: ' . Tools::fullUrl('/list')); + header('Location: ' . Tools::fullUrl('list')); exit(); } $query = $_GET['q']; @@ -19,7 +20,7 @@ if (isset($_GET['page'])) { //PEAR Pager begins at 1 $page = (int)$_GET['page'] - 1; } -$perPage = 10; +$perPage = $GLOBALS['phorkie']['cfg']['perPage']; $db = new Database(); $search = $db->getSearch();