diff options
author | Andreas Gohr <andi@splitbrain.org> | 2023-08-30 17:43:04 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2023-08-30 17:46:31 +0200 |
commit | 615810c59cd1bbc7a6f950fa667bd0c75f92d99a (patch) | |
tree | a7a95e755468ec9c053d5ac59ea2906b7023e460 /inc/Cache | |
parent | d6784168e25fb8f3f5e63e884cc1412df1533641 (diff) | |
download | dokuwiki-615810c59cd1bbc7a6f950fa667bd0c75f92d99a.tar.gz dokuwiki-615810c59cd1bbc7a6f950fa667bd0c75f92d99a.zip |
address issues mention in PR#4045
Diffstat (limited to 'inc/Cache')
-rw-r--r-- | inc/Cache/CacheParser.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/Cache/CacheParser.php b/inc/Cache/CacheParser.php index 5f69d3d84..3c54ee7d7 100644 --- a/inc/Cache/CacheParser.php +++ b/inc/Cache/CacheParser.php @@ -40,7 +40,7 @@ class CacheParser extends Cache public function makeDefaultCacheDecision() { if (!file_exists($this->file)) { - // source exists? + // source doesn't exist return false; } return parent::makeDefaultCacheDecision(); |