]> dev.renevier.net Git - syp.git/blobdiff - inc/db/anydb.php
interface to change password
[syp.git] / inc / db / anydb.php
index 596561cbc9027c15f89cbaf51aae9b1b000046b6..1094365eb42a6201d99bdd0e851427d096e60977 100644 (file)
@@ -94,12 +94,15 @@ interface anydbConnection {
     public function create_items_table();
 
     /*
-     * set password $pwd for user $usrname. 
-     * If $usrname does not exist:
-     *    - if $create_if_not_exists is true: create user.
-     *    - if $create_if_not_exists is false: throws an err_query error.
+     * returns true if $usrname is name of an existing user, false otherwise.
      */
-    public function setpwd($usrname, $pwd, $create_if_not_exists);
+    public function user_exists ($usrname);
+
+    /*
+     * set password $pwd for user $usrname. If $usrname does not exist, create
+     * it
+     */
+    public function setpwd($usrname, $pwd);
 
     /*
      * check that $pwd_md5 is md5 for $username password.