Changeset 2875
- Timestamp:
- May 13, 2007, 10:03:14 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/2.8.x/webapp/lib/db/rss.php
r2853 r2875 164 164 foreach ($items as $item) { 165 165 // エスケープされた文字列を元に戻す 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['''] = "'"; 167 168 $item['title'] = strtr($item['title'], $trans_table); 168 169 $item['body'] = strtr($item['body'], $trans_table);
Note: See TracChangeset
for help on using the changeset viewer.