Years later, I am having the same problem, exactly! I'm working on Cyrcix's Email Integration.
$html = $parser->do_parse($bbcode, true, true, true, true, true, 0);
Both [code] and [quote] blocks result in nothing in the HTML output. I have traced it through class_bbcode.php to the point where it fetches the conversion templates for bbCodes. Using a tracing file and fwrite() statements, I have determined that in the function handle_bbcode_code(), the call to fetch_template('bbcode_code') is returning nothing!
Here's the corker: Out of the 20+ tests I did, one time it worked! I then ran the test again without changing anything at all and it failed as before. Throughout, I didn't change anything in the code except to add fopen(), fwrite(), and fclose() to do the tracing (I'm working on a remotely hosted system, ugh).
The difference is that this code is running as a vBulletin Scheduled Task (cron). The same code in another area of the plugin that runs in the normal VB posting context works reliably.
Can anyone give me a hint? The fact that it works once in a blue moon and fails otherwise, with no code changes, has me baffled.
|