1 頁 (共 1 頁)

[修改] Non breaking spaces「nbsp」

發表於 : 2003-06-26 05:34
Mac
原文:[FIX] phpBB 2.0.4 - Display of Non breaking spaces, etc..
發表人:Daz (ForumImages)
描述:讓你可以在 CODE 代碼中顯示「 」「&」

打開 ./includes/functions_post.php

尋找\r

代碼: 選擇全部

$html_entities_match = array('#&[a-z]+?;#', '#<#', '#>#');
替換為\r

代碼: 選擇全部

$html_entities_match = array('#&#', '#<#', '#>#');
~Mac