Merge branch 'w04_MDL-31180_m23_closedproperty' of git://github.com/skodak/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2012-01-23 01:10:38 +01:00
commit 14926a50c7

View File

@ -46,11 +46,11 @@ class fake_recordset implements Iterator {
}
function close() {
$closed=true;
$this->closed=true;
}
function was_closed() {
return $closed;
return $this->closed;
}
}