summaryrefslogtreecommitdiffstats
path: root/wp-includes/compat.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-includes/compat.php')
-rw-r--r--wp-includes/compat.php9
1 files changed, 8 insertions, 1 deletions
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 <schst@php.net>
* @author Aidan Lister <aidan@php.net>
- * @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;
+ }
+}
+
?>