George S. Baugh %!s(int64=4) %!d(string=hai) anos
pai
achega
14e15d429d
Modificáronse 1 ficheiros con 1 adicións e 3 borrados
  1. 1 3
      lib/Trog/Routes/HTML.pm

+ 1 - 3
lib/Trog/Routes/HTML.pm

@@ -942,12 +942,10 @@ sub posts ($query, $render_cb, $direct=0) {
     #Filter out the visibilities and special series tags
     @tags_all = grep { my $subj = $_; scalar(grep { $_ eq $subj } qw{public private unlisted admin series about topbar}) == 0 } @tags_all;
 
-    use Data::Dumper;
-    print Dumper(\@tags_all);
-
     @posts = map {
         my $subject = $_;
         my @et = grep { my $subj = $_; grep { $subj eq $_ } @tags_all } @{$subject->{tags}};
+        @et = grep { $_ ne $aclselected } @et;
         $_->{extra_tags} = \@et;
         $_
     } @posts;