minor fixes
authorpaulr <me@pjr.cc>
Sat, 26 Feb 2011 16:29:19 +0000 (03:29 +1100)
committerpaulr <me@pjr.cc>
Sat, 26 Feb 2011 16:29:19 +0000 (03:29 +1100)
gaas/lib/gaasdMessages.php
gaas/lib/globalLib.php

index 21df30d..82d6d8e 100644 (file)
@@ -334,7 +334,9 @@ function gaasDeleteUser_server($msg)
 {
        $username = $msg["username"];
        $db = getDB();
-       $db->query($sql = "delete from users where users_username='$username'");
+       if($db->query("delete from users where users_username='$username'")) {
+               return true;
+       } else return false;
        
 }
 ?>
\ No newline at end of file
index bbfd2fc..b5e840b 100644 (file)
@@ -26,11 +26,11 @@ define("MSG_GET_HARDWARE",28);
 
 // the gaasd call's $MESSAGE[<MSG>]_server() for the server side
 // and $MESSAGE[<msg>]_client() for the client side 
-$MESSAGES[MSG_STATUS] = "gaasStatus";
-$MESSAGES[MSG_INIT_SERVER] = "gaasInitServer"; 
+$MESSAGES[MSG_STATUS] = "gaasStatus"; //
+$MESSAGES[MSG_INIT_SERVER] = "gaasInitServer"; // AD: "AD", "user", "pass", "domain", "client def", "admin def" - IN: "IN", "user", "pass"
 $MESSAGES[MSG_SET_AD_LOGIN] = "gaasSetADLogin"; // domain, user, password
 $MESSAGES[MSG_SET_CLIENT_GROUP] = "gaasSetClientGroup"; // groupname
-$MESSAGES[MSG_SET_ADMIN_GROUP] = "gaasSetAdminGroup";
+$MESSAGES[MSG_SET_ADMIN_GROUP] = "gaasSetAdminGroup"; // groupname
 $MESSAGES[MSG_PROVISION_USER] = "gaasProvisionUser"; // username, tokentype, tokenkey, hardware|software
 $MESSAGES[MSG_GET_USERS] = "gaasGetUsers"; // [admin|client], [name pattern], [only with tokens]
 $MESSAGES[MSG_DELETE_USER] = "gaasDeleteUser"; // username