diff --git a/metatag.install b/metatag.install index f634567..025163e 100644 --- a/metatag.install +++ b/metatag.install @@ -353,7 +353,7 @@ function metatag_schema() { * Implements hook_install(). */ function metatag_install() { - drupal_set_message(t("Thank you for installing the Metatag module. It is recommended to read the module's README.txt file as there are some known issues that may affect this site.", array('!url' => url(drupal_get_path('module', 'metatag') . '/README.txt')))); + drupal_set_message(t("Thank you for installing the Metatag module. It is recommended to read the module's README.txt file as there are some known issues that may affect this site.", array('!url' => url(drupal_get_path('module', 'metatag') . '/README.txt')))); // Always enable the node, taxonomy term and user entities. foreach (array('node', 'taxonomy_term', 'user') as $entity_type) { diff --git a/metatag_context/metatag_context.admin.inc b/metatag_context/metatag_context.admin.inc index 2c66aa3..7155e53 100644 --- a/metatag_context/metatag_context.admin.inc +++ b/metatag_context/metatag_context.admin.inc @@ -14,7 +14,7 @@ function metatag_context_context_overview() { $header = array(t('Name'), t('Paths'), t('Weight'), t('Operations')); $rows = array(); - $caption = t('Values assigned here inherit from the global defaults. Use the weight to specify the order the context meta tags run.', array('@url' => url('admin/config/search/metatags/config/global'))); + $caption = t('Values assigned here inherit from the global defaults. Use the weight to specify the order the context meta tags run.', array('@url' => url('admin/config/search/metatags/config/global'))); foreach ($contexts as $name => $context) { // Only show context items that are specifically selected to be "Shown on @@ -155,7 +155,7 @@ function metatag_context_config_edit_form($form, &$form_state, $context) { $form['help'] = array( '#prefix' => '
', - '#markup' => t('Values assigned here inherit from the global defaults.', array('@url' => url('admin/config/search/metatags/config/global'))), + '#markup' => t('Values assigned here inherit from the global defaults.', array('@url' => url('admin/config/search/metatags/config/global'))), '#suffix' => '
', '#weight' => -99, ); diff --git a/metatag_context/metatag_context.context.inc b/metatag_context/metatag_context.context.inc index 8b7133c..e70ae7e 100644 --- a/metatag_context/metatag_context.context.inc +++ b/metatag_context/metatag_context.context.inc @@ -41,7 +41,7 @@ class metatag_context_reaction extends context_reaction { $form['help'] = array( '#prefix' => '', - '#markup' => t('Values assigned here inherit from the global defaults and will override any other meta tags assigned elsewhere.', array('@url' => url('admin/config/search/metatags/config/global'))), + '#markup' => t('Values assigned here inherit from the global defaults and will override any other meta tags assigned elsewhere.', array('@url' => url('admin/config/search/metatags/config/global'))), '#suffix' => '
', );