Fixed regression and broken interafce implementation

This commit is contained in:
David Mudrak 2010-01-04 18:17:17 +00:00
parent 5c397bab92
commit 1accb520a0
2 changed files with 15 additions and 1 deletions

View File

@ -243,7 +243,7 @@ class workshop_accumulative_strategy implements workshop_strategy {
/**
* @see parent::get_assessments_recordset()
*/
public function get_assessments_recordset($restrict) {
public function get_assessments_recordset($restrict=null) {
global $DB;
$sql = 'SELECT s.id AS submissionid,

View File

@ -275,6 +275,20 @@ class workshop_numerrors_strategy implements workshop_strategy {
return false;
}
/**
* @see parent::get_assessments_recordset()
*/
public function get_assessments_recordset($restrict=null) {
// todo
}
/**
* @see parent::get_dimensions_info()
*/
public function get_dimensions_info() {
// todo
}
////////////////////////////////////////////////////////////////////////////////
// Internal methods //
////////////////////////////////////////////////////////////////////////////////