X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;ds=inline;f=web%2FObj%2Fuser.phh;h=97b0a3876c9263d779d0e712f85d8b9d13518237;hb=645d558d0d1411fc2c1f33c95b2783e1b0ae3e06;hp=a2c382940bc8d9b6b6301cba2a91fe2570fc156f;hpb=9a47c903403cc9ced0120c237af9bec7dbec4a76;p=brisk.git diff --git a/web/Obj/user.phh b/web/Obj/user.phh index a2c3829..97b0a38 100644 --- a/web/Obj/user.phh +++ b/web/Obj/user.phh @@ -59,6 +59,7 @@ define('USER_FLAG_TY_NORM', 0x010000); // done define('USER_FLAG_TY_SUPER', 0x020000); // done define('USER_FLAG_TY_CERT', 0x040000); // done // ... other usefull status ... +define('USER_FLAG_TY_FIRONLY', 0x200000); // done define('USER_FLAG_TY_SUSPEND', 0x400000); // done define('USER_FLAG_TY_DISABLE', 0x800000); // done @@ -695,7 +696,7 @@ class User { stat step */ -function stream_init($init_string, $enc, &$header_out, &$body, $get, $post, $cookie) +function stream_init($init_string, $enc, $header, &$header_out, &$body, $get, $post, $cookie) { $curtime = time(); @@ -716,7 +717,7 @@ function stream_init($init_string, $enc, &$header_out, &$body, $get, $post, $coo $this->rd_data_set($curtime, $transp, $enc, $stat, $subst, $step, $from); - $body .= $this->rd_transp->init($enc, &$header_out, $init_string, self::base_get(), $this->rd_scristp); + $body .= $this->rd_transp->init($enc, $header, &$header_out, $init_string, self::base_get(), $this->rd_scristp); return TRUE; }