You are here

function notifications_update_6005 in Notifications 6.3

Same name and namespace in other branches
  1. 6.4 notifications.install \notifications_update_6005()

Enable the messaging_template module

File

./notifications.install, line 384

Code

function notifications_update_6005() {
  module_enable(array(
    'messaging_template',
  ));
  variable_set('notifications_build_methods', variable_get('notifications_digest_methods', array()));
  variable_del('notifications_digest_methods');
  return array();
}