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; } }