Skip to content

Commit 23b8499

Browse files
author
Mark Vincent
committed
Addressing #16
...where no bb codes were being processed due to a change in the parser class.
1 parent 8e6d83d commit 23b8499

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Upload/inc/plugins/yourcode/forum.php

+7
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ function yourcode_run($message)
5050
$yourcode['active']['simple']['standard']['replacement'][] = $code['replacement'];
5151
}
5252
}
53+
54+
$yourcode['active']['simple']['standard_count'] = count($yourcode['active']['simple']['standard']);
55+
5356
if(is_array($yourcode['active']['restricted_view']['nestable']) && !empty($yourcode['active']['restricted_view']['nestable']))
5457
{
5558
foreach($yourcode['active']['restricted_view']['nestable'] as $code)
@@ -64,6 +67,10 @@ function yourcode_run($message)
6467
$yourcode['active']['simple']['nestable'][] = array('find' => $code['find'], 'replacement' => $code['replacement']);
6568
}
6669
}
70+
71+
$yourcode['active']['simple']['nestable_count'] = count($yourcode['active']['simple']['nestable']);
72+
$yourcode['active']['simple']['callback_count'] = count($yourcode['active']['simple']['callback']);
73+
6774
$parser->mycode_cache = $yourcode['active']['simple'];
6875
}
6976

0 commit comments

Comments
 (0)