查看單個文章
舊 2007-10-26, 05:50 PM   #2
skiseiju
Member
 
註冊日期: 2006-07-25
住址: http://ricoh.grfan.net
文章: 41
預設 修正UNICODE問題

product-zointstags-1.2.1.xml
===find all===

PHP 代碼:
$vbulletin->GPC['tag'] = str_replace('-'' '$vbulletin->GPC['tag']); 
===all replace==

PHP 代碼:
$vbulletin->GPC['tag'] = str_replace('-'' 'convert_urlencoded_unicode($vbulletin->GPC['tag'])); 
includes/class_zointstags.php
===find===

PHP 代碼:
$tag preg_replace(array("#['\"`]#""#[^\w\s]#""#\s+#"), array(''''' '), strtolower($tag)); 
===replace===
PHP 代碼:
$tag preg_replace(array("(\/)""#['\"`]#""#\s+#"), array(''''' '), strtolower($tag)); 
轉錄於http://network.zoints.com/showthread.php?t=3508

此篇文章於 2007-10-29 12:54 AM 被 skiseiju 編輯.
skiseiju 目前離線   回覆時引用此篇文章