From 09b65db31111f49c9f583ab1d5de127e10da6e98 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Wed, 14 Sep 2016 11:34:45 +0100 Subject: [PATCH] Issue #2785657 by mathieso, dishabhadra, ifrik, dawehner, YesCT, tim.plunkett: Misleading text in block visibility pages description --- core/modules/system/src/Plugin/Condition/RequestPath.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/modules/system/src/Plugin/Condition/RequestPath.php b/core/modules/system/src/Plugin/Condition/RequestPath.php index 1fb6f2b0286..17373cef7e9 100644 --- a/core/modules/system/src/Plugin/Condition/RequestPath.php +++ b/core/modules/system/src/Plugin/Condition/RequestPath.php @@ -105,8 +105,7 @@ class RequestPath extends ConditionPluginBase implements ContainerFactoryPluginI '#type' => 'textarea', '#title' => $this->t('Pages'), '#default_value' => $this->configuration['pages'], - '#description' => $this->t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. Example paths are %user for the current user's page and %user-wildcard for every user page. %front is the front page.", array( - '%user' => '/user', + '#description' => $this->t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. An example path is %user-wildcard for every user page. %front is the front page.", array( '%user-wildcard' => '/user/*', '%front' => '', )),