groups/modules/commons/commons_search/commons_search.install

20 lines
367 B
Plaintext

<?php
/**
* Disable rich_snippets module
*/
function commons_search_update_7001() {
module_disable(array('rich_snippets'));
}
/**
* Replace the title attribute with the title field in view displays.
*/
function commons_search_update_7002() {
$revert = array(
'commons_search' => array('views_view'),
);
features_revert($revert);
return array();
}