From 07663430acc5799a0af5195e7f0317b32d01bd2f Mon Sep 17 00:00:00 2001 From: thepurpleblob Date: Wed, 8 Mar 2006 13:58:55 +0000 Subject: [PATCH] Fixed some urls (mod/quiz to question). --- question/export.php | 6 +++--- question/import.php | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/question/export.php b/question/export.php index 3c96d42c34..cf15092865 100644 --- a/question/export.php +++ b/question/export.php @@ -92,17 +92,17 @@ if (! $qformat->exportpreprocess($category, $course)) { // Do anything before that we need to error("Error occurred during pre-processing!", - "$CFG->wwwroot/mod/quiz/export.php?category=$category->id"); + "$CFG->wwwroot/question/export.php?category=$category->id"); } if (! $qformat->exportprocess($exportfilename)) { // Process the export data error("Error occurred during processing!", - "$CFG->wwwroot/mod/quiz/export.php?category=$category->id"); + "$CFG->wwwroot/question/export.php?category=$category->id"); } if (! $qformat->exportpostprocess()) { // In case anything needs to be done after error("Error occurred during post-processing!", - "$CFG->wwwroot/mod/quiz/export.php?category=$category->id"); + "$CFG->wwwroot/question/export.php?category=$category->id"); } echo "
"; diff --git a/question/import.php b/question/import.php index 6c97520732..f00335c7ab 100644 --- a/question/import.php +++ b/question/import.php @@ -105,17 +105,17 @@ if (! $qformat->importpreprocess($category,$course)) { // Do anything before that we need to error("Error occurred during pre-processing!", - "$CFG->wwwroot/mod/quiz/import.php?category=$category->id"); + "$CFG->wwwroot/question/import.php?category=$category->id"); } if (! $qformat->importprocess($_FILES['newfile']['tmp_name'])) { // Process the uploaded file error("Error occurred during processing!", - "$CFG->wwwroot/mod/quiz/import.php?category=$category->id"); + "$CFG->wwwroot/question/import.php?category=$category->id"); } if (! $qformat->importpostprocess()) { // In case anything needs to be done after error("Error occurred during post-processing!", - "$CFG->wwwroot/mod/quiz/import.php?category=$category->id"); + "$CFG->wwwroot/question/import.php?category=$category->id"); } echo "
"; -- 2.39.5