#1505 - PHP notice: Non object property in SQLMap.php

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@43917 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Andrew O'Neil 2007-10-29 01:02:40 +00:00
parent 73943f9140
commit bdf74e499f

View File

@ -46,7 +46,7 @@ class SQLMap extends Object implements Iterator {
*/
public function rewind() {
$this->genItems();
return $this->items->rewind()->Title;
return $this->items->rewind() ? $this->items->rewind()->Title : null;
}
public function current() {