rpicms

A CMS for the Raspberry Pi
git clone git://archive.git.mtrnord.blog/RpicmsTeam/rpicms.git
Log | Files | Refs | README | LICENSE

commit 57efd8f559019b3f2eda53e14d0b5a95e8ec4125
parent e862137a9feb0fa0829da417abf8a02fa168e338
Author: MTRNord <mtrnord1@gmail.com>
Date:   Tue, 17 Mar 2015 18:16:34 +0100

ahh maybe my DB is the problem

Diffstat:
Mcore/api/v1/DbHandler.class.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/api/v1/DbHandler.class.php b/core/api/v1/DbHandler.class.php @@ -122,7 +122,7 @@ class DbHandler { */ private function isUserExists($email) { $stmt = $this->conn->prepare("SELECT id from users WHERE email = ?"); - echo $email; + echo $stmt; $stmt->bind_param("s", $email); $stmt->execute(); $stmt->store_result();