Changeset 3070021
- Timestamp:
- 04/13/2024 12:19:04 PM (2 years ago)
- Location:
- camoo-cdn/tags/2.0.2/src
- Files:
-
- 2 edited
-
Cache/Settings.php (modified) (1 diff)
-
Services/QueryCaching.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
camoo-cdn/tags/2.0.2/src/Cache/Settings.php
r3070018 r3070021 157 157 { 158 158 if (self::$options === null) { 159 self::$options = Option::get('camoo_cdn_cache_settings') ?? []; 159 $value = Option::get('camoo_cdn_cache_settings'); 160 self::$options = empty($value)? [] : $value; 160 161 } 161 162 -
camoo-cdn/tags/2.0.2/src/Services/QueryCaching.php
r3070020 r3070021 89 89 { 90 90 if (self::$options === null) { 91 self::$options = Option::get('camoo_cdn_cache_settings') ?? []; 91 $value = Option::get('camoo_cdn_cache_settings'); 92 self::$options = empty($value)? [] : $value; 92 93 } 93 94
Note: See TracChangeset
for help on using the changeset viewer.