You are here

function abort_disabled_update in Forum Access 6

Return the abort message.

2 calls to abort_disabled_update()
forum_access_update_6102 in ./forum_access.install
Set the proper permissions for the Forum Moderator role.
forum_access_update_6105 in ./forum_access.install
Add missing default records to the {forum_access} table.

File

./forum_access.install, line 209
Install, update and uninstall functions for the forum_access module.

Code

function abort_disabled_update() {
  return array(
    '#abort' => array(
      'success' => FALSE,
      'query' => t('Please enable %module before trying to run this update.', array(
        '%module' => 'Forum Access',
      )),
    ),
  );
}