diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2016-02-04 17:10:49 +0100 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2016-02-04 17:10:49 +0100 |
| commit | dda0b5ec6258b94fdd6cdec81eccba3f2b9513a0 (patch) | |
| tree | ab704ce4593d2acf8053a2f92dbb4a0bba83168b /www | |
| parent | ae2d3a27072b157a9c3df2ba1e8101d6d3a70d4f (diff) | |
| download | phinde-dda0b5ec6258b94fdd6cdec81eccba3f2b9513a0.tar.gz phinde-dda0b5ec6258b94fdd6cdec81eccba3f2b9513a0.zip | |
Show site search reset link
Diffstat (limited to 'www')
| -rw-r--r-- | www/css/phinde.css | 4 | ||||
| -rw-r--r-- | www/index.php | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/www/css/phinde.css b/www/css/phinde.css index 6d9ad20..a25aa31 100644 --- a/www/css/phinde.css +++ b/www/css/phinde.css @@ -27,4 +27,8 @@ } .hit em.hl { font-weight: bold; +} +.resultinfo { + margin-top: 1ex; + margin-bottom: 2ex; }
\ No newline at end of file diff --git a/www/index.php b/www/index.php index 12befbc..0412f82 100644 --- a/www/index.php +++ b/www/index.php @@ -59,8 +59,10 @@ if (preg_match('#site:([^ ]*)#', $query, $matches)) { $site = $matches[1]; $cleanQuery = trim(str_replace('site:' . $site, '', $query)); $site = Helper::noSchema($site); + $urlNoSite = buildLink('?q=' . urlencode($cleanQuery), $filters, null, null); } else { $cleanQuery = $query; + $urlNoSite = null; } $timeBegin = microtime(true); @@ -108,6 +110,7 @@ render( 'queryTime' => round($timeEnd - $timeBegin, 2) . 'ms', 'query' => $query, 'cleanQuery' => $cleanQuery, + 'urlNoSite' => $urlNoSite, 'site' => $site, 'hitcount' => $res->hits->total, 'hits' => $res->hits->hits, |
