From 63fa80db82eab8d7d17e38059fc7162169683101 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Tue, 15 Mar 2022 22:48:06 +0900 Subject: [PATCH] No need to fail hard if unable to write cache file at the end --- modules/page/page.view.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/page/page.view.php b/modules/page/page.view.php index 0a1488009..4a7886360 100644 --- a/modules/page/page.view.php +++ b/modules/page/page.view.php @@ -297,11 +297,6 @@ class pageView extends page // Write cache file. $success = Rhymix\Framework\Storage::write($cache_file, $content); - if (!$success) - { - return ''; - } - return $content; }