From: tjhunt Date: Thu, 19 Apr 2007 17:16:20 +0000 (+0000) Subject: Fix error message to say the right thing. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=0d6f26503481a67028acb9cc6322637fc2834d25;p=moodle.git Fix error message to say the right thing. --- diff --git a/backup/restorelib.php b/backup/restorelib.php index e1046f914d..8f1e61a171 100644 --- a/backup/restorelib.php +++ b/backup/restorelib.php @@ -6267,9 +6267,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; } }