From 5609fde13a9cf007bb66895b9934a6b5100d63b5 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Thu, 20 Jun 2024 11:56:43 -0400 Subject: [PATCH] Fix issue processwire/processwire-issues#1941 --- wire/core/Pagefile.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wire/core/Pagefile.php b/wire/core/Pagefile.php index c26b061a..3be8a306 100644 --- a/wire/core/Pagefile.php +++ b/wire/core/Pagefile.php @@ -707,6 +707,7 @@ class Pagefile extends WireData implements WireArrayItem { $value = $this->uploadName(); break; default: + if(strpos($key, '|')) return parent::get($key); $value = $this->getFieldValue($key); }