From: Matteo Nastasi (mop) Date: Mon, 20 Jan 2014 16:58:18 +0000 (+0100) Subject: wrong number of User::maincheck arguments passed, fixed X-Git-Tag: v4.12.4~5 X-Git-Url: http://mop.ddnsfree.com/gitweb/?p=brisk.git;a=commitdiff_plain;h=45b687854da793198defed2e52634f1b16ee1cac wrong number of User::maincheck arguments passed, fixed --- diff --git a/web/Obj/user.phh b/web/Obj/user.phh index a31765f..9ce7967 100644 --- a/web/Obj/user.phh +++ b/web/Obj/user.phh @@ -808,11 +808,8 @@ function stream_main(&$body, $get, $post, $cookie) $pre_main = gettimeofday(TRUE); - $old_stat = $this->rd_stat; - $old_subst = $this->rd_subst; - $old_step = $this->rd_step; printf("xXx PRE : rd_step %d\n", $this->rd_step); - if (($ret = $this->maincheck($old_stat, $old_subst, $old_step, $get, $post, $cookie)) != FALSE) { + if (($ret = $this->maincheck($get, $post, $cookie)) != FALSE) { $body .= $this->rd_transp->chunk( $this->rd_scristp++, $ret); log_rd2(0, 'index_rd.php: after mop_flush (begin: '.sprintf("%f", $pre_main).')'); }