]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed some urls (mod/quiz to question).
authorthepurpleblob <thepurpleblob>
Wed, 8 Mar 2006 13:58:55 +0000 (13:58 +0000)
committerthepurpleblob <thepurpleblob>
Wed, 8 Mar 2006 13:58:55 +0000 (13:58 +0000)
question/export.php
question/import.php

index 3c96d42c340785f1d8283b427ef3820b49f1df2c..cf1509286523172c3a9a0e79cc5ea9c842980565 100644 (file)
 
         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 "<hr />";
 
index 6c975207322d06d1db4d24bb6e5be891e261b862..f00335c7ab3b9202134f27ed62c896fa882df7bd 100644 (file)
 
             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 "<hr />";