|
|
@@ -18,9 +18,9 @@ foreach ($this->categories as $key => $cat) {
|
|
|
$opml_array['body'][$key]['@outlines'][] = array(
|
|
|
'text' => htmlspecialchars_decode($feed->name()),
|
|
|
'type' => 'rss',
|
|
|
- 'xmlUrl' => $feed->url(),
|
|
|
- 'htmlUrl' => $feed->website(),
|
|
|
- 'description' => $feed->description()
|
|
|
+ 'xmlUrl' => htmlspecialchars_decode($feed->url()),
|
|
|
+ 'htmlUrl' => htmlspecialchars_decode($feed->website()),
|
|
|
+ 'description' => htmlspecialchars_decode($feed->description()),
|
|
|
);
|
|
|
}
|
|
|
}
|