~/conf/_config.php:
$baseurl = 'http://' . $_SERVER['SERVER_NAME'] . '/blog'; // IMPORTANT: NO ENDING SLASH !!!
~/conf/_formatting.php:
$use_balanceTags = 0; // 0,1 automatically balance unmatched tags in posts and comments.
~/b2evocore/_functions.php:
function format_to_post( $content, $autobr = 0, $is_comment = 0, $encoding = 'UTF-8' )
{
...
if( $use_html_checker )
{ // Check the code:
if( ! $is_comment )
{
//$checker = & new SafeHtmlChecker( $allowed_tags, $allowed_attribues,
// $uri_attrs, $allowed_uri_scheme, $encoding );
}
else
{
$checker = & new SafeHtmlChecker( $comments_allowed_tags, $comments_allowed_attribues,
$uri_attrs, $comments_allowed_uri_scheme, $encoding );
$checker->check( $content );
}
}