diff options
author | Yorhel <git@yorhel.nl> | 2017-06-05 07:38:58 +0200 |
---|---|---|
committer | Yorhel <git@yorhel.nl> | 2017-06-05 07:38:58 +0200 |
commit | 8f368e327c38f47c8f516839bb63e4050e7ae707 (patch) | |
tree | f93dc0329d25160d754537ea09b226933cb9f6cb /lib | |
parent | 5a9b440b837c9eb43829c13276a8d8264f4ade5b (diff) |
Fix "All except characters" to show staff
Fixes https://vndb.org/t2520.222
Diffstat (limited to 'lib')
-rw-r--r-- | lib/VNDB/Handler/Misc.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VNDB/Handler/Misc.pm b/lib/VNDB/Handler/Misc.pm index 6bda8091..e3b67d52 100644 --- a/lib/VNDB/Handler/Misc.pm +++ b/lib/VNDB/Handler/Misc.pm @@ -226,7 +226,7 @@ sub history { my($list, $np) = $self->dbRevisionGet( $type && $type ne 'u' ? ( type => $type, itemid => $id ) : (), $type eq 'u' ? ( uid => $id ) : (), - $f->{t} ? ( type => $f->{t} eq 'a' ? [qw|v r p|] : $f->{t} ) : (), + $f->{t} ? ( type => $f->{t} eq 'a' ? [qw|v r p s|] : $f->{t} ) : (), page => $f->{p}, results => 50, auto => $f->{m}, |