aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/Database.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/poche/Database.class.php')
-rwxr-xr-xinc/poche/Database.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/poche/Database.class.php b/inc/poche/Database.class.php
index 2c80b64b..8b52a9df 100755
--- a/inc/poche/Database.class.php
+++ b/inc/poche/Database.class.php
@@ -113,10 +113,10 @@ class Database {
113 $query = $this->executeQuery($sql, array()); 113 $query = $this->executeQuery($sql, array());
114 } 114 }
115 115
116 public function install($login, $password) 116 public function install($login, $password, $email = '')
117 { 117 {
118 $sql = 'INSERT INTO users ( username, password, name, email) VALUES (?, ?, ?, ?)'; 118 $sql = 'INSERT INTO users ( username, password, name, email) VALUES (?, ?, ?, ?)';
119 $params = array($login, $password, $login, ' '); 119 $params = array($login, $password, $login, $email);
120 $query = $this->executeQuery($sql, $params); 120 $query = $this->executeQuery($sql, $params);
121 121
122 $sequence = ''; 122 $sequence = '';