1.  error message 太不明顯, 直接改系統的CSS 

joomla\templates\ja_purity\css\template.css

第  1593 行

 


#system-message dd.message ul {
background: red;
border: none;
}

 

2. 搜詢檔案找不到中文

joomla\administrator\components\com_docman\classes\DOCMAN_utils.class.php

第 1059行


 #$text = htmlentities($text, ENT_QUOTES);
        #mod by phenix 20110329
        $text = htmlentities($text, ENT_QUOTES,"UTF-8");

 

3. 上傳中文檔名後下載時, IE檔名會變亂碼

joomla\administrator\components\com_docman\classes\DOCMAN_file.class.php

第 127行




# mod by phenix 20110328 IE 不吃 UTF8編碼
if (strspn("MSIE",$_SERVER["HTTP_USER_AGENT"])==4){  
//执行IE的程序块 
$aaa= ' filename="' . iconv('utf-8','big-5',$this->name) . '";';
}else{
$aaa= ' filename="' . $this->name . '";';
}



header('Content-Disposition:' . $cont_dis .';'
#. ' filename="' . $this->name . '";'
.$aaa
. ' modification-date="' . $mod_date . '";'
. ' size=' . $fsize .';'
); //RFC2183

 

4. 語系檔, 提示文字修改

joomla\components\com_docman\themes\default\language\traditional_chinese.php

 

 

arrow
arrow
    全站熱搜

    阿貴貴 發表在 痞客邦 留言(0) 人氣()