From 5108480e031fd81c7f51e07761f0de9b5487c2f6 Mon Sep 17 00:00:00 2001 From: Sergey Tsalkov Date: Fri, 25 Jun 2021 17:40:41 +0000 Subject: [PATCH] drop unused code --- db.class.php | 1 - 1 file changed, 1 deletion(-) diff --git a/db.class.php b/db.class.php index ff4fc12..99c1d4b 100644 --- a/db.class.php +++ b/db.class.php @@ -764,7 +764,6 @@ class MeekroDB { return floor(doubleval($var)); } - protected function prependCall($function, $args, $prepend) { array_unshift($args, $prepend); return call_user_func_array($function, $args); } public function query() { return $this->queryHelper(array('assoc' => true), func_get_args()); } public function queryAllLists() { return $this->queryHelper(array(), func_get_args()); } public function queryFullColumns() { return $this->queryHelper(array('fullcols' => true), func_get_args()); }