You are here

function panopoly_core_update_7107 in Panopoly Core 7

Enable FPP revision locking (except when 'entity_translation' is enabled).

File

./panopoly_core.install, line 250
An installation file for Panopoly Core

Code

function panopoly_core_update_7107() {
  if (!module_exists('entity_translation')) {
    variable_set('fpp_revision_locking', 'lock');
  }
}