From c3359103cd80488d802cc52644a0441f3e7704f2 Mon Sep 17 00:00:00 2001 From: Mark Nelson Date: Mon, 14 Jul 2014 23:48:33 -0700 Subject: [PATCH] MDL-34248 core_backup: added missing end quotation --- backup/util/helper/restore_logs_processor.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backup/util/helper/restore_logs_processor.class.php b/backup/util/helper/restore_logs_processor.class.php index 63ff8019fe3..585d9b432fd 100644 --- a/backup/util/helper/restore_logs_processor.class.php +++ b/backup/util/helper/restore_logs_processor.class.php @@ -89,11 +89,11 @@ class restore_logs_processor { } // Arrived here log is empty, no rule was able to perform the conversion, log the problem if (empty($newlog)) { - self::$task->log('Log module-action "' . $keyname . ' process problem. Not restored', backup::LOG_DEBUG); + self::$task->log('Log module-action "' . $keyname . '" process problem. Not restored', backup::LOG_DEBUG); } } else { // Action not found log the problem - self::$task->log('Log module-action "' . $keyname . ' unknown. Not restored', backup::LOG_DEBUG); + self::$task->log('Log module-action "' . $keyname . '" unknown. Not restored', backup::LOG_DEBUG); $newlog = false; }