]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-15094 fixed conversion typo
authorskodak <skodak>
Sun, 15 Jun 2008 10:42:48 +0000 (10:42 +0000)
committerskodak <skodak>
Sun, 15 Jun 2008 10:42:48 +0000 (10:42 +0000)
mod/feedback/db/upgrade.php

index 6b9c847b0f8417a65b2fb112bea3ac14c6fc3ca0..4f0e254f203769b525af5d6f78acc3df2995767a 100644 (file)
@@ -160,7 +160,7 @@ function xmldb_feedback_upgrade($oldversion=0) {
             
             $result = $result && $DB->execute($update_sql1);
             $result = $result && $DB->execute($update_sql2);
-            $result = $result && $BB->execute($update_sql3);
+            $result = $result && $DB->execute($update_sql3);
         }
         if ($result) {
             $update_sql1 = "UPDATE {feedback_item} SET typ = 'multichoice' WHERE typ IN('radio','check','dropdown')";