diff options
| author | 2016-03-06 12:51:39 +0100 | |
|---|---|---|
| committer | 2016-03-06 12:51:39 +0100 | |
| commit | 5f04462e554e4604c04c2c9ca2fe97df6f6f6376 (patch) | |
| tree | 395f9139b568557dea948f88b6b49a326c3e5c84 /app/views/stats | |
| parent | 765f9802b4f52161d78a61501edc1323b4d2ef54 (diff) | |
Fix redirection while deleting a feed
Before, when deleting a feed from the statistics idle page, there was an error in the redirection process.
Now, the redirection works properly and redirects to the idle page.
Diffstat (limited to 'app/views/stats')
| -rw-r--r-- | app/views/stats/idle.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/stats/idle.phtml b/app/views/stats/idle.phtml index 11b7df8c4..ba88b679f 100644 --- a/app/views/stats/idle.phtml +++ b/app/views/stats/idle.phtml @@ -6,10 +6,10 @@ <h1><?php echo _t('admin.stats.idle'); ?></h1> <?php - $current_url = urlencode(Minz_Url::display( + $current_url = Minz_Url::display( array('c' => 'stats', 'a' => 'idle'), 'php', true - )); + ); $nothing = true; foreach ($this->idleFeeds as $period => $feeds) { if (!empty($feeds)) { |
