MDL-25901 rss: do not copyright html tag

They copyright field does not permit html, it should be plain text
This commit is contained in:
Dan Poltawski
2013-06-06 11:30:50 +08:00
parent ae61eea349
commit 91f07e7e8b
+1 -1
View File
@@ -269,7 +269,7 @@ function rss_standard_header($title = NULL, $link = NULL, $description = NULL) {
$result .= rss_full_tag('language', 2, false, substr($USER->lang,0,2));
}
$today = getdate();
$result .= rss_full_tag('copyright', 2, false, '© '. $today['year'] .' '. format_string($site->fullname));
$result .= rss_full_tag('copyright', 2, false, '(c) '. $today['year'] .' '. format_string($site->fullname));
/*
if (!empty($USER->email)) {
$result .= rss_full_tag('managingEditor', 2, false, fullname($USER));