You are here

function composer_manager_update_7100 in Composer Manager 7

Same name and namespace in other branches
  1. 7.2 composer_manager.install \composer_manager_update_7100()

Change the name of the "composer_manager_generate_file" variable to "composer_manager_autobuild_file".

File

./composer_manager.install, line 119
Install, update, and uninstall functions for the Composer Manager module.

Code

function composer_manager_update_7100() {
  $autobuild = variable_get('composer_manager_generate_file', 1);
  variable_set('composer_manager_autobuild_file', $autobuild);
  variable_del('composer_manager_generate_file');
}