aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-12-03 12:07:02 +0100
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-12-03 12:07:02 +0100
commitf0133fe5f48386f09c3dc5d549a2204fdfda27bc (patch)
treec615e0788449c7c605aa2113f9fd2335371f6692 /index.php
parentb8bb2b4ab647747806492b439698ccd834ac18da (diff)
downloadwallabag-f0133fe5f48386f09c3dc5d549a2204fdfda27bc.tar.gz
wallabag-f0133fe5f48386f09c3dc5d549a2204fdfda27bc.tar.zst
wallabag-f0133fe5f48386f09c3dc5d549a2204fdfda27bc.zip
[fix] undefined notice for feed
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 7d462228..96f28a72 100644
--- a/index.php
+++ b/index.php
@@ -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 {