diff --git a/metatag_context/metatag_context.admin.inc b/metatag_context/metatag_context.admin.inc index 17c582c..d776cb2 100644 --- a/metatag_context/metatag_context.admin.inc +++ b/metatag_context/metatag_context.admin.inc @@ -94,7 +94,7 @@ function metatag_context_config_edit_form($form, &$form_state, $context) { $form['paths'] = array( '#title' => 'Path', - '#description' => 'Set this metatag context when any of the paths above match the page path. Put each path on a separate line. You can use the * character (asterisk) as a wildcard and the ~ character (tilde) to exclude one or more paths. Use <front> for the site front page.', + '#description' => t('Set this metatag context when any of the paths above match the page path. Put each path on a separate line. You can use the * character (asterisk) as a wildcard and the ~ character (tilde) to exclude one or more paths. Use <front> for the site front page. Only local paths (e.g. "example/page") will work, do not use relative URLs ("/example/page") or absolute URLs ("http://example.com/example/page").'), '#type' => 'textarea', '#default_value' => isset($context->conditions['path']['values']) ? html_entity_decode(implode(' ', $context->conditions['path']['values'])) : '', '#required' => 1,