aboutsummaryrefslogtreecommitdiffstats
path: root/include/html2bbcode.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-02-28 14:54:17 -0800
committerfriendica <info@friendica.com>2012-02-28 14:54:17 -0800
commit21803e0cd33d51cd634d0147409f0a6529441c8e (patch)
tree63aa7ff50a2d75c406113ec00ad11af7b6f5accf /include/html2bbcode.php
parentf40ef1bf46f55fb6ae64eed69cc97829a8b52b1a (diff)
downloadvolse-hubzilla-21803e0cd33d51cd634d0147409f0a6529441c8e.tar.gz
volse-hubzilla-21803e0cd33d51cd634d0147409f0a6529441c8e.tar.bz2
volse-hubzilla-21803e0cd33d51cd634d0147409f0a6529441c8e.zip
call time pass by reference deprecated
Diffstat (limited to 'include/html2bbcode.php')
-rwxr-xr-xinclude/html2bbcode.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/html2bbcode.php b/include/html2bbcode.php
index 65920380b..51d629940 100755
--- a/include/html2bbcode.php
+++ b/include/html2bbcode.php
@@ -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);
}