From: Greg Beaver Date: Mon, 2 Jan 2006 15:24:33 +0000 (+0000) Subject: make sure mbstring doesn't screw stuff X-Git-Tag: php-4.4.2RC2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8f9da58910d5ae9d8e5a890d50ba78a4c240f97;p=php make sure mbstring doesn't screw stuff --- 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';