contrib modules security updates
This commit is contained in:
@@ -5,27 +5,23 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* Implementation of hook_ctools_plugin_api().
|
||||
* Implements hook_ctools_plugin_api().
|
||||
*/
|
||||
function feeds_news_ctools_plugin_api() {
|
||||
list($module, $api) = func_get_args();
|
||||
function feeds_news_ctools_plugin_api($module = NULL, $api = NULL) {
|
||||
if ($module == "feeds" && $api == "feeds_importer_default") {
|
||||
return array("version" => 1);
|
||||
return array("version" => "1");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Implementation of hook_views_api().
|
||||
* Implements hook_views_api().
|
||||
*/
|
||||
function feeds_news_views_api() {
|
||||
list($module, $api) = func_get_args();
|
||||
if ($module == "views" && $api == "views_default") {
|
||||
return array("version" => 3.0);
|
||||
}
|
||||
function feeds_news_views_api($module = NULL, $api = NULL) {
|
||||
return array("api" => "3.0");
|
||||
}
|
||||
|
||||
/**
|
||||
* Implementation of hook_node_info().
|
||||
* Implements hook_node_info().
|
||||
*/
|
||||
function feeds_news_node_info() {
|
||||
$items = array(
|
||||
|
Reference in New Issue
Block a user