From b04e99ad2bca3b5fa54e686f2d6ef8ff1db0e828 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Thu, 18 Feb 2016 11:16:35 +0900 Subject: [PATCH] Issue #2651228 by jordanpagewhite, webbykat: Add description beneath 'User the administration theme for editing content...' on the admin Appearance page --- core/modules/node/node.module | 1 + 1 file changed, 1 insertion(+) diff --git a/core/modules/node/node.module b/core/modules/node/node.module index 5d7ef4b5eab..ab310d54f32 100644 --- a/core/modules/node/node.module +++ b/core/modules/node/node.module @@ -832,6 +832,7 @@ function node_form_system_themes_admin_form_alter(&$form, FormStateInterface $fo $form['admin_theme']['use_admin_theme'] = array( '#type' => 'checkbox', '#title' => t('Use the administration theme when editing or creating content'), + '#description' => t('Control which roles can "View the administration theme" on the Permissions page.', array(':permissions' => '/admin/people/permissions')), '#default_value' => \Drupal::configFactory()->getEditable('node.settings')->get('use_admin_theme'), ); $form['#submit'][] = 'node_form_system_themes_admin_form_submit';