Skip to content

Commit b7abe12

Browse files
author
David Monllao
committed
Merge branch 'MDL-60615-33' of git://github.com/damyon/moodle into MOODLE_33_STABLE
2 parents 5e06871 + 365a403 commit b7abe12

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

backup/cc/entity.forum.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ private function create_node_course_modules_mod_forum ($instance) {
112112

113113
public function get_topic_data ($instance) {
114114

115-
$topic_data = '';
115+
$topic_data = array();
116116

117117
$topic_file = $this->get_external_xml($instance['resource_indentifier']);
118118

backup/cc/entity.quiz.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ private function generate_instances () {
6868
$last_question_id = 0;
6969
$last_answer_id = 0;
7070

71-
$instances = '';
71+
$instances = array();
7272

7373
$types = array(MOODLE_TYPE_QUIZ, MOODLE_TYPE_QUESTION_BANK);
7474

backup/cc/entity11.basiclti.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ protected function getValue($node, $default = '') {
8787

8888
public function get_basiclti_data($instance) {
8989

90-
$topic_data = '';
90+
$topic_data = array();
9191

9292
$basiclti_file = $this->get_external_xml($instance['resource_indentifier']);
9393

backup/cc/entity11.forum.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ private function create_node_course_modules_mod_forum ($instance) {
111111

112112
public function get_topic_data ($instance) {
113113

114-
$topic_data = '';
114+
$topic_data = array();
115115

116116
$topic_file = $this->get_external_xml($instance['resource_indentifier']);
117117

backup/cc/entity11.lti.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ protected function getValue($node, $default = '') {
8282

8383
public function get_basiclti_data($instance) {
8484

85-
$topic_data = '';
85+
$topic_data = array();
8686

8787
$basiclti_file = $this->get_external_xml($instance['resource_indentifier']);
8888

backup/cc/entity11.quiz.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ private function generate_instances () {
6868
$last_question_id = 0;
6969
$last_answer_id = 0;
7070

71-
$instances = '';
71+
$instances = array();
7272

7373
$types = array(MOODLE_TYPE_QUIZ, MOODLE_TYPE_QUESTION_BANK);
7474

0 commit comments

Comments
 (0)