diff --git a/extdbms/lib/Core/Model.php b/extdbms/lib/Core/Model.php index b2909e0..30f0268 100644 --- a/extdbms/lib/Core/Model.php +++ b/extdbms/lib/Core/Model.php @@ -184,7 +184,7 @@ abstract class Model //Result private function makeResultQuery(string $head, string $tail = ""): string { - return "{$head} FROM {$this->getTable()} {$this->_querys['JOIN']} {$this->getWhere()} {$this->_querys['LIKE']} {$tail}"; + return "{$head} FROM {$this->getTable()} {$this->_querys['JOIN']} {$this->getWhere()} {$tail}"; } public function getResult($mode = PDO::FETCH_ASSOC): mixed {