#4325 closed defect (bug) (fixed)
Avatar URL(anchor tag's href value) in single pages
| Reported by: | gagan0123 | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 1.6 |
| Component: | Members | Version: | 1.5.6 |
| Severity: | normal | 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.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
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.