From 681ba47a59b8cdccd41032b661d5d338449dda84 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Fri, 1 Sep 2006 18:41:30 +0000 Subject: [PATCH] Only mysql and postgresql show the UTF-8 migration message. --- admin/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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%'); } -- 2.39.5