mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00

What happens is that adding random questions used to set the timestamps of these questions to the same value. This is fine in normal operation, but it stuffs up the backup of that course, overwriting the question. When the course is restored, the missing questions cause quizzes to have lots of red notices like "Question not found". Anyhow, this patch should safely fix older installations that may have these duplicate questions lying around. THANKS ELOY!
13 lines
382 B
PHP
13 lines
382 B
PHP
<?PHP //$Id$
|
|
// This file defines the current version of the
|
|
// Moodle code that is being used. This can be
|
|
// compared against the values stored in the
|
|
// database to determine whether upgrades should
|
|
// be performed (see lib/db/*.php)
|
|
|
|
$version = 2003111100; // The current version is a date (YYYYMMDDXX)
|
|
|
|
$release = "1.2 development"; // User-friendly version number
|
|
|
|
|
|
?>
|