From cb6f407365ed82bbfa26afe6644071da7647da7f Mon Sep 17 00:00:00 2001 From: martinlanghoff Date: Tue, 18 Jul 2006 03:35:02 +0000 Subject: [PATCH] Course restore - Restrict shortname to <= 15 characters, like the database table. Author: Donal McMullan --- backup/restorelib.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backup/restorelib.php b/backup/restorelib.php index ff015ab75c..d62a0003c0 100644 --- a/backup/restorelib.php +++ b/backup/restorelib.php @@ -480,7 +480,8 @@ $suffixshort = ""; } $currentfullname = $fullname.$suffixfull; - $currentshortname = $shortname.$suffixshort; + // Limit the size of shortname - database column accepts <= 15 chars + $currentshortname = substr($shortname, 0, 15 - strlen($suffixshort)).$suffixshort; $coursefull = get_record("course","fullname",addslashes($currentfullname)); $courseshort = get_record("course","shortname",addslashes($currentshortname)); $counter++; -- 2.39.5