aboutsummaryrefslogtreecommitdiff
path: root/app/views/helpers/export
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-07-23 23:56:16 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-07-23 23:56:16 +0200
commitd5d3f6dcfa21e7defb26f3d470289e957bdb3dde (patch)
tree599e3b02b3981dd78687b11c95c5dad7dd47f0d3 /app/views/helpers/export
parente507256d0bdebd02cf1fcd6fe1477cbac0b6934e (diff)
Fix bugs in import/export
- EntryDAO.php: add a missing "FreshRSS_EntryDAO::" - Fix htmlspecialchars in opml export
Diffstat (limited to 'app/views/helpers/export')
-rw-r--r--app/views/helpers/export/opml.phtml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/helpers/export/opml.phtml b/app/views/helpers/export/opml.phtml
index f667d093c..8622d9144 100644
--- a/app/views/helpers/export/opml.phtml
+++ b/app/views/helpers/export/opml.phtml
@@ -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()),
);
}
}