]> git.mxchange.org Git - friendica.git/commitdiff
When converting from html to bbcode, now mail links are converted into the [mail...
authorMichael Vogel <icarus@dabo.de>
Fri, 4 Apr 2014 08:54:43 +0000 (10:54 +0200)
committerMichael Vogel <icarus@dabo.de>
Fri, 4 Apr 2014 08:54:43 +0000 (10:54 +0200)
include/html2bbcode.php

index b38da6b0a410f47546278cea35cd7e6ebd7385e9..d9255a7ffc02ac49f5a2ca50f764a6439f6fc407 100644 (file)
@@ -212,6 +212,7 @@ function html2bbcode($message)
        node2bbcode($doc, 'h5', array(), "\n\n[size=small][b]", "[/b][/size]\n");
        node2bbcode($doc, 'h6', array(), "\n\n[size=x-small][b]", "[/b][/size]\n");
 
+       node2bbcode($doc, 'a', array('href'=>'/mailto:(.+)/'), '[mail=$1]', '[/mail]');
        node2bbcode($doc, 'a', array('href'=>'/(.+)/'), '[url=$1]', '[/url]');
 
        node2bbcode($doc, 'img', array('src'=>'/(.+)/', 'width'=>'/(\d+)/', 'height'=>'/(\d+)/'), '[img=$2x$3]$1', '[/img]');