sm2
|
Re:Links in HTML Message - 2007/04/09 01:29
G'Day Alyssa
This appears to be a bug We process all links to add the site correctly to them in case the editor used in Joomla! does not. However I did not take a link that was a named anchor into account. If you wish to fix it yourself then modify administrator/components/com_sm2emailmarketing/sm2emailmarketing.class.php on about line 1499 replace
| Code: | if ((strpos($match[2], 'http')===false) && (substr(strtolower($match[2]), 0, 7) != 'mailto:')) {
|
with
| Code: | if ((strpos($match[2], 'http')===false) && (substr(strtolower($match[2]), 0, 7) != 'mailto:') && (substr($match[2], 0, 1) != '#')) {
|
This will be fixed in the next release but at this stage I am not sure when that will be
Hope this helps
Tony
|