From a8f9da58910d5ae9d8e5a890d50ba78a4c240f97 Mon Sep 17 00:00:00 2001 From: Greg Beaver Date: Mon, 2 Jan 2006 15:24:33 +0000 Subject: [PATCH] make sure mbstring doesn't screw stuff --- pear/install-pear.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pear/install-pear.php b/pear/install-pear.php index 5671950fdf..1251b6874c 100644 --- a/pear/install-pear.php +++ b/pear/install-pear.php @@ -5,6 +5,9 @@ error_reporting(E_ALL); $pear_dir = dirname(__FILE__); ini_set('include_path', $pear_dir); +if (function_exists('mb_internal_encoding')) { + mb_internal_encoding('ASCII'); +} set_time_limit(0); include_once 'PEAR.php'; include_once 'PEAR/Installer.php'; -- 2.40.0