From b33888d124bc10c00734b4bc8c4cdae5fc0496f0 Mon Sep 17 00:00:00 2001 From: tjhunt Date: Thu, 19 Apr 2007 17:16:29 +0000 Subject: [PATCH] Fix error message to say the right thing. --- backup/restorelib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backup/restorelib.php b/backup/restorelib.php index 9d561d9b74b..496c368a5d0 100644 --- a/backup/restorelib.php +++ b/backup/restorelib.php @@ -5830,9 +5830,9 @@ } if (!$status = restore_decode_content_links($restore)) { if (!defined('RESTORE_SILENTLY')) { - notify("Could not refresh events for activities!"); + notify("Could not decode content links!"); } else { - $errorstr = "Could not refresh events for activities!"; + $errorstr = "Could not decode content links!"; return false; } }