1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-22 17:18:37 +00:00

bug fix #215: change language from config screen

This commit is contained in:
Nicolas Lœuillet 2013-10-07 14:26:25 +02:00
parent 894c36ea32
commit 5011388f39
3 changed files with 99 additions and 0 deletions

View file

@ -67,7 +67,10 @@ if (isset($_GET['login'])) {
$poche->export();
} elseif (isset($_GET['updatetheme'])) {
$poche->updateTheme();
} elseif (isset($_GET['updatelanguage'])) {
$poche->updateLanguage();
}
elseif (isset($_GET['plainurl']) && !empty($_GET['plainurl'])) {
$plain_url = new Url(base64_encode($_GET['plainurl']));
$poche->action('add', $plain_url);