diff options
author | friendica <info@friendica.com> | 2012-02-28 14:54:17 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-28 14:54:17 -0800 |
commit | 21803e0cd33d51cd634d0147409f0a6529441c8e (patch) | |
tree | 63aa7ff50a2d75c406113ec00ad11af7b6f5accf /include | |
parent | f40ef1bf46f55fb6ae64eed69cc97829a8b52b1a (diff) | |
download | volse-hubzilla-21803e0cd33d51cd634d0147409f0a6529441c8e.tar.gz volse-hubzilla-21803e0cd33d51cd634d0147409f0a6529441c8e.tar.bz2 volse-hubzilla-21803e0cd33d51cd634d0147409f0a6529441c8e.zip |
call time pass by reference deprecated
Diffstat (limited to 'include')
-rwxr-xr-x | include/html2bbcode.php | 2 |
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); } |