#4325 closed defect (bug) (fixed)
Avatar URL(anchor tag's href value) in single pages
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 1.6 | Priority: | normal |
Severity: | normal | Version: | 1.5.6 |
Component: | Members | Keywords: | has-patch |
Cc: |
Description
Avatar URL(anchor tag's href value) is not being echoed in default theme's members/single/member-header.php on line 15
I've changed the line from
<a href="<?php bp_user_link(); ?>">
to
<a href="<?php echo bp_user_link(); ?>">
and it works fine
Note: See
TracTickets for help on using
tickets.
Huh, you're right. I wonder how this went unnoticed for so long. I'm going to use
bp_displayed_user_link()
instead, as it conforms better to the rest of the template functions used in this template.