From 4ef65860ddf3fa7ec508877890cf6dcaf403d340 Mon Sep 17 00:00:00 2001 From: Martin Ambrus Date: Tue, 17 Oct 2017 18:49:25 +0200 Subject: [PATCH] fix: this method should really not be escaped... --- GameEngine/Database.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/GameEngine/Database.php b/GameEngine/Database.php index 10610257..f99da4dc 100755 --- a/GameEngine/Database.php +++ b/GameEngine/Database.php @@ -3633,8 +3633,6 @@ class MYSQLi_DB { } function query_return($q) { - list($q) = $this->escape_input($q); - $result = mysqli_query($this->dblink,$q); return $this->mysqli_fetch_all($result); }