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:
parent
4744cb0e1d
commit
17b2afefad
@ -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.'));
|
||||
|
Loading…
Reference in New Issue
Block a user