contrib modules security updates

This commit is contained in:
Bachir Soussi Chiadmi
2016-10-13 12:10:40 +02:00
parent ffd758abc9
commit 747127f643
732 changed files with 67976 additions and 23207 deletions

View File

@@ -21,7 +21,8 @@ function _feeds_feeds_plugins() {
),
);
$info['FeedsMissingPlugin'] = array(
'hidden' => TRUE,
'name' => 'Missing plugin',
'description' => 'There is a problem with your configuration.',
'handler' => array(
'class' => 'FeedsMissingPlugin',
'file' => 'FeedsPlugin.inc',
@@ -85,17 +86,19 @@ function _feeds_feeds_plugins() {
'path' => $path,
),
);
$info['FeedsSyndicationParser'] = array(
'name' => 'Common syndication parser',
'description' => 'Parse RSS and Atom feeds.',
'help' => 'Parse XML feeds in RSS 1, RSS 2 and Atom format.',
'handler' => array(
'parent' => 'FeedsParser',
'class' => 'FeedsSyndicationParser',
'file' => 'FeedsSyndicationParser.inc',
'path' => $path,
),
);
if (extension_loaded('SimpleXML')) {
$info['FeedsSyndicationParser'] = array(
'name' => 'Common syndication parser',
'description' => 'Parse RSS and Atom feeds.',
'help' => 'Parse XML feeds in RSS 1, RSS 2 and Atom format.',
'handler' => array(
'parent' => 'FeedsParser',
'class' => 'FeedsSyndicationParser',
'file' => 'FeedsSyndicationParser.inc',
'path' => $path,
),
);
}
$info['FeedsOPMLParser'] = array(
'name' => 'OPML parser',
'description' => 'Parse OPML files.',
@@ -164,5 +167,6 @@ function _feeds_feeds_plugins() {
),
);
}
return $info;
}