fixing dumb notice (php4 compat)
This commit is contained in:
parent
d86ddd0eae
commit
769236ff33
@ -1545,7 +1545,8 @@ class BPlusTree {
|
|||||||
$includeupper =null
|
$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,
|
$keyupper =null,
|
||||||
$includeupper =null
|
$includeupper =null
|
||||||
) {
|
) {
|
||||||
|
$o =& new SBPlusWalker($this, $keylower, $includelower, $keyupper, $includeupper);
|
||||||
return $o =& new SBPlusWalker($this, $keylower, $includelower, $keyupper, $includeupper);
|
return $o;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user