From 4ecb6f2aa2ae134398be0723439e3fd1e5430f4b Mon Sep 17 00:00:00 2001 From: Alex Cabal Date: Wed, 9 Dec 2020 10:46:34 -0600 Subject: [PATCH] Fix double encoding of URL in ebook grid navbar --- www/ebooks/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/ebooks/index.php b/www/ebooks/index.php index b52f84c9..78de5c93 100644 --- a/www/ebooks/index.php +++ b/www/ebooks/index.php @@ -121,7 +121,7 @@ try{ } } - $queryString = Formatter::ToPlainText(preg_replace('/^&/ius', '', $queryString)); + $queryString = preg_replace('/^&/ius', '', $queryString); } catch(\Exception $ex){ http_response_code(404);