From 8d736b3f5c6809e408997510728eb1797c3568a2 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 19 May 2004 03:09:49 +0000 Subject: [PATCH] Remove extra slash in filename. git-svn-id: https://develop.svn.wordpress.org/trunk@1312 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 0d27b989f0..d3c36a6de2 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');