From 78f83fd29eb4c5dc53495a6bfd1ce88662b25f90 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Sun, 15 Jan 2006 23:21:29 +0000 Subject: [PATCH] Set charset. Props ruckus. fixes #2289 git-svn-id: https://develop.svn.wordpress.org/trunk@3439 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/inline-uploading.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-admin/inline-uploading.php b/wp-admin/inline-uploading.php index 78dd96eea4..b123186868 100644 --- a/wp-admin/inline-uploading.php +++ b/wp-admin/inline-uploading.php @@ -2,6 +2,8 @@ require_once('admin.php'); +header('Content-Type: text/html; charset=' . get_option('blog_charset')); + if (!current_user_can('edit_posts')) die(__('You do not have permission to edit posts.'));