Skip to content

Commit

Permalink
Merge branch '3.0.x' into 3.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Woody Gilk committed Nov 14, 2010
2 parents dcd8773 + e34d1ee commit 3b9392d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/kohana/database/result/cached.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function seek($offset)
public function current()
{
// Return an array of the row
return $this->valid() ? $this->_result[$this->_current_row] : NULL;
return $this->valid() ? $this->_result[$this->_current_row] : FALSE;
}

} // End Database_Result_Cached

0 comments on commit 3b9392d

Please sign in to comment.