mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-01 03:22:23 +00:00
[fix] undefined notice for feed
This commit is contained in:
parent
b8bb2b4ab6
commit
f0133fe5f4
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ if (isset($_GET['login'])) {
|
|||
} elseif (isset($_GET['updatelanguage'])) {
|
||||
$poche->updateLanguage();
|
||||
} elseif (isset($_GET['feed'])) {
|
||||
if ($_GET['action'] == 'generate') {
|
||||
if (isset($_GET['action']) && $_GET['action'] == 'generate') {
|
||||
$poche->generateToken();
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue