diff --git a/uw_cfg_common.module b/uw_cfg_common.module index cebb0e052f8093c2eafa7b0aa0cf41597c0ec091..89182d2d77f22cc83b5cc75710c2a248bb3d66d2 100644 --- a/uw_cfg_common.module +++ b/uw_cfg_common.module @@ -958,6 +958,7 @@ function _uw_cfg_common_alias_validate(array &$form, FormStateInterface $form_st // Get the alias from the form state values. $alias = $values['path'][0]['alias']; + $orig_alias = $alias; // Trim any surrounding slashes from the alias to // ensure that we are getting exact matches for the @@ -981,7 +982,7 @@ function _uw_cfg_common_alias_validate(array &$form, FormStateInterface $form_st ) { // Set an error message if alias exists. - $form_state->setError($form['path']['widget'][0]['alias'], t('@url cannot be an alias.', ['@url' => $alias])); + $form_state->setError($form['path']['widget'][0]['alias'], t('The alias "@url" is a reserved path that cannot be used.', ['@url' => $orig_alias])); } }