From 8fdc86f4bd4ebbce5740c8653620ba02aa51af73 Mon Sep 17 00:00:00 2001 From: Martin Monperrus Date: Sun, 14 Jan 2024 09:27:26 +0100 Subject: [PATCH] fix: remove call to deprecated function --- bibtexbrowser.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/bibtexbrowser.php b/bibtexbrowser.php index 46e5e65..025f823 100755 --- a/bibtexbrowser.php +++ b/bibtexbrowser.php @@ -4911,9 +4911,6 @@ class Dispatcher { function keys() { // Create array from list of bibtex entries - if (get_magic_quotes_gpc()) { - $_GET[Q_KEYS] = stripslashes($_GET[Q_KEYS]); - } $_GET[Q_KEYS] = (array) json_decode(urldecode($_GET[Q_KEYS])); // decode and cast the object into an (associative) array // Make the array 1-based (keeps the string keys unchanged) array_unshift($_GET[Q_KEYS],"__DUMMY__");