]> git.mjollnir.org Git - moodle.git/commitdiff
Making sure that restore views work in xhtml strict 1.0. MDL-7861.
authorvyshane <vyshane>
Tue, 19 Dec 2006 07:00:14 +0000 (07:00 +0000)
committervyshane <vyshane>
Tue, 19 Dec 2006 07:00:14 +0000 (07:00 +0000)
backup/restorelib.php
mod/forum/restorelib.php

index 706aafd431c2d99c5de7253eaba19044e8207209..e050059b7123c4f0a469922fe68f9ca0bbe97ced 100644 (file)
             //Into new course
             if ($restore->restoreto == 2) {
                 if (!defined('RESTORE_SILENTLY')) {
-                    echo "<li>".get_string("creatingsections").'</li>';
+                    echo "<li>".get_string("creatingsections");
                 }
                 if (!$status = restore_create_sections($restore,$xml_file)) {
                     if (!defined('RESTORE_SILENTLY')) {
                         return false;
                     }
                 }
+                if (!defined('RESTORE_SILENTLY')) {
+                    echo '</li>';
+                }
                 //Into existing course
             } else if ($restore->restoreto == 0 or $restore->restoreto == 1) {
                 if (!defined('RESTORE_SILENTLY')) {
-                    echo "<li>".get_string("checkingsections").'</li>';
+                    echo "<li>".get_string("checkingsections");
                 }
                 if (!$status = restore_create_sections($restore,$xml_file)) {
                     if (!defined('RESTORE_SILENTLY')) {
                         return false;
                     } 
                 }
+                if (!defined('RESTORE_SILENTLY')) {
+                    echo '</li>';
+                }
                 //Error
             } else {
                 if (!defined('RESTORE_SILENTLY')) {
                         return false;
                     }
                 }
+                if (!defined('RESTORE_SILENTLY')) {
+                    echo '</li>';
+                }
             }
         }
         
         if ($status and ($restore->mods['quiz']->restore)) {
             include_once("$CFG->dirroot/question/restorelib.php");
             if (!defined('RESTORE_SILENTLY')) {
-                echo "</li><li>".get_string("creatingcategoriesandquestions");
+                echo "<li>".get_string("creatingcategoriesandquestions");
                 echo "<ul>";
             }
             if (!$status = restore_create_questions($restore,$xml_file)) {
                     echo "</li></ul>";
                 }
             }
+            if (!defined('RESTORE_SILENTLY')) {
+                echo '</li>';
+            }
         }
 
         //Now create course files as needed
         if ($status and ($restore->course_files)) {
             if (!defined('RESTORE_SILENTLY')) {
-                echo "</li><li>".get_string("copyingcoursefiles")."</li>";
+                echo "<li>".get_string("copyingcoursefiles")."</li>";
             }
             if (!$status = restore_course_files($restore)) {
                 if (empty($status)) {
                 //Inform about user dirs created from backup
                 if (!defined('RESTORE_SILENTLY')) {
                     echo "<ul>";
-                    echo "<li>".get_string("filesfolders").": ".$status;
+                    echo "<li>".get_string("filesfolders").": ".$status.'</li>';
                     echo "</ul>";
                 }       
             }
         //Now create scales as needed
         if ($status) {
             if (!defined('RESTORE_SILENTLY')) {
-                echo "<li>".get_string("creatingscales").'</li>';
+                echo "<li>".get_string("creatingscales");
             }
             if (!$status = restore_create_scales($restore,$xml_file)) {
                 if (!defined('RESTORE_SILENTLY')) {
                     return false;
                 }
             }
+            if (!defined('RESTORE_SILENTLY')) {
+                echo '</li>';
+            }
         }
 
         //Now create groups as needed
         if ($status) {
             if (!defined('RESTORE_SILENTLY')) {
-                echo "<li>".get_string("creatinggroups").'</li>';
+                echo "<li>".get_string("creatinggroups");
             }
             if (!$status = restore_create_groups($restore,$xml_file)) {
                 if (!defined('RESTORE_SILENTLY')) {
                     return false;
                 }
             }
+            if (!defined('RESTORE_SILENTLY')) {
+                echo '</li>';
+            }
         }
         
         //Now create events as needed
         if ($status) {
             if (!defined('RESTORE_SILENTLY')) {
-                echo "<li>".get_string("creatingevents").'</li>';
+                echo "<li>".get_string("creatingevents");
             }
             if (!$status = restore_create_events($restore,$xml_file)) {
                 if (!defined('RESTORE_SILENTLY')) {
                     return false;
                 }
             }
+            if (!defined('RESTORE_SILENTLY')) {
+                echo '</li>';
+            }
         }
 
         //Now create course modules as needed
         if ($status) {
             if (!defined('RESTORE_SILENTLY')) {
-                echo "<li>".get_string("creatingcoursemodules").'</li>';
+                echo "<li>".get_string("creatingcoursemodules");
             } 
             if (!$status = restore_create_modules($restore,$xml_file)) {
                 if (!defined('RESTORE_SILENTLY')) {
                     return false;
                 }
             }
+            if (!defined('RESTORE_SILENTLY')) {
+                echo '</li>';
+            }
         }
 
         //Now create gradebook as needed -- AFTER modules!!!
         if ($status) {
             if (!defined('RESTORE_SILENTLY')) {
-                echo "<li>".get_string("creatinggradebook").'</li>';
+                echo "<li>".get_string("creatinggradebook");
             } 
             if (!$status = restore_create_gradebook($restore,$xml_file)) {
                 if (!defined('RESTORE_SILENTLY')) {
                     return false;
                 }
             }
+            if (!defined('RESTORE_SILENTLY')) {
+                echo '</li>';
+            }
         }
 
         //Bring back the course blocks -- do it AFTER the modules!!!
             //If we are deleting and bringing into a course or making a new course, same situation
             if($restore->restoreto == 0 || $restore->restoreto == 2) {
                 if (!defined('RESTORE_SILENTLY')) {
-                    echo '<li>'.get_string('creatingblocks').'</li>';
+                    echo '<li>'.get_string('creatingblocks');
                 }
                 $course_header->blockinfo = !empty($course_header->blockinfo) ? $course_header->blockinfo : NULL;
                 if (!$status = restore_create_blocks($restore, $info->backup_block_format, $course_header->blockinfo, $xml_file)) {
                         return false;
                     }
                 }
+                if (!defined('RESTORE_SILENTLY')) {
+                    echo '</li>';
+                }
             }
         }
 
             //If we are deleting and bringing into a course or making a new course, same situation
             if($restore->restoreto == 0 || $restore->restoreto == 2) {
                 if (!defined('RESTORE_SILENTLY')) {
-                    echo '<li>'.get_string('courseformatdata').'</li>';
+                    echo '<li>'.get_string('courseformatdata');
                 }
                 if (!$status = restore_set_format_data($restore, $xml_file)) {
                         $error = "Error while setting the course format data";
                         return false;
                     }
                 }
+                if (!defined('RESTORE_SILENTLY')) {
+                    echo '</li>';
+                }
             }
         }
 
         //Now create log entries as needed
         if ($status and ($restore->logs)) {
             if (!defined('RESTORE_SILENTLY')) {
-                echo "</li><li>".get_string("creatinglogentries");
+                echo "<li>".get_string("creatinglogentries");
             }
             if (!$status = restore_create_logs($restore,$xml_file)) {
                 if (!defined('RESTORE_SILENTLY')) {
                     return false;
                 }
             }
+            if (!defined('RESTORE_SILENTLY')) {
+                echo '</li>';
+            }
         }    
 
         //Now, if all is OK, adjust the instance field in course_modules !!
         if ($status) {
             if (!defined('RESTORE_SILENTLY')) {
-                echo "</li><li>".get_string("checkinginstances").'</li>';
+                echo "<li>".get_string("checkinginstances");
             }
             if (!$status = restore_check_instances($restore)) {
                 if (!defined('RESTORE_SILENTLY')) {
                     return false;
                 }
             }
+            if (!defined('RESTORE_SILENTLY')) {
+                echo '</li>';
+            }
         }
 
         //Now, if all is OK, adjust activity events
         if ($status) {
             if (!defined('RESTORE_SILENTLY')) {
-                echo "<li>".get_string("refreshingevents").'</li>';
+                echo "<li>".get_string("refreshingevents");
             }
             if (!$status = restore_refresh_events($restore)) {
                 if (!defined('RESTORE_SILENTLY')) {
                     return false;
                 }
             }
+            if (!defined('RESTORE_SILENTLY')) {
+                echo '</li>';
+            }
         }
 
         //Now, if all is OK, adjust inter-activity links
                     return false;
                 }
             }
+            if (!defined('RESTORE_SILENTLY')) {
+                echo '</li>';
+            }
         }
 
         //Now, with backup files prior to version 2005041100,
                     return false;
                 }
             }
+            if (!defined('RESTORE_SILENTLY')) {
+                echo '</li>';
+            }
         }
 
         /*******************************************************************************
         //   - add user as teacher
         if ($status) {
             if (!defined('RESTORE_SILENTLY')) {
-                echo "</li><li>".get_string("checkingcourse").'</li>';
+                echo "<li>".get_string("checkingcourse");
             } 
             //modinfo field
             rebuild_course_cache($restore->course_id);
                     notify('Could not find a legacy teacher role. You might need your moodle admin to assign a role with editing privilages to this course.');
                 }
             }
+            if (!defined('RESTORE_SILENTLY')) {
+                echo '</li>';
+            }
         }
 
         //Cleanup temps (files and db)
         if ($status) {
             if (!defined('RESTORE_SILENTLY')) {
-                echo "<li>".get_string("cleaningtempdata").'</li>';
+                echo "<li>".get_string("cleaningtempdata");
             }
             if (!$status = clean_temp_data ($restore)) {
                 if (!defined('RESTORE_SILENTLY')) {
                     return false;
                 }
             }
+            if (!defined('RESTORE_SILENTLY')) {
+                echo '</li>';
+            }
         }
 
         if ($status = restore_close_html($restore)){
-            echo "<li>Closing the Restorelog.html file.<li>";
+            echo '<li>Closing the Restorelog.html file.</li>';
         }
 
         if (!defined('RESTORE_SILENTLY')) {
index 4ed15447891d72a92b277094cf279928a37e9985..61101a3e7b6808f89aedd84c749680d60763b02a 100644 (file)
@@ -96,7 +96,7 @@
 
             //Do some output
             if (!defined('RESTORE_SILENTLY')) {
-                echo "<li>".get_string("modulename","forum")." \"".format_string(stripslashes($forum->name),true)."\"";
+                echo "<li>".get_string("modulename","forum")." \"".format_string(stripslashes($forum->name),true)."\"</li>";
             }
             backup_flush(300);