From 8a221eb40bc07709f55e8e57cd31f2927a41e3e9 Mon Sep 17 00:00:00 2001 From: michelvaldrighi Date: Tue, 12 Aug 2003 20:35:53 +0000 Subject: [PATCH] allow for a charset to be set with $admin_area_charset - default is iso-8859-15 (it's iso-8859-1 plus the euro sign) git-svn-id: http://svn.automattic.com/wordpress/trunk@307 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/b2header.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-admin/b2header.php b/wp-admin/b2header.php index 592a3514fe..7c12f69d32 100644 --- a/wp-admin/b2header.php +++ b/wp-admin/b2header.php @@ -28,6 +28,8 @@ $time_difference=get_settings('time_difference'); $date_format=stripslashes(get_settings('date_format')); $time_format=stripslashes(get_settings('time_format')); +$admin_area_charset = (!isset($admin_area_charset)) ? 'iso-8859-15' : $admin_area_charset; + // let's deactivate quicktags on IE Mac and Lynx, because they don't work there. if (($is_macIE) || ($is_lynx)) $use_quicktags = 0; @@ -55,7 +57,7 @@ if ($standalone == 0) { WordPress > <?php bloginfo('name') ?> > <?php echo $title; ?> - +