diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-12-03 12:07:02 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-12-03 12:07:02 +0100 |
commit | f0133fe5f48386f09c3dc5d549a2204fdfda27bc (patch) | |
tree | c615e0788449c7c605aa2113f9fd2335371f6692 | |
parent | b8bb2b4ab647747806492b439698ccd834ac18da (diff) | |
download | wallabag-f0133fe5f48386f09c3dc5d549a2204fdfda27bc.tar.gz wallabag-f0133fe5f48386f09c3dc5d549a2204fdfda27bc.tar.zst wallabag-f0133fe5f48386f09c3dc5d549a2204fdfda27bc.zip |
[fix] undefined notice for feed
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ if (isset($_GET['login'])) { | |||
71 | } elseif (isset($_GET['updatelanguage'])) { | 71 | } elseif (isset($_GET['updatelanguage'])) { |
72 | $poche->updateLanguage(); | 72 | $poche->updateLanguage(); |
73 | } elseif (isset($_GET['feed'])) { | 73 | } elseif (isset($_GET['feed'])) { |
74 | if ($_GET['action'] == 'generate') { | 74 | if (isset($_GET['action']) && $_GET['action'] == 'generate') { |
75 | $poche->generateToken(); | 75 | $poche->generateToken(); |
76 | } | 76 | } |
77 | else { | 77 | else { |