Index: trunk/extensions/TimedMediaHandler/TimedMediaHandler.hooks.php |
— | — | @@ -86,12 +86,11 @@ |
87 | 87 | // ( a maintenance script could handle transcode asset purging) |
88 | 88 | if ( isset( $wgExcludeFromThumbnailPurge ) ) { |
89 | 89 | $wgExcludeFromThumbnailPurge = array_merge( $wgExcludeFromThumbnailPurge, $wgTmhFileExtensions ); |
| 90 | + // Also add the .log file ( used in two pass encoding ) |
| 91 | + // ( probably should move in-progress encodes out of web accessible directory ) |
| 92 | + $wgExcludeFromThumbnailPurge[] = 'log'; |
90 | 93 | } |
91 | 94 | |
92 | | - // Also add the .log file ( used in two pass encoding ) |
93 | | - // ( probably should move in-progress encodes out of web accessible directory ) |
94 | | - $wgExcludeFromThumbnailPurge[] = 'log'; |
95 | | - |
96 | 95 | $wgHooks['LoadExtensionSchemaUpdates'][] = 'TimedMediaHandlerHooks::loadExtensionSchemaUpdates'; |
97 | 96 | |
98 | 97 | // Add unit tests |