diff options
| author | 2016-09-29 22:48:56 +0200 | |
|---|---|---|
| committer | 2016-09-29 22:48:56 +0200 | |
| commit | 63a8f5e167e4bf17f76eb6e8baa9b75814c4512d (patch) | |
| tree | 2d3224d6eff0817ef353cfba55aa50791061440b /app | |
| parent | 1d87ebe9dd607a8e4da395d102763b62a94ac02b (diff) | |
Fix global view
Bug introduced in version 1.5.0 by
https://github.com/FreshRSS/FreshRSS/commit/56ffc115d15bf136bfced74707ccc1f41c7b5e44
Diffstat (limited to 'app')
| -rw-r--r-- | app/views/index/global.phtml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/index/global.phtml b/app/views/index/global.phtml index 1e53e4f8c..f35732c8f 100644 --- a/app/views/index/global.phtml +++ b/app/views/index/global.phtml @@ -11,10 +11,13 @@ <div id="stream" class="global<?php echo $class; ?>"> <?php + $params = Minz_Request::fetchGET(); + unset($params['c']); + unset($params['a']); $url_base = array( 'c' => 'index', 'a' => 'normal', - 'params' => Minz_Request::fetchGET(), + 'params' => $params, ); foreach ($this->categories as $cat) { |
