Commit 5c69a027 authored by Dima Storozhuk's avatar Dima Storozhuk Committed by Dima Storozhuk
Browse files

Issue #3056861 by weseze, dstorozhuk: Compatibility with email_registration module

parent 8dcd7afc
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
<?php

/**
 * @file
 * Install functions for the account field split module.
 */

/**
 * Implements hook_enable().
 */
function account_field_split_install() {
  module_set_weight('account_field_split', 101);
}

/**
 * Run the module alter after other modules.
 */
function account_field_split_update_9001() {
  module_set_weight('account_field_split', 101);
}