Topic: PHP Highlighting for code tags
If you have a forum where you have alot of PHP coding withing your code tags, replace line 431 in parser.php (this is in v1.2.10)
$text .= '</p><div class="codebox"><div class="incqbox"><h4>'.$lang_common['Code'].':</h4><div class="scrollbox" style="height: '.$height_str.'"><pre>'.$inside[$i].'</pre></div></div></div><p>';
with
$text .= '</p><div class="codebox"><div class="incqbox"><h4>'.$lang_common['Code'].':</h4><div class="scrollbox" style="height: '.$height_str.'"><pre>'.highlight_string($inside[$i],true).'</pre></div></div></div><p>';
This should work fine, but as I'm not on my dev machine atm, I didn't get the chance to test it.
Have fun
-- Bekko