Changes between Version 1 and Version 2 of Ticket #50159, comment 23
- Timestamp:
- 05/14/2020 02:45:00 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #50159, comment 23
v1 v2 30 30 SimplePie is capable of using several different methods of creating the hash used in the transient. The default SimplePie `cache_name_function = 'md5'`. Your patch will have the effect of 31 31 {{{ 32 $transient = md5( 'file_' . md5( $filename:$extension) );32 $transient = 'file_' . md5( md5( $filename:$extension ) ) ); 33 33 }}} 34 34