当前位置: 首页 > 工具软件 > b2evolution > 使用案例 >

b2evolution_0.9.2修改(1)

公冶峰
2023-12-01
~/b2evocore/_class_item.php 用了原来0.9.012的,修正text render显示时不正确

~/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 );
        }
    }
posted on 2005-10-06 17:31 浙林龙哥 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/huqingyu/archive/2005/10/06/249382.html

 类似资料: