Skip to content

Commit a011737

Browse files
J9remmrflos
authored andcommitted
fix(RssHandler) : manage website with accents
fix #1014
1 parent a549cc6 commit a011737

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/bazar/handlers/RssHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public function run()
100100
$xml .= "\r\n ";
101101
$xml .= XML_Util::createTag('language', null, 'fr-FR');
102102
$xml .= "\r\n ";
103-
$xml .= XML_Util::createTag('copyright', null, 'Copyright (c) '.date('Y').' '. htmlentities($this->wiki->config['BAZ_RSS_NOMSITE']));
103+
$xml .= XML_Util::createTag('copyright', null, 'Copyright (c) '.date('Y').' '. htmlentities(removeAccents($this->wiki->config['BAZ_RSS_NOMSITE'])));
104104
$xml .= "\r\n ";
105105
$xml .= XML_Util::createTag('lastBuildDate', null, date('r'));
106106
$xml .= "\r\n ";

0 commit comments

Comments
 (0)