Changeset 1949 for branches/release-35/lib/MT/CMS/Template.pm
- Timestamp:
- 04/17/08 13:11:31 (20 months ago)
- Files:
-
- 1 modified
-
branches/release-35/lib/MT/CMS/Template.pm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-35/lib/MT/CMS/Template.pm
r1913 r1949 474 474 if ($blog) { 475 475 $param->{include_with_ssi} = 0; 476 $param->{cache_path} = ''; 476 477 $param->{cache_enabled} = 0; 477 478 $param->{cache_expire_type} = 0; … … 483 484 $param->{include_with_ssi} = $obj->include_with_ssi 484 485 if defined $obj->include_with_ssi; 486 $param->{cache_path} = $obj->cache_path 487 if defined $obj->cache_path; 485 488 $param->{cache_enabled} = $obj->use_cache 486 489 if defined $obj->use_cache; … … 1237 1240 # module caching 1238 1241 $obj->include_with_ssi( $app->param('include_with_ssi') ? 1 : 0 ); 1242 $obj->cache_path( $app->param('cache_path')); 1239 1243 $obj->use_cache( $app->param('cache_enabled') ? 1 : 0 ); 1240 1244 my $cache_expire_type = $app->param('cache_expire_type');
