From 4354f8c2144189f9306ed48dc37566360095bd52 Mon Sep 17 00:00:00 2001 From: rboren Date: Wed, 19 May 2004 03:09:49 +0000 Subject: [PATCH] Remove extra slash in filename. git-svn-id: http://svn.automattic.com/wordpress/trunk@1312 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/wp-l10n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/wp-l10n.php b/wp-includes/wp-l10n.php index 0d27b989f..d3c36a6de 100644 --- a/wp-includes/wp-l10n.php +++ b/wp-includes/wp-l10n.php @@ -12,7 +12,7 @@ if (empty($locale)) { $locale = 'en_US'; } -$mofile = $curpath . "/languages/$locale.mo"; +$mofile = $curpath . "languages/$locale.mo"; require($curpath . 'streams.php'); require($curpath . 'gettext.php');