]> 4ch.mooo.com Git - test.git/commitdiff
modified: lib/lib_common.php
authorsparky4 <sparky4@4ch.irc.su>
Sat, 5 Mar 2011 14:43:29 +0000 (08:43 -0600)
committersparky4 <sparky4@4ch.irc.su>
Sat, 5 Mar 2011 14:43:29 +0000 (08:43 -0600)
lib/lib_common.php

index 9bacbc95d443a36f609edd3a1f06ab16862b2944..b89e4285ca121d8e548e9f548d9a1c138609ae76 100755 (executable)
@@ -186,12 +186,13 @@ function error($mes, $dest=''){
 /* 文字修整 */
 /* テキスト整形 */
 function CleanStr($str, $IsAdmin=false){
+       global $config;
        $str = trim($str); // 去除前後多餘空白
        if(get_magic_quotes_gpc()) $str = stripslashes($str); // "\"斜線符號去除
        // XML 1.1 Second Edition: 部分避免用字 (http://www.w3.org/TR/2006/REC-xml11-20060816/#charsets)
        $str = preg_replace('/([\x1-\x8\xB-\xC\xE-\x1F\x7F-\x84\x86-\x9F\x{FDD0}-\x{FDDF}])/u', '', htmlspecialchars($str));
 
-       if($IsAdmin && CAP_ISHTML){ // 管理員開啟HTML
+       if($IsAdmin && $config['CAP.ISHTML']){ // 管理員開啟HTML
                $str = preg_replace('/&lt;(.*?)&gt;/', '<$1>', $str); // 如果有&lt;...&gt;則轉回<...>成為正常標籤
        }
        return $str;