diff --git a/core/modules/comment/src/Plugin/views/sort/Thread.php b/core/modules/comment/src/Plugin/views/sort/Thread.php index 44fba2989c3d24631b48ec67017216f7b597a817..353d79911094bc0a33af911a24634eab85c55383 100644 --- a/core/modules/comment/src/Plugin/views/sort/Thread.php +++ b/core/modules/comment/src/Plugin/views/sort/Thread.php @@ -16,8 +16,8 @@ class Thread extends SortPluginBase { public function query() { $this->ensureMyTable(); - // Read comment_render() in comment.module for an explanation of the - // thinking behind this sort. + // See \Drupal\comment\CommentStorage::loadThread() for an explanation of + // the thinking behind this sort. if ($this->options['order'] == 'DESC') { $this->query->addOrderBy($this->tableAlias, $this->realField, $this->options['order']); }