MDL-16072 fixed pg problem

This commit is contained in:
skodak
2008-08-18 22:31:47 +00:00
parent f7f71f83ba
commit 39f13edb4b
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -110,12 +110,11 @@ function xmldb_forum_upgrade($oldversion) {
JOIN {forum} f ON f.id = d.forum
JOIN {modules} m ON m.name = 'forum'
JOIN {course_modules} cm ON (cm.module = m.id AND cm.instance = f.id)
WHERE p.attachment <> '$empty' AND p.attachment <> '1'
ORDER BY f.course, f.id, d.id";
WHERE p.attachment <> '$empty' AND p.attachment <> '1'";
$count = $DB->count_records_sql("SELECT COUNT('x') $sqlfrom");
if ($rs = $DB->get_recordset_sql("SELECT p.id, p.attachment, d.forum, f.course, cm.id AS cmid $sqlfrom")) {
if ($rs = $DB->get_recordset_sql("SELECT p.id, p.attachment, d.forum, f.course, cm.id AS cmid $sqlfrom ORDER BY f.course, f.id, d.id")) {
$pbar = new progress_bar('migrateforumfiles', 500, true);
+1 -1
View File
@@ -5,7 +5,7 @@
// This fragment is called by /admin/index.php
////////////////////////////////////////////////////////////////////////////////
$module->version = 2008081800;
$module->version = 2008081900;
$module->requires = 2008081600; // Requires this Moodle version
$module->cron = 60;