From: stronk7 Date: Fri, 1 Sep 2006 18:41:30 +0000 (+0000) Subject: Only mysql and postgresql show the UTF-8 migration message. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=681ba47a59b8cdccd41032b661d5d338449dda84;p=moodle.git Only mysql and postgresql show the UTF-8 migration message. --- diff --git a/admin/index.php b/admin/index.php index 2148c194f0..400e2da67c 100644 --- a/admin/index.php +++ b/admin/index.php @@ -412,8 +412,8 @@ print_simple_box(get_string('sitemaintenancewarning', 'admin') , 'center', '60%'); } -/// Alert if we are currently in maintenance mode - if (empty($CFG->unicodedb)) { +/// Alert to display the utf-8 migration button (if !unicode yet and DB is MySQL or PG) + if (empty($CFG->unicodedb) && in_array($CFG->dbtype, array('mysql', 'postgres7'))) { print_simple_box(get_string('unicodeupgradenotice', 'admin') , 'center', '60%'); }