summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2012-07-12 01:16:37 +0200
committerFlorian Pritz <bluewind@xinu.at>2012-07-12 01:16:37 +0200
commit61a8dfbe6186c29b5bec36c971a80b081b366091 (patch)
tree97a1c615e9dbee795f679845d5e9a7dbbf36c1fd /application
parent700fc306106c7acebb73e9479f93006388ea80a0 (diff)
Display nice error message if username exists already
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application')
-rw-r--r--application/controllers/user.php4
-rw-r--r--application/models/muser.php15
2 files changed, 19 insertions, 0 deletions
diff --git a/application/controllers/user.php b/application/controllers/user.php
index af908a63d..29d9eaeeb 100644
--- a/application/controllers/user.php
+++ b/application/controllers/user.php
@@ -152,6 +152,10 @@ class User extends CI_Controller {
$error[]= "Invalid email.";
}
+ if ($this->muser->username_exists($username)) {
+ $error[] = "Username already exists.";
+ }
+
if (!$password || $password != $password_confirm) {
$error[]= "No password or passwords don't match.";
}
diff --git a/application/models/muser.php b/application/models/muser.php
index eb7c3d385..a93865fd4 100644
--- a/application/models/muser.php
+++ b/application/models/muser.php
@@ -87,6 +87,21 @@ class Muser extends CI_Model {
exit();
}
+ function username_exists($username)
+ {
+ $query = $this->db->query("
+ SELECT id
+ FROM users
+ WHERE username = ?
+ ", array($username));
+
+ if ($query->num_rows() > 0) {
+ return true;
+ } else {
+ return false;
+ }
+ }
+
function hash_password($password)
{