From 45b687854da793198defed2e52634f1b16ee1cac Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Mon, 20 Jan 2014 17:58:18 +0100 Subject: [PATCH] wrong number of User::maincheck arguments passed, fixed --- web/Obj/user.phh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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).')'); } -- 2.17.1