rpicms

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

commit 67bc7fd0863c7b6bf782aa4498bf45de6abd6f4f
parent 0bbd24b5a541364ac097595ad00b0a02c1f3dd66
Author: MTRNord <mtrnord1@gmail.com>
Date:   Tue, 17 Mar 2015 18:10:23 +0100

:/

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

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