From c601593a59d8ccdf63f88fcae426d372140c5ea3 Mon Sep 17 00:00:00 2001 From: real_nowhereman Date: Mon, 30 Nov 2009 17:35:56 +0000 Subject: [PATCH] should suppress the other E_STRICT error --- fp-includes/core/core.bplustree.class.php | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/fp-includes/core/core.bplustree.class.php b/fp-includes/core/core.bplustree.class.php index 90d42cf..d2fbc0a 100755 --- a/fp-includes/core/core.bplustree.class.php +++ b/fp-includes/core/core.bplustree.class.php @@ -2614,18 +2614,11 @@ class caching_SBPT extends SBPlusTree { var $cache = array(); - function __construct($infile, $stringfile, - $maxstring = 256, - $pos=null, $nodesize=null, $keylen=null) { - $this->SBPlusTree($infile, $stringfile, - $maxstring, - $pos, $nodesize, $keylen); - } - function caching_SBPT($infile, $stringfile, $maxstring = 256, $pos=null, $nodesize=null, $keylen=null) { - $this->__construct($infile, $stringfile, + + parent::SBPlusTree($infile, $stringfile, $maxstring, $pos, $nodesize, $keylen); }