mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
MDL-34952 - change get_info() to public access
This commit is contained in:
parent
d71c486507
commit
9b90584f43
2 changed files with 2 additions and 2 deletions
|
@ -609,7 +609,7 @@ class feedback_item_multichoice extends feedback_item_base {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function get_info($item) {
|
public function get_info($item) {
|
||||||
$presentation = empty($item->presentation) ? '' : $item->presentation;
|
$presentation = empty($item->presentation) ? '' : $item->presentation;
|
||||||
|
|
||||||
$info = new stdClass();
|
$info = new stdClass();
|
||||||
|
|
|
@ -465,7 +465,7 @@ class feedback_item_multichoicerated extends feedback_item_base {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function get_info($item) {
|
public function get_info($item) {
|
||||||
$presentation = empty($item->presentation) ? '' : $item->presentation;
|
$presentation = empty($item->presentation) ? '' : $item->presentation;
|
||||||
|
|
||||||
$info = new stdClass();
|
$info = new stdClass();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue