From 769236ff3300a8a601a909fb7af0d8127bbfe3a3 Mon Sep 17 00:00:00 2001 From: real_nowhereman Date: Sat, 3 Jan 2009 12:08:22 +0000 Subject: [PATCH] fixing dumb notice (php4 compat) --- fp-includes/core/core.bplustree.class.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/fp-includes/core/core.bplustree.class.php b/fp-includes/core/core.bplustree.class.php index da59009..f2257d3 100755 --- a/fp-includes/core/core.bplustree.class.php +++ b/fp-includes/core/core.bplustree.class.php @@ -1545,7 +1545,8 @@ class BPlusTree { $includeupper =null ) { - return $o =& new BPlusWalker($this, $keylower, $includelower, $keyupper, $includeupper); + $o =& new BPlusWalker($this, $keylower, $includelower, $keyupper, $includeupper); + return $o; } @@ -2569,8 +2570,8 @@ class SBPlusTree extends BPlusTree { $keyupper =null, $includeupper =null ) { - - return $o =& new SBPlusWalker($this, $keylower, $includelower, $keyupper, $includeupper); + $o =& new SBPlusWalker($this, $keylower, $includelower, $keyupper, $includeupper); + return $o; } }