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

small xss vulnerability and translation ability fix

This commit is contained in:
Maryana Rozhankivska 2014-05-30 17:14:53 +03:00
parent 8038b38802
commit cbc75befb5

View File

@ -1083,11 +1083,10 @@ class Poche
$config = $this->store->getConfigUser($user_id);
if ($config == null) {
die(_('User with this id (' . $user_id . ') does not exist.'));
die(_( sprintf('User with this id (%d) does not exist.', $user_id) ));
}
if (!in_array($type, $allowed_types) ||
$token != $config['token']) {
if (!in_array($type, $allowed_types) || $token != $config['token']) {
die(_('Uh, there is a problem while generating feeds.'));
}
// Check the token