Mercurial > hg > isophonics-drupal-site
diff core/lib/Drupal/Core/Access/AccessResult.php @ 16:c2387f117808
Routine composer update
author | Chris Cannam |
---|---|
date | Tue, 10 Jul 2018 15:07:59 +0100 |
parents | 1fec387a4317 |
children | 129ea1e6d783 |
line wrap: on
line diff
--- a/core/lib/Drupal/Core/Access/AccessResult.php Thu Apr 26 11:26:54 2018 +0100 +++ b/core/lib/Drupal/Core/Access/AccessResult.php Tue Jul 10 15:07:59 2018 +0100 @@ -336,10 +336,10 @@ $merge_other = TRUE; } - if ($this->isForbidden() && $this instanceof AccessResultReasonInterface) { + if ($this->isForbidden() && $this instanceof AccessResultReasonInterface && !is_null($this->getReason())) { $result->setReason($this->getReason()); } - elseif ($other->isForbidden() && $other instanceof AccessResultReasonInterface) { + elseif ($other->isForbidden() && $other instanceof AccessResultReasonInterface && !is_null($other->getReason())) { $result->setReason($other->getReason()); } } @@ -353,14 +353,13 @@ $result = static::neutral(); if (!$this->isNeutral() || ($this->getCacheMaxAge() === 0 && $other->isNeutral()) || ($this->getCacheMaxAge() !== 0 && $other instanceof CacheableDependencyInterface && $other->getCacheMaxAge() !== 0)) { $merge_other = TRUE; - if ($other instanceof AccessResultReasonInterface) { - $result->setReason($other->getReason()); - } } - else { - if ($this instanceof AccessResultReasonInterface) { - $result->setReason($this->getReason()); - } + + if ($this instanceof AccessResultReasonInterface && !is_null($this->getReason())) { + $result->setReason($this->getReason()); + } + elseif ($other instanceof AccessResultReasonInterface && !is_null($other->getReason())) { + $result->setReason($other->getReason()); } } $result->inheritCacheability($this);