]> git.mxchange.org Git - friendica.git/commitdiff
Detecting "type-video" at the conversion. (Mostly used by reimporting posts from...
authorMichael Vogel <icarus@dabo.de>
Thu, 29 May 2014 09:42:41 +0000 (11:42 +0200)
committerMichael Vogel <icarus@dabo.de>
Thu, 29 May 2014 09:42:41 +0000 (11:42 +0200)
include/html2bbcode.php

index d9255a7ffc02ac49f5a2ca50f764a6439f6fc407..6e9532c92f5bf462461b600facc085b5489f2e97 100644 (file)
@@ -167,6 +167,7 @@ function html2bbcode($message)
        // Test
        //node2bbcode($doc, 'span', array('class'=>'/([\w ]+)/'), '[class=$1]', '[/class]');
        node2bbcode($doc, 'span', array('class'=>'type-link'), '[class=type-link]', '[/class]');
+       node2bbcode($doc, 'span', array('class'=>'type-video'), '[class=type-video]', '[/class]');
 
        node2bbcode($doc, 'strong', array(), '[b]', '[/b]');
        node2bbcode($doc, 'em', array(), '[i]', '[/i]');