summaryrefslogtreecommitdiffstats
path: root/problems.php
diff options
context:
space:
mode:
authorJonas Häggqvist <rasher@rasher.dk>2011-06-05 10:57:52 +0000
committerJonas Häggqvist <rasher@rasher.dk>2011-06-05 10:57:52 +0000
commit492a7b67dc2e0992b28eb8e286f60ec05641d2cc (patch)
tree1fe7e508930f3689172ca4d91b812566f46fe746 /problems.php
parent45f3dfb83d01832c3041ef897c3f8bcb606b9e66 (diff)
downloadtranslate-492a7b67dc2e0992b28eb8e286f60ec05641d2cc.tar.gz
translate-492a7b67dc2e0992b28eb8e286f60ec05641d2cc.zip
Fix problems.php not knowing that files are now in the rockbox subdir
git-svn-id: svn://svn.rockbox.org/rockbox/translate.rockbox.org@29967 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'problems.php')
-rw-r--r--problems.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/problems.php b/problems.php
index 96a35c5..b5e1424 100644
--- a/problems.php
+++ b/problems.php
@@ -9,7 +9,7 @@ if (isset($_REQUEST['upload']) && is_uploaded_file($_FILES['langfile']['tmp_name
}
else {
$lang = isset($_GET['lang']) ? $_GET['lang'] : '';
- $phrases = parselangfile(sprintf('apps/lang/%s.lang', $lang));
+ $phrases = parselangfile(sprintf('rockbox/apps/lang/%s.lang', $lang));
}
if ($phrases === false) die("This language doesn't exist, you bad man!");