]> git.mxchange.org Git - friendica.git/commitdiff
call time pass by reference deprecated
authorfriendica <info@friendica.com>
Tue, 28 Feb 2012 22:54:17 +0000 (14:54 -0800)
committerfriendica <info@friendica.com>
Tue, 28 Feb 2012 22:54:17 +0000 (14:54 -0800)
include/html2bbcode.php

index 65920380b5d4c8ef2b63ef4e3e9f6cf197242de1..51d62994073d839592d525e56744440ae8a249c2 100755 (executable)
@@ -10,7 +10,7 @@ Originally made for the syncom project: http://wiki.piratenpartei.de/Syncom
 function node2bbcode(&$doc, $oldnode, $attributes, $startbb, $endbb)
 {
        do {
-               $done = node2bbcodesub(&$doc, $oldnode, $attributes, $startbb, $endbb);
+               $done = node2bbcodesub($doc, $oldnode, $attributes, $startbb, $endbb);
        } while ($done);
 }