From 3180b358076011d6a65b93bfa9323465447c755d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 24 Nov 2022 08:16:56 +0300 Subject: deprecate DiskCache->touch() --- plugins/cache_starred_images/init.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/cache_starred_images/init.php b/plugins/cache_starred_images/init.php index eed5264c6..daaab2dca 100755 --- a/plugins/cache_starred_images/init.php +++ b/plugins/cache_starred_images/init.php @@ -31,10 +31,10 @@ class Cache_Starred_Images extends Plugin { chmod($this->cache_status->get_dir(), 0777); if (!$this->cache->exists(".no-auto-expiry")) - $this->cache->touch(".no-auto-expiry"); + $this->cache->put(".no-auto-expiry", ""); if (!$this->cache_status->exists(".no-auto-expiry")) - $this->cache_status->touch(".no-auto-expiry"); + $this->cache_status->put(".no-auto-expiry", ""); if ($this->cache->is_writable() && $this->cache_status->is_writable()) { $host->add_hook($host::HOOK_HOUSE_KEEPING, $this); -- cgit v1.2.3