Hi Everyone,
I have noticed that when I am in my user profile in Share, there is a link to "Settings" but it doesn't do anything when I click it. It just links to profile#settings.
I tracked the link down to \tomcat\webapps\share\WEB-INF\classes\alfresco\site-webscripts\org\alfresco\components\profile\userprofiletoolbar.get.html.ftl
Which says:
<#if activeUserProfile>
<#assign activePage = page.url.templateArgs.pageid?lower_case!"">
<div id="${args.htmlid}-body" class="toolbar userprofile">
<div class="link"><a href="profile" <#if activePage=="profile">class="activePage"</#if>>${msg("link.viewmyprofile")}</a></div>
<div class="separator"> </div>
<div class="link"><a href="change-password" <#if activePage=="change-password">class="activePage"</#if>>${msg("link.changepassword")}</a></div>
<div class="separator"> </div>
<div class="link"><a href="#settings" <#if activePage=="settings">class="activePage"</#if>>${msg("link.settings")}</a></div>
</div>
</#if>
Is the code here wrong or is #settings going to work in a future version of labs?
Thanks!