Skip to content

Commit

Permalink
Merge branch 'MDL-60615-master' of git://github.com/damyon/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
David Monllao committed Nov 9, 2017
2 parents bef5a8c + 246698e commit 7fdcdc0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion backup/cc/entity.forum.class.php
Expand Up @@ -112,7 +112,7 @@ private function create_node_course_modules_mod_forum ($instance) {

public function get_topic_data ($instance) {

$topic_data = '';
$topic_data = array();

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

Expand Down
2 changes: 1 addition & 1 deletion backup/cc/entity.quiz.class.php
Expand Up @@ -68,7 +68,7 @@ private function generate_instances () {
$last_question_id = 0;
$last_answer_id = 0;

$instances = '';
$instances = array();

$types = array(MOODLE_TYPE_QUIZ, MOODLE_TYPE_QUESTION_BANK);

Expand Down
2 changes: 1 addition & 1 deletion backup/cc/entity11.basiclti.class.php
Expand Up @@ -87,7 +87,7 @@ protected function getValue($node, $default = '') {

public function get_basiclti_data($instance) {

$topic_data = '';
$topic_data = array();

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

Expand Down
2 changes: 1 addition & 1 deletion backup/cc/entity11.forum.class.php
Expand Up @@ -111,7 +111,7 @@ private function create_node_course_modules_mod_forum ($instance) {

public function get_topic_data ($instance) {

$topic_data = '';
$topic_data = array();

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

Expand Down
2 changes: 1 addition & 1 deletion backup/cc/entity11.lti.class.php
Expand Up @@ -82,7 +82,7 @@ protected function getValue($node, $default = '') {

public function get_basiclti_data($instance) {

$topic_data = '';
$topic_data = array();

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

Expand Down
2 changes: 1 addition & 1 deletion backup/cc/entity11.quiz.class.php
Expand Up @@ -68,7 +68,7 @@ private function generate_instances () {
$last_question_id = 0;
$last_answer_id = 0;

$instances = '';
$instances = array();

$types = array(MOODLE_TYPE_QUIZ, MOODLE_TYPE_QUESTION_BANK);

Expand Down

0 comments on commit 7fdcdc0

Please sign in to comment.