From 655a7fc3d336fb36671e2d8ab5bda4229aecfdce Mon Sep 17 00:00:00 2001 From: donncha Date: Fri, 23 Jun 2006 10:32:27 +0000 Subject: WP merge git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@592 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-includes/compat.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'wp-includes/compat.php') diff --git a/wp-includes/compat.php b/wp-includes/compat.php index 49717a4..3b64dfb 100644 --- a/wp-includes/compat.php +++ b/wp-includes/compat.php @@ -73,7 +73,7 @@ if (!defined('CASE_UPPER')) { * @link http://php.net/function.array_change_key_case * @author Stephan Schmidt * @author Aidan Lister - * @version $Revision: 3862 $ + * @version $Revision: 3901 $ * @since PHP 4.2.0 * @require PHP 4.0.0 (user_error) */ @@ -111,4 +111,11 @@ if(!function_exists('http_build_query')) { return implode($separator, $res); } } + +if ( !function_exists('_') ) { + function _($string) { + return $string; + } +} + ?> -- cgit