ここの情報は古いです。ご理解頂いた上でお取り扱いください。

Changeset 2875


Ignore:
Timestamp:
May 13, 2007, 10:03:14 PM (16 years ago)
Author:
ogawa
Message:

#652:外部ブログのタイトルが過剰にエスケープされている

File:
1 edited

Legend:

Unmodified
Added
Removed
  • OpenPNE/branches/2.8.x/webapp/lib/db/rss.php

    r2853 r2875  
    164164    foreach ($items as $item) {
    165165        // エスケープされた文字列を元に戻す
    166         $trans_table = array_flip(get_html_translation_table());
     166        $trans_table = array_flip(get_html_translation_table(HTML_SPECIALCHARS, ENT_QUOTES));
     167        $trans_table['''] = "'";
    167168        $item['title'] = strtr($item['title'], $trans_table);
    168169        $item['body'] = strtr($item['body'], $trans_table);
Note: See TracChangeset for help on using the changeset viewer.