Are you on a windows server or linux?
Are you able to use leo linking?
If so, does it fix the issue?
I am using the file I posted in the pastebin with one of my sites which is served by linux. I am able to so far view roster with and with out leolinking turned on.
as seen here
http://www.altercationondunemaul.com/in ... e=rosterdf
http://www.altercationondunemaul.com/rosterdf.html
So the code that I had last added should have fixed the problem so if you are sure you used that file I guess I must go back to the drawing board.
The code that was changed is here
#line 85 /lib/cmslink.lib.php
if( $pages == array(substr($module_name,1)) )
hmm now looking at that part again my module is using rosterdf where for some reason I know $pages gets a character removed only 1 though from what I remeber which is why I have the substr() function in place so with that said if it is not cutting off only 1 character but instead always making $pages == 7 characters long max unless told otherwise.... WoWRosterDF turning into osterDF no matter what try something for me.
Find line 85 /lib/cmslink.lib.php
if( $pages == array(substr($module_name,1)) )
and change to
if( $pages == array(substr($module_name,4)) )