openrat-cms

OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs | README

commit 649b4542e6016fba8b95e9718c230f4b93501bba
parent 35e473e24392db6b6604f42dbf1a95c08ecd0732
Author: Jan Dankert <develop@jandankert.de>
Date:   Sat,  6 Mar 2021 23:32:55 +0100

Fix: Forgot to execute the query ;)

Diffstat:
Mmodules/database/Statement.class.php | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/modules/database/Statement.class.php b/modules/database/Statement.class.php @@ -211,6 +211,7 @@ class Statement */ public function &getAll() { + $result = $this->query(); $results = array(); while( $row = $this->client->fetchRow($this->stmt) )