8ac59801be
Update commons modules to release 7.12, and move the codebase under modules/commons instead of constant fetching from remote repository. The commons.make file removed so it is not required to rebuild groups distribution. Change-Id: I3be393ba1af34427e2915b18ab1ad718fd4e54db
10 lines
354 B
Plaintext
10 lines
354 B
Plaintext
<?php
|
|
/* update script to make sure the feature gets reverted so social links get removed from default display */
|
|
function commons_profile_social_update_7001() {
|
|
|
|
// Revert Features components to ensure that they are in their default states.
|
|
$revert = array(
|
|
'commons_profile_social' => array('field_instance'),
|
|
);
|
|
features_revert($revert);
|
|
} |