Calendar Your Events link is broken

I dont know if its related to the new redirection scrip but the your events link in sidebar links to /users/ which doesnt exist.
 
It's not related to the redirection script. It's actually a silly mistake; it's meant to be events/users and not users/. You can nf_calendar_sidebar_navigation_block and change:

Code:
{xen:link 'users', $visitor}

to

Code:
{xen:link 'events/users', $visitor}
 
Back
Top