From a2fcf0a5aab24db643fc0c868d689c1ab3699e16 Mon Sep 17 00:00:00 2001 From: Edward Date: Fri, 25 Jan 2019 12:27:33 +0800 Subject: [PATCH] Fix #5655 - UAT of Press release detail pages --- Images.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Images.php b/Images.php index 54984b97..2e7c9819 100644 --- a/Images.php +++ b/Images.php @@ -465,7 +465,8 @@ class Pman_Core_Images extends Pman $id = $umatch[2]; $hash = ''; if (!empty($umatch[3]) && strpos($umatch[3],'#')) { - $hash = '#'. array_pop(explode('#',$umatch[3])); + $hh = explode('#',$umatch[3]); + $hash = '#'. array_pop($hh); } -- 2.39.2