summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2011-01-28 07:47:28 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2011-01-28 07:47:28 +0000
commitae433184f57c1ca230a7f207dcb4197fa73b1500 (patch)
tree1ef79b575883cdb74b59c2b603554744c85eede3 /modules
parent66dc2c3d4bce580683f6f91b6aa4520c170bb700 (diff)
downloadbrdo-ae433184f57c1ca230a7f207dcb4197fa73b1500.tar.gz
brdo-ae433184f57c1ca230a7f207dcb4197fa73b1500.tar.bz2
#1027454 by amateescu, montesq, jhodgdon: Fixed _aggregator_parse_opml() documentation contains escaped HTML tags that should be removed.
Diffstat (limited to 'modules')
-rw-r--r--modules/aggregator/aggregator.admin.inc13
1 files changed, 7 insertions, 6 deletions
diff --git a/modules/aggregator/aggregator.admin.inc b/modules/aggregator/aggregator.admin.inc
index a2d964917..3dc6053ff 100644
--- a/modules/aggregator/aggregator.admin.inc
+++ b/modules/aggregator/aggregator.admin.inc
@@ -350,16 +350,17 @@ function aggregator_form_opml_submit($form, &$form_state) {
/**
* Parse an OPML file.
*
- * Feeds are recognized as <outline> elements with the attributes
- * <em>text</em> and <em>xmlurl</em> set.
+ * Feeds are recognized as <outline> elements with the attributes "text" and
+ * "xmlurl" set.
*
* @param $opml
* The complete contents of an OPML document.
+ *
* @return
- * An array of feeds, each an associative array with a <em>title</em> and
- * a <em>url</em> element, or NULL if the OPML document failed to be parsed.
- * An empty array will be returned if the document is valid but contains
- * no feeds, as some OPML documents do.
+ * An array of feeds, each an associative array with a "title" and a "url"
+ * element, or NULL if the OPML document failed to be parsed. An empty
+ * array will be returned if the document is valid but contains no feeds, as
+ * some OPML documents do.
*/
function _aggregator_parse_opml($opml) {
$feeds = array();