Browse Source

Remove var_dump

Julio Montoya 9 years ago
parent
commit
c0b18f0cea
1 changed files with 1 additions and 3 deletions
  1. 1 3
      main/coursecopy/classes/CourseRestorer.class.php

+ 1 - 3
main/coursecopy/classes/CourseRestorer.class.php

@@ -2951,8 +2951,6 @@ class CourseRestorer
 
 			$resources = $this->course->resources;
 			foreach ($resources[RESOURCE_THEMATIC] as $id => $thematic) {
-
-
 				// check resources inside html from ckeditor tool and copy correct urls into recipient course
                 $thematic->content = DocumentManager::replace_urls_inside_content_html_from_copy_course(
                     $thematic->content,
@@ -2964,7 +2962,7 @@ class CourseRestorer
 				$thematic->params['c_id']  = $this->destination_course_id;
 				unset($thematic->params['id']);
                 unset($thematic->params['iid']);
-                var_dump($thematic->params);
+
 				$last_id = Database::insert($table_thematic, $thematic->params, false);
 
 				if ($last_id) {