You are here

function commons_update_3122 in Drupal Commons 7.3

Replace the CKEditor module with the Editor CKEditor module.

File

./commons.install, line 844
Install, update and uninstall functions for the Commons install profile.

Code

function commons_update_3122() {
  if (module_exists('ckeditor')) {
    module_disable(array(
      'ckeditor',
    ));
  }
  module_enable(array(
    'editor_ckeditor',
  ));
  return array();
}