From 18ccb8b30b013995732262ac702ea673cb0b79b5 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Wed, 25 Aug 2010 21:16:25 -0600 Subject: [PATCH] This function always exists as of PHP 4.2.0 --- framework/Core/lib/Horde/Registry.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/framework/Core/lib/Horde/Registry.php b/framework/Core/lib/Horde/Registry.php index 90997727f..86f771b34 100644 --- a/framework/Core/lib/Horde/Registry.php +++ b/framework/Core/lib/Horde/Registry.php @@ -2377,10 +2377,7 @@ class Horde_Registry $charset = $this->getCharset(); } - /* The existence of this function depends on the platform. */ - if (function_exists('bind_textdomain_codeset')) { - $this->_cachedCharset(0, bind_textdomain_codeset($app, $charset)); - } + $this->_cachedCharset(0, bind_textdomain_codeset($app, $charset)); if (!Horde::contentSent()) { header('Content-Type: text/html; charset=' . $charset); -- 2.11.0