summaryrefslogtreecommitdiffstats
path: root/web/lib/aur.inc
diff options
context:
space:
mode:
Diffstat (limited to 'web/lib/aur.inc')
-rw-r--r--web/lib/aur.inc9
1 files changed, 3 insertions, 6 deletions
diff --git a/web/lib/aur.inc b/web/lib/aur.inc
index 821288d0..e0521abc 100644
--- a/web/lib/aur.inc
+++ b/web/lib/aur.inc
@@ -275,9 +275,8 @@ function set_lang() {
$q.= "AND Sessions.SessionID = '";
$q.= mysql_real_escape_string($_COOKIE["AURSID"])."'";
$result = db_query($q, $dbh);
- if (!$result) {
- $LANG = "en";
- } else {
+
+ if ($result) {
$row = mysql_fetch_array($result);
$LANG = $row[0];
}
@@ -293,10 +292,8 @@ function set_lang() {
setcookie("AURLANG", $LANG, 0, "/");
}
- if ($LANG != DEFAULT_LANG ) {
+ if ($LANG != "en" ) {
include_once("$LANG.po");
- } else {
- include_once(DEFAULT_LANG.".po");
}
return;