From: mjollnir_ Date: Fri, 27 Aug 2004 00:24:05 +0000 (+0000) Subject: Fixed very small bug where log entries with module course & action recent are unable... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=166330f56ea489ed4a138a3721b21acfd971229d;p=moodle.git Fixed very small bug where log entries with module course & action recent are unable to be restored. --- diff --git a/backup/restorelib.php b/backup/restorelib.php index 72369d40cc..e259f202c3 100644 --- a/backup/restorelib.php +++ b/backup/restorelib.php @@ -1668,6 +1668,11 @@ $log->info = ""; $toinsert = true; break; + case "recent": + $log->url = "recent.php?id=".$log->course; + $log->info = ""; + $toinsert = true; + break; default: echo "action (".$log->module."-".$log->action.") unknow. Not restored
"; //Debug break;