Skip to content

Commit 3d48b2b

Browse files
committed
fix: add missing rel attribute to anchor tag for proper link behavior
1 parent 7c68e4e commit 3d48b2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/manager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public function banner() {
216216
$css .= $key . ':' . $value . ';';
217217
}
218218

219-
$output = '<a style="' . esc_attr( $css ) . '" href="' . esc_url( $link ) . '" aria-label="' . esc_html( $string ) . '"> rel="nofollow" target="_blank">';
219+
$output = '<a style="' . esc_attr( $css ) . '" href="' . esc_url( $link ) . '" aria-label="' . esc_html( $string ) . '" rel="nofollow" target="_blank">';
220220
$output .= '
221221
<svg style="margin-right:6px" width="20" height="20" viewBox="0 0 251 250" fill="none" xmlns="http://www.w3.org/2000/svg">
222222
<path d="M217.696 99.0926C240.492 152.857 211.284 215.314 153.249 239.999C95.2141 264.683 30.4436 242.239 7.64869 188.474C-15.1462 134.71 14.8767 75.1972 72.9116 50.4991C130.947 25.8007 194.902 45.3142 217.696 99.0926Z" fill="#EDF0FF"/>

0 commit comments

Comments
 (0)