1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

[add] rss for tag

This commit is contained in:
Nicolas Lœuillet 2013-12-06 14:37:42 +01:00
parent 4886ed6d36
commit f778e47283
4 changed files with 15 additions and 5 deletions

View file

@ -75,7 +75,8 @@ if (isset($_GET['login'])) {
$poche->generateToken();
}
else {
$poche->generateFeeds($_GET['token'], $_GET['user_id'], $_GET['type']);
$tag_id = (isset($_GET['tag_id']) ? intval($_GET['tag_id']) : 0);
$poche->generateFeeds($_GET['token'], $_GET['user_id'], $tag_id, $_GET['type']);
}
}