POST management working, preferences managed (room only)
[brisk.git] / web / Obj / dbase_base.phh
index 43b568d..345b06f 100644 (file)
@@ -2,7 +2,7 @@
   /*
    *  brisk - dbase_base.phh
    *
-   *  Copyright (C) 2011      Matteo Nastasi
+   *  Copyright (C) 2011-2012 Matteo Nastasi
    *                          mailto: nastasi@alternativeoutput.it 
    *                                  matteo.nastasi@milug.org
    *                          web: http://www.alternativeoutput.it
@@ -36,6 +36,7 @@ class LoginDBItem {
         $this->login = $login;
         $this->pass  = $pass;
         $this->email = $email;
+        fprintf(STDERR, "QQ: %s: %x\n", __FUNCTION__, $type);
         $this->type  = $type;
     }
 
@@ -69,16 +70,10 @@ class LoginDBItem {
 
     function type_get()
     {
+        fprintf(STDERR, "TYPE GET: %d\n", $this->type);
         return $this->type;
     }
 
 }
 
-class LoginDBItemOld extends LoginDBItem {
-    function LoginDBItemOld($login, $pass, $email, $type)
-    {
-        parent::LoginDBItem(-1, $login, $pass, $email, $type);
-    }
-}
-
 ?>
\ No newline at end of file