]> git.mxchange.org Git - friendica.git/commitdiff
Using a better placeholder. Could solve this issue: https://github.com/friendica...
authorMichael Vogel <icarus@dabo.de>
Thu, 1 Jan 2015 20:19:07 +0000 (21:19 +0100)
committerMichael Vogel <icarus@dabo.de>
Thu, 1 Jan 2015 20:19:07 +0000 (21:19 +0100)
include/html2bbcode.php

index 6e9532c92f5bf462461b600facc085b5489f2e97..1b940d94973fdcb3d6a8dfab5a34954e1c414f48 100644 (file)
@@ -16,7 +16,7 @@ function node2bbcode(&$doc, $oldnode, $attributes, $startbb, $endbb)
 
 function node2bbcodesub(&$doc, $oldnode, $attributes, $startbb, $endbb)
 {
-       $savestart = str_replace('$', '%', $startbb);
+       $savestart = str_replace('$', '\x01', $startbb);
        $replace = false;
 
        $xpath = new DomXPath($doc);
@@ -37,7 +37,7 @@ function node2bbcodesub(&$doc, $oldnode, $attributes, $startbb, $endbb)
 
                foreach ($attributes as $attribute => $value) {
 
-                       $startbb = str_replace('%'.++$i, '$1', $startbb);
+                       $startbb = str_replace('\x01'.++$i, '$1', $startbb);
 
                        if (strpos('*'.$startbb, '$1') > 0) {