call time pass by reference deprecated

This commit is contained in:
friendica 2012-02-28 14:54:17 -08:00
parent f40ef1bf46
commit 21803e0cd3
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}