fix silly mixup of superuser and createdb options in create user
authorchriskl <chriskl>
Thu, 26 Jun 2003 02:50:30 +0000 (02:50 +0000)
committerchriskl <chriskl>
Thu, 26 Jun 2003 02:50:30 +0000 (02:50 +0000)
users.php

index 0475aa1457e67819e0369ca07738608b9668c09c..c534dca537a43835ecbc8f107cd9faddaa7618f4 100644 (file)
--- a/users.php
+++ b/users.php
@@ -3,7 +3,7 @@
        /**
         * Manage users in a database cluster
         *
-        * $Id: users.php,v 1.13 2003/06/05 20:40:24 xzilla Exp $
+        * $Id: users.php,v 1.14 2003/06/26 02:50:30 chriskl Exp $
         */
 
        // Include application functions
                        doCreate($lang['strpasswordconfirm']);
                else {          
                        $status = $data->createUser($_POST['formUsername'], $_POST['formPassword'], 
-                               isset($_POST['formSuper']), isset($_POST['formCreateDB']), $_POST['formExpires'], array());
+                               isset($_POST['formCreateDB']), isset($_POST['formSuper']), $_POST['formExpires'], array());
                        if ($status == 0)
                                doDefault($lang['strusercreated']);
                        else