Changeset 568 -- 2009-03-16 17:40:42
- Author
Hiroaki Kawai
- Comment
- bugfix
Diffs
File_HyperEstraier/trunk/HyperEstraier/SearchResult.php
@@ -72,10 +72,12 @@
/** Iterator */
function next(){
$this->pos++;
+ return next($this->docs);
}
/** Iterator */
function rewind(){
+ reset($this->docs);
$this->pos=0;
}