Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1874,9 +1874,9 @@ protected function renderMetaGridCategories() {
}
?>
<span class="obfx-grid-categories-item">
<a href="<?php echo get_category_link( $category->term_id ); ?>"
title="<?php echo $category->name; ?>">
<?php echo $category->name; ?>
<a href="<?php echo esc_url( get_category_link( $category->term_id ) ); ?>"
title="<?php echo esc_attr( $category->name ); ?>">
<?php echo esc_html( $category->name ); ?>
</a>
</span>
<?php
Expand Down Expand Up @@ -1909,8 +1909,8 @@ protected function renderMetaGridTags() {
}
?>
<span class="obfx-grid-tags-item">
<a href="<?php echo get_tag_link( $tag->term_id ); ?>" title="<?php echo $tag->name; ?>">
<?php echo $tag->name; ?>
<a href="<?php echo esc_url( get_tag_link( $tag->term_id ) ); ?>" title="<?php echo esc_attr( $tag->name ); ?>">
<?php echo esc_html( $tag->name ); ?>
</a>
</span>
<?php
Expand Down
Loading