From e5c65cce1aec27a9ceaccd09602e393957c58dfd Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Mon, 5 Jul 2021 11:36:40 +0200 Subject: [PATCH] remove debug logs --- src/Appwrite/Database/Adapter/MySQL.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Database/Adapter/MySQL.php b/src/Appwrite/Database/Adapter/MySQL.php index 75c9f50169..9ea2c7cb2a 100644 --- a/src/Appwrite/Database/Adapter/MySQL.php +++ b/src/Appwrite/Database/Adapter/MySQL.php @@ -684,7 +684,7 @@ class MySQL extends Adapter ORDER BY sort_ff {$options['orderType']} %s"; $st = $this->getPDO()->prepare(\sprintf($query, $select, $range)); - var_dump(\sprintf($query, $select, $range)); + $st->execute(); $results = ['data' => []];