1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-23 17:42:15 -05:00

[fix] test if user_id doesn't exist in feeds generation

This commit is contained in:
Nicolas Lœuillet 2014-03-10 08:10:03 +01:00
parent 4744cb0e1d
commit 17b2afefad

View File

@ -1109,6 +1109,10 @@ class Poche
$allowed_types = array('home', 'fav', 'archive', 'tag');
$config = $this->store->getConfigUser($user_id);
if ($config == null) {
die(_('User with this id (' . $user_id . ') does not exist.'));
}
if (!in_array($type, $allowed_types) ||
$token != $config['token']) {
die(_('Uh, there is a problem while generating feeds.'));