Skip to content
Snippets Groups Projects
Verified Commit 0017914e authored by Dave Long's avatar Dave Long
Browse files

SA-CORE-2025-002 by jeff cardwell, benjifisher, poker10, mingsong

parent 2da65702
No related branches found
No related tags found
2 merge requests!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!10223132456: Fix issue where views instances are emptied before an ajax request is complete
...@@ -53,7 +53,7 @@ public function access($object, ?AccountInterface $account = NULL, $return_as_ob ...@@ -53,7 +53,7 @@ public function access($object, ?AccountInterface $account = NULL, $return_as_ob
$result = $object->access('update', $account, TRUE); $result = $object->access('update', $account, TRUE);
foreach ($this->getFieldsToUpdate() as $field => $value) { foreach ($this->getFieldsToUpdate() as $field => $value) {
$result->andIf($object->{$field}->access('edit', $account, TRUE)); $result = $result->andIf($object->{$field}->access('edit', $account, TRUE));
} }
return $return_as_object ? $result : $result->isAllowed(); return $return_as_object ? $result : $result->isAllowed();
......
...@@ -78,6 +78,14 @@ protected function setUp(): void { ...@@ -78,6 +78,14 @@ protected function setUp(): void {
* Tests if exposed filtering via AJAX works for the "Content" View. * Tests if exposed filtering via AJAX works for the "Content" View.
*/ */
public function testExposedFiltering(): void { public function testExposedFiltering(): void {
// Create an account that can update the sticky flag.
$user = $this->drupalCreateUser([
'access content overview',
'administer nodes',
'edit any page content',
]);
$this->drupalLogin($user);
// Visit the View page. // Visit the View page.
$this->drupalGet('admin/content'); $this->drupalGet('admin/content');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment