Skip to content
Snippets Groups Projects
Commit 6aa7c385 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #226480 by gpk: improved code comment.

parent a170d1f8
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -10,8 +10,9 @@ ...@@ -10,8 +10,9 @@
* Menu callback; presents general node configuration options. * Menu callback; presents general node configuration options.
*/ */
function node_configure() { function node_configure() {
// Only show rebuild button if there is 0 or more than 2 rows in node_access table, // Only show rebuild button if there are either 0, or 2 or more, rows
// or if there are modules that implement node_grant. // in the {node_access} table, or if there are modules that
// implement hook_node_grants().
if (db_result(db_query('SELECT COUNT(*) FROM {node_access}')) != 1 || count(module_implements('node_grants')) > 0) { if (db_result(db_query('SELECT COUNT(*) FROM {node_access}')) != 1 || count(module_implements('node_grants')) > 0) {
$status = '<p>'. t('If the site is experiencing problems with permissions to content, you may have to rebuild the permissions cache. Possible causes for permission problems are disabling modules or configuration changes to permissions. Rebuilding will remove all privileges to posts, and replace them with permissions based on the current modules and settings.') .'</p>'; $status = '<p>'. t('If the site is experiencing problems with permissions to content, you may have to rebuild the permissions cache. Possible causes for permission problems are disabling modules or configuration changes to permissions. Rebuilding will remove all privileges to posts, and replace them with permissions based on the current modules and settings.') .'</p>';
$status .= '<p>'. t('Rebuilding may take some time if there is a lot of content or complex permission settings. After rebuilding has completed posts will automatically use the new permissions.') .'</p>'; $status .= '<p>'. t('Rebuilding may take some time if there is a lot of content or complex permission settings. After rebuilding has completed posts will automatically use the new permissions.') .'</p>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment