When posting a link in an CMS formatted like this:
[url=http://www.examplesite.eu]ExampleSite[/url]
the title description is the url instead of the linktext. (linktext=ExampleSite)
The html output is like this:
<a href="http://www.examplesite.eu" title="http://www.examplesite.eu">http://www.examplesite.eu</a>
It should be:
<a href="http://www.examplesite.eu" title="ExampleSite">ExampleSite</a>
So I experimented with url_bbcode_include.php and it is possible to alter the bbcode behaviour.
Original, notice the title= part:
$text = preg_replace('#\[url=([\r\n]*)(http://|ftp://|https://|ftps://)([^\s\'\"]*?)\](.*?)([\r\n]*)\[/url\]#si', '<a href=\'\2\3\' target=\'_blank\' title=\'\2\3\'>\4</a>', $text);
Modified to show linktext as title, notice the title= part:
$text = preg_replace('#\[url=([\r\n]*)(http://|ftp://|https://|ftps://)([^\s\'\"]*?)\](.*?)([\r\n]*)\[/url\]#si', '<a href=\'\2\3\' target=\'_blank\' title=\'\4\'>\4</a>', $text);
The modified url_bbcode_include.php works wonderfully but has a problem when the linktext is formatted with a colour or other html element. Then the title part contains html like <span style= and destroying proper display of the link.
So I tried to strip_tags in the title= part but I can't get it working. Also explored strip_tags($text); but this is also stripping the html from the linktext.
Who has an solution for this?