forked from wallabag/wallabag
[fix] test if user_id doesn't exist in feeds generation
This commit is contained in:
@ -1109,6 +1109,10 @@ class Poche
|
|||||||
$allowed_types = array('home', 'fav', 'archive', 'tag');
|
$allowed_types = array('home', 'fav', 'archive', 'tag');
|
||||||
$config = $this->store->getConfigUser($user_id);
|
$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) ||
|
if (!in_array($type, $allowed_types) ||
|
||||||
$token != $config['token']) {
|
$token != $config['token']) {
|
||||||
die(_('Uh, there is a problem while generating feeds.'));
|
die(_('Uh, there is a problem while generating feeds.'));
|
||||||
|
|||||||
Reference in New Issue
Block a user