diff --git a/core/modules/tour/tour.module b/core/modules/tour/tour.module index 3cc5dc2..fe9bc1a 100644 --- a/core/modules/tour/tour.module +++ b/core/modules/tour/tour.module @@ -118,7 +118,7 @@ function tour_preprocess_page(&$variables) { $path_alias = drupal_strtolower(drupal_container()->get('path.alias_manager')->getPathAlias($path)); foreach ($tours as $tour_id => $tour) { - // @todo replace this with a Drupal::entityQuery() that does path matching when + // @todo Replace this with an entity query that does path matching when // http://drupal.org/node/1918768 lands. $pages = implode("\n", $tour->getPaths()); if (!drupal_match_path($path_alias, $pages) && (($path == $path_alias) || drupal_match_path($path, $pages))) {