From 483b98f330fb58f6965d61079f42eb9adddbe2fd Mon Sep 17 00:00:00 2001 From: real_nowhereman Date: Mon, 30 Nov 2009 17:23:45 +0000 Subject: [PATCH] fix for boring signature conflict (PHP5.3.1) --- fp-includes/core/core.bplustree.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fp-includes/core/core.bplustree.class.php b/fp-includes/core/core.bplustree.class.php index 13ee835..90d42cf 100755 --- a/fp-includes/core/core.bplustree.class.php +++ b/fp-includes/core/core.bplustree.class.php @@ -2526,9 +2526,9 @@ class caching_BPT extends BPlusTree { trigger_error("operation not permitted in caching_BPT", E_USER_WARNING); } - function setitem() { $this->nope(); } + function setitem($key, $val) { $this->nope(); } - function delitem() { $this->nope(); } + function delitem($key) { $this->nope(); } } @@ -2648,9 +2648,9 @@ class caching_SBPT extends SBPlusTree { trigger_error("operation not permitted in caching_BPT", E_USER_WARNING); } - function setitem() { $this->nope(); } + function setitem($key, $val) { $this->nope(); } - function delitem() { $this->nope(); } + function delitem($key) { $this->nope(); } }