X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fdbase_file.phh;h=13dce471ba744053fe628fa2e436bcf7b1ce9776;hb=312a6acc00ec7f331ab461894c319776eec95cae;hp=9e8331a340c11a60c96086544abc94943452e9c2;hpb=29a83e580080f589142bc8639d8a757503fd3175;p=brisk.git diff --git a/web/Obj/dbase_file.phh b/web/Obj/dbase_file.phh index 9e8331a..13dce47 100644 --- a/web/Obj/dbase_file.phh +++ b/web/Obj/dbase_file.phh @@ -38,7 +38,7 @@ class BriskDB { log_main("BriskDB create:end"); } - static function &create() + static function create() { $ret = new BriskDB(); @@ -87,10 +87,8 @@ class BriskDB { return ($this->item[$idx]->login); } - function &getitem_bylogin($login, &$id) + function getitem_bylogin($login, &$id) { - GLOBAL $G_false; - log_main("login_exists: ".$login); /* check the existence of the nick in the BriskDB */ @@ -103,7 +101,7 @@ class BriskDB { } } $id = -1; - return ($G_false); + return (FALSE); } function getmail($login) @@ -134,11 +132,9 @@ class BriskDB { return (FALSE); } - function &login_verify($login, $pass) + function login_verify($login, $pass) { - GLOBAL $G_false; - - $ret = &$G_false; + $ret = FALSE; log_main("login_verify: ".$login);