Changeset 594 for plugins/staticcache/trunk/staticcache.plugin.php
- Timestamp:
- 06/15/08 05:16:37 (7 months ago)
- Files:
-
- 1 modified
-
plugins/staticcache/trunk/staticcache.plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/staticcache/trunk/staticcache.plugin.php
r593 r594 36 36 //don't cache pages matching ignore list keywords 37 37 if ( preg_match( "@.*($ignore_list).*@i", $request ) || !Options::get( 'staticcache__ignore_list' ) ) { 38 Utils::debug( 'ignoring' );39 38 return; 40 39 } … … 43 42 $query_id = self::get_query_id(); 44 43 45 Utils::debug( $request, $request_id, $query_id, "($ignore_list)" );46 47 44 if ( Cache::has( "staticcache:$request_id" ) ) { 48 45 $cache = Cache::get( "staticcache:$request_id" ); 49 46 if ( isset( $cache[$query_id] ) ) { 50 Utils::debug( 'cached' );51 47 global $profile_start; 52 48 echo $cache[$query_id];
