acl_disable()Implementation of hook_disable
contributions/acl/acl.module, line 273
<?php
function acl_disable() {
drupal_set_message(t('You have disabled the ACL module—to avoid permission problems you should now go to !link and click on the [!button] button!', array(
'!link' => l('admin/content/node-settings', 'admin/content/node-settings'),
'!button' => t('Rebuild permissions'),
)));
}
?>