From 05a399d7932c3d0532f96d3afbdfeaede78ba4fd Mon Sep 17 00:00:00 2001 From: nfreear Date: Fri, 16 Feb 2007 15:46:51 +0000 Subject: [PATCH] Fixes bug MDL-8059 "... won't restore - error A required parameter (id) was missing", reapplied martinl's 16/1 Strict fix. --- backup/restorelib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backup/restorelib.php b/backup/restorelib.php index ac10801127..86ec7ef8f2 100644 --- a/backup/restorelib.php +++ b/backup/restorelib.php @@ -5525,7 +5525,7 @@ if ($status){ require_once("$CFG->dirroot/backup/bb/restore_bb.php"); if (!defined('RESTORE_SILENTLY')) { - echo "
  • ".get_string("checkingforbbexport"); + echo "
  • ".get_string("checkingforbbexport").'
  • '; } $status = blackboard_convert($CFG->dataroot."/temp/backup/".$backup_unique_code); } @@ -5566,7 +5566,7 @@ if (!defined('RESTORE_SILENTLY')) { //End the main ul - echo ""; + echo "\n"; //End the main table echo ""; -- 2.39.5