20
what brash mentioned previously works, you're just editing the wrong files.. where mylinks is concerned anyway..
in mylinks:
open up and edit viewcat.php
find on line 142:
rawurlencode(sprintf(_MD_INTLINKFOUND,$xoopsConfig['sitename']).': '.XOOPS_URL.'/modules/mylinks/singlelink.php?cid='.$cid.'& amp;lid='.$lid
change to:
rawurlencode(sprintf(_MD_INTLINKFOUND,$xoopsConfig['sitename']).': '.XOOPS_URL.'/modules/mylinks/singlelink.php?cid='.$cid.'&lid='.$lid
open up index.php
find on line 110:
rawurlencode(sprintf(_MD_INTLINKFOUND,$xoopsConfig['sitename']).': '.XOOPS_URL.'/modules/mylinks/singlelink.php?cid='.$cid.'& amp;lid='.$lid
change to:
rawurlencode(sprintf(_MD_INTLINKFOUND,$xoopsConfig['sitename']).': '.XOOPS_URL.'/modules/mylinks/singlelink.php?cid='.$cid.'&lid='.$lid
note: i had to put a space inbetween & amp due to newbb parsing it into just an & symbol in the above code. but u can see it before the last $lid
then clear your cache and templates_c folders..
i haven't checked with mydownloads, but i'm presuming the same method will be used there altho probably in a couple more files aswell.. just search for those parts..