YAFLogo

herman_herman
11 years ago
Hi

Buddy list is visible at the bottom of all tabs in Profile (Show profile) page.I think this should only be visible in "BuddyListTab" tab.

Cheers

Sponsor
coral
  • coral
  • 72% (Friendly)
  • YAF Lover
11 years ago
Yes, and the reason is the following line in profile.ascx file.

<li runat="server" id="BuddyLi"><a href="#BuddyListTab"><YAF:LocalizedLabel ID="LocalizedLabel44" runat="server" LocalizedTag='<%# this.UserId == this.PageContext.PageUserID ? "BUDDIES" : "BUDDIESTITLE"%>' /></a></li>

The id of BuddyListTab is server id not the client one.

I changed it to the following and it is fine now.

<li runat="server" id="BuddyLi"><a href='#<%# this.BuddyListTab.ClientID %>'><YAF:LocalizedLabel ID="LocalizedLabel44" runat="server" LocalizedTag='<%# this.UserId == this.PageContext.PageUserID ? "BUDDIES" : "BUDDIESTITLE"%>' /></a></li>	
tha_watcha
  • tha_watcha
  • 100% (Exalted)
  • YAF.NET Project Lead 🤴 YAF Version: 4.0.0 rc 2
11 years ago
Thanks, fixed in the next release