Skip to content

Commit

Permalink
abbreviated/sectiononly tags are significant to choosing story scores
Browse files Browse the repository at this point in the history
so the tagboxes that control those scores should be activated when
such tags are created or deactivated

tracks internal commit 132ea214253c50d7088da76da62e096bb5826307
  • Loading branch information
jamiemccarthy committed Sep 18, 2009
1 parent 2bf9f69 commit b9de4a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tagboxes/FHEditorPop/FHEditorPop.pm
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ sub init_tagfilters {
my($self) = @_;
$self->{filter_activeonly} = 1;
$self->{filter_firehoseonly} = 1;
$self->{filter_tagnameid} = [ @{$self}{qw( nodid nixid maybeid metanodid metanixid )} ];
$self->{filter_tagnameid} = [ @{$self}{qw( nodid nixid maybeid metanodid metanixid abbreviated sectiononly )} ];
}

sub get_affected_type { 'globj' }
Expand Down
2 changes: 2 additions & 0 deletions tagboxes/FireHoseScores/FireHoseScores.pm
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ sub init_tagfilters {
$self->{filter_firehoseonly} = 1;
$self->{filter_tagnameid} = [ @{$self}{qw( nodid nixid )} ];
push @{ $self->{filter_tagnameid} }, keys %{ $self->{reason_tagnameid} };
push @{ $self->{filter_tagnameid} }, $tagsdb->getTagnameidCreate('abbreviated');
push @{ $self->{filter_tagnameid} }, $tagsdb->getTagnameidCreate('sectiononly');
}

sub get_affected_type { 'globj' }
Expand Down

0 comments on commit b9de4a4

Please sign in to comment.