Verbatim mode breaks if limit>0 (Fix provided)
Brought to you by:
swerkema
It looks like there's a small bug in Internal_ProcessVerbatimTag() which prevents it from finding end tag.
PHP Notice: Undefined variable: end_tag_params in nbbc_parse.php on line 1660
FIX PROPOSAL:
Replace Line 1601 (break) with:
continue;
Add before line 1580 (if debug):
if ($this->was_limited) continue;