11
As a beginner, I didn't quite understand this thread at first. Hopefully you won't mind me putting it into simple words!
On XOOPS 2.2.3 a dot appears after email addresses (e.g. in xfsection articles)
To get rid of this, go to the file class/module.textsanitizer.php
At line 131 you will see
function makeClickable( $text )
This is what converts the email address into a clickable link, and which also adds the offending dot.
Find the lines beginning
$replacements = array
Four lines after that you will see
host1+'.'+host2
twice in the same line.
Change both occurrences to
host1+''+host2
(i.e. remove the dot between the apostrophes)
This will remove the dot from both the email address as it displays on the screen, and as it comes up in Outlook.
The second improvement mentioned above was replacing @ with the code & # 6 4 (you need to remove the 3 spaces from between those 4 characters).
This is to help confuse spiders which crawl the internet collecting email addresses.
The @ symbol appears twice on the line which you've just amended. Just delete it and replace it with & # 6 4 each time.
As far as I know, the use of Javascript in XOOPS 2.2.3 to display the email links is itself a quite effective means to combat the email spiders.
I hope that removing the extra dot will lead to much more junk mail.
Hope this helps the beginners like myself!!