Skip to content
Snippets Groups Projects

ISTWCMS-4653: checking for unpublished nodes when getting the menu

Merged Eric Bremner requested to merge feature/ISTWCMS-4653-ebremner-unpublished-menu into 8.x-1.x
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -315,7 +315,7 @@ class UWService implements UWServiceInterface {
$path = $this->pathAliasManager->getPathByAlias('/' . $alias);
// Check if it is a node path and if so check if published.
if(preg_match('/node\/(\d+)/', $path, $matches)) {
if (preg_match('/node\/(\d+)/', $path, $matches)) {
// Load in the node based on the path.
$node = $this->entityTypeManager->getStorage('node')->load($matches[1]);
Loading