Skip to content
Snippets Groups Projects
Commit 2d8529a0 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#187759 by myself: add missing break to reach when if() was not satisfied, to...

#187759 by myself: add missing break to reach when if() was not satisfied, to avoid extra unrelated help appearing on block configure pages
parent bad54847
No related branches found
No related tags found
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
......@@ -56,6 +56,7 @@ function system_help($path, $arg) {
if ($arg[4] == 'system' && $arg[5] == 0) {
return '<p>'. t('The <em>Powered by Drupal</em> block is an optional link to the home page of the Drupal project. While there is absolutely no requirement that sites feature this link, it may be used to show support for Drupal.') .'</p>';
}
break;
case 'admin/settings/actions':
case 'admin/settings/actions/manage':
$output = '<p>'. t('Actions are individual tasks that the system can do, such as unpublishing a piece of content or banning a user. Modules, such as the trigger module, can fire these actions when certain system events happen; for example, when a new post is added or when a user logs in. Modules may also provide additional actions.') .'</p>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment