summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2008-12-17 12:49:38 +0100
committerYorhel <git@yorhel.nl>2008-12-17 12:49:38 +0100
commit222977ada7e69b1c8ca5eb6520a4cfffbb29a808 (patch)
treed74376bdd9f8eb4e105931117518ff725fab8796
parent7d582a7160a0dd062412f615ef117d770ef2b181 (diff)
Hide edits of hidden items from homepage
(12:46:39) applehq: bug: recent changes on the homepage show hidden v+.+ Fixed!
-rw-r--r--lib/VNDB/Handler/Misc.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VNDB/Handler/Misc.pm b/lib/VNDB/Handler/Misc.pm
index 227f773a..2bd76c36 100644
--- a/lib/VNDB/Handler/Misc.pm
+++ b/lib/VNDB/Handler/Misc.pm
@@ -79,7 +79,7 @@ sub homepage {
# Recent changes
div class => 'mainbox threelayout';
h1 'Recent changes';
- my $changes = $self->dbRevisionGet(what => 'item user', results => 10, auto => 1);
+ my $changes = $self->dbRevisionGet(what => 'item user', results => 10, auto => 1, hidden => 1);
ul;
for (@$changes) {
my $t = (qw|v r p|)[$_->{type}];