From: moodler Date: Sun, 14 Sep 2003 12:22:13 +0000 (+0000) Subject: Used the wrong function to display the message (Notify, not Notice) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=c7ce6d80a36af4ab78f02697abb350963b642787;p=moodle.git Used the wrong function to display the message (Notify, not Notice) --- diff --git a/lib/db/postgres7.php b/lib/db/postgres7.php index 237b5693ae..e4ce836925 100644 --- a/lib/db/postgres7.php +++ b/lib/db/postgres7.php @@ -194,7 +194,7 @@ function main_upgrade($oldversion=0) { } if ($oldversion < 2003080400) { - notice("If the following command fails you may want to change the type manually, from TEXT to INTEGER. Moodle should keep working even if you don't."); + notify("If the following command fails you may want to change the type manually, from TEXT to INTEGER. Moodle should keep working even if you don't."); table_column("course_categories", "courseorder", "courseorder", "integer", "10", "unsigned"); table_column("course", "", "sortorder", "integer", "10", "unsigned", "0", "", "category"); }