summaryrefslogtreecommitdiff
path: root/site/app/Http/Controllers/SearchController.php
diff options
context:
space:
mode:
Diffstat (limited to 'site/app/Http/Controllers/SearchController.php')
-rw-r--r--site/app/Http/Controllers/SearchController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/app/Http/Controllers/SearchController.php b/site/app/Http/Controllers/SearchController.php
index 9ec355a..4a3e1da 100644
--- a/site/app/Http/Controllers/SearchController.php
+++ b/site/app/Http/Controllers/SearchController.php
@@ -59,7 +59,7 @@ class SearchController extends Controller {
#var_dump($data); exit;
$query_string = "";
- $query_params = Input::get();
+ $query_params = Input::except('page');
foreach( $query_params as $key => $value) {
$query_string .= "&" . $key . "=" . $value;
}