Stories Archive的月份顯示亂碼?

PHPNuke utf-8 中文測試網提供的程式會產生這個亂碼的問題,畫面如下:
20070414-1.png
我發現是modules/Stories_Archive/index.php在顯示連結時,未把utf-8編碼的月份給urlencode,造成後續的點選,會顯示亂碼,
所以要改成此問題,請將38行改成
   echo "<li><a href="modules.php?name=$module_name&sa=show_month&year=$year&month=$getdate[2]&month_l=".urlencode($month)."">$month, $year</a>";

154行改成
   echo "<li><a href="modules.php?name=$module_name&sa=show_month&year=$year&month=$getdate[2]&month_l=".urlencode($month)."">$month, $year</a>";
266行改成
   echo "<li><a href="modules.php?name=$module_name&sa=show_month&year=$year&month=$getdate[2]&month_l=".urlencode($month)."">$month, $year</a>";

另外
因為是utf-8編碼,所以在約284行的
$month_l = isset($month_l)? FixQuotes($month_l) : "";就不須要再使用FixQuotes這個函式了!
而約58的$month_l = htmlentities($month_l);
也請把它註解起來,如此才能顯示不亂碼的utf-8編碼的月份顯示喔!

感謝你看到這裡,很快就可以離開了,但最好的獎勵行動就是按一下幫我分享或留言,感恩喔~

點我分享到Facebook

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *