aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-10-07 14:26:25 +0200
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-10-07 14:26:25 +0200
commit5011388f39432f810e397a60d9b200faba6c868b (patch)
tree4c5fd66795f1b20c42cb054f0e760b6db5b71eb5 /index.php
parent894c36ea32d38d425e27dae43a29dcd9e669040e (diff)
downloadwallabag-5011388f39432f810e397a60d9b200faba6c868b.tar.gz
wallabag-5011388f39432f810e397a60d9b200faba6c868b.tar.zst
wallabag-5011388f39432f810e397a60d9b200faba6c868b.zip
bug fix #215: change language from config screen
Diffstat (limited to 'index.php')
-rw-r--r--index.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/index.php b/index.php
index 22696c6f..a6459270 100644
--- a/index.php
+++ b/index.php
@@ -67,7 +67,10 @@ if (isset($_GET['login'])) {
67 $poche->export(); 67 $poche->export();
68} elseif (isset($_GET['updatetheme'])) { 68} elseif (isset($_GET['updatetheme'])) {
69 $poche->updateTheme(); 69 $poche->updateTheme();
70} elseif (isset($_GET['updatelanguage'])) {
71 $poche->updateLanguage();
70} 72}
73
71elseif (isset($_GET['plainurl']) && !empty($_GET['plainurl'])) { 74elseif (isset($_GET['plainurl']) && !empty($_GET['plainurl'])) {
72 $plain_url = new Url(base64_encode($_GET['plainurl'])); 75 $plain_url = new Url(base64_encode($_GET['plainurl']));
73 $poche->action('add', $plain_url); 76 $poche->action('add', $plain_url);