diff options
| author | 2018-06-20 20:49:48 +0200 | |
|---|---|---|
| committer | 2018-06-20 20:49:48 +0200 | |
| commit | c4903bc8db41c0aed803e1bc183ade3eeb17aa8d (patch) | |
| tree | 3718596d92d47aba5ac393e44cc92f4f698a5910 /app/views | |
| parent | 767ac77ee26316b183955c8bfd132df8ff11dfe1 (diff) | |
Fix double encoding for mark as read a search (#1945)
* Fix double encoding for mark as read a search
Fix https://github.com/FreshRSS/FreshRSS/issues/1944
* Fix more search encoding issues
Diffstat (limited to 'app/views')
| -rwxr-xr-x | app/views/helpers/pagination.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/helpers/pagination.phtml b/app/views/helpers/pagination.phtml index 893451af9..fc37ce3f5 100755 --- a/app/views/helpers/pagination.phtml +++ b/app/views/helpers/pagination.phtml @@ -11,7 +11,7 @@ 'get' => FreshRSS_Context::currentGet(), 'nextGet' => FreshRSS_Context::$next_get, 'idMax' => FreshRSS_Context::$id_max, - 'search' => FreshRSS_Context::$search, + 'search' => htmlspecialchars_decode(FreshRSS_Context::$search, ENT_QUOTES), 'state' => FreshRSS_Context::$state, ) ); |
