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

Merge pull request #356 from inthepoche/tags

Tags feature
This commit is contained in:
Nicolas Lœuillet 2013-12-12 01:48:24 -08:00
commit 05d6dd487c
14 changed files with 252 additions and 41 deletions

View file

@ -77,7 +77,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']);
}
}