Skip to content

Commit

Permalink
Fix #9803, part two: Hide tagging filter title if user does not have …
Browse files Browse the repository at this point in the history
…view access.
  • Loading branch information
amyreese committed Nov 14, 2008
1 parent 9e6bc9f commit 5fc21f1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/filter_api.php
Expand Up @@ -2373,7 +2373,9 @@ function SwitchDateFields() {
<a href="<?php PRINT $t_filters_url . 'os_build'; ?>" id="os_build_filter"><?php echo lang_get( 'os_version' ) ?>:</a>
</td>
<td class="small-caption" valign="top" colspan="5">
<?php if ( access_has_global_level( config_get( 'tag_view_threshold' ) ) ) { ?>
<a href="<?php PRINT $t_filters_url . 'tag_string'; ?>" id="tag_string_filter"><?php echo lang_get( 'tags' ) ?>:</a>
<?php } ?>
</td>
<?php if ( $t_filter_cols > 8 ) {
echo '<td class="small-caption" valign="top" colspan="' . ( $t_filter_cols - 8 ) . '">&nbsp;</td>';
Expand Down

0 comments on commit 5fc21f1

Please sign in to comment.