There are no P elements in my index.php!
Here’s the end of my b2vars.php, as you can see I’ve had to make some costumization due to problems when I switched to an Apache server:
add_filter(‘all’, ‘wptexturize’);
// add_filter(‘the_content’, ‘wpautop’);
add_filter(‘comment_text’, ‘wpautop’);
// Uncomment the following for Textile support
// include_once(‘textile.php’);
$res = include_once(‘/STORE/binarybonsai_com/public_html/b2-include/textile.php’);
if(!res) {
if( !in_array(‘/STORE/binarybonsai_com/public_html/b2-include/textile.php’, get_included_files()) ) {
echo “The file ‘/STORE/binarybonsai_com/public_html/b2-include/textile.php’ does not exists”;
exit(1);
}
}
add_filter(‘the_content’, ‘textile’);
// There is some duplication of effore so textile.php really should be tweaked to eliminate that.
?>