aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-12-06 14:37:42 +0100
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-12-06 14:37:42 +0100
commitf778e47283c9691d2992045e0fbcdfc6685f157f (patch)
tree00671a8b3bae635e795cbd971267da37afcbf13b /index.php
parent4886ed6d3637df0b3e16e672d58d4ef8f17dc432 (diff)
downloadwallabag-f778e47283c9691d2992045e0fbcdfc6685f157f.tar.gz
wallabag-f778e47283c9691d2992045e0fbcdfc6685f157f.tar.zst
wallabag-f778e47283c9691d2992045e0fbcdfc6685f157f.zip
[add] rss for tag
Diffstat (limited to 'index.php')
-rw-r--r--index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.php b/index.php
index 96f28a72..836730bf 100644
--- a/index.php
+++ b/index.php
@@ -75,7 +75,8 @@ if (isset($_GET['login'])) {
75 $poche->generateToken(); 75 $poche->generateToken();
76 } 76 }
77 else { 77 else {
78 $poche->generateFeeds($_GET['token'], $_GET['user_id'], $_GET['type']); 78 $tag_id = (isset($_GET['tag_id']) ? intval($_GET['tag_id']) : 0);
79 $poche->generateFeeds($_GET['token'], $_GET['user_id'], $tag_id, $_GET['type']);
79 } 80 }
80} 81}
81 82