Skip to content

Commit

Permalink
Activate internal cache by default
Browse files Browse the repository at this point in the history
  • Loading branch information
onli committed Feb 11, 2019
1 parent 15adc79 commit 88073e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/tpl/config_local.inc.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@
'title' => USE_CACHE, 'title' => USE_CACHE,
'description' => USE_CACHE_DESC, 'description' => USE_CACHE_DESC,
'type' => 'bool', 'type' => 'bool',
'default' => false, 'default' => true,
'permission' => 'siteConfiguration'), 'permission' => 'siteConfiguration'),
)); ));


Expand Down
2 changes: 1 addition & 1 deletion serendipity_config.inc.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@
} }


if (!isset($serendipity['useInternalCache'])) { if (!isset($serendipity['useInternalCache'])) {
$serendipity['useInternalCache'] = false; $serendipity['useInternalCache'] = true;
} }


// You can set parameters which ImageMagick should use to generate the thumbnails // You can set parameters which ImageMagick should use to generate the thumbnails
Expand Down

0 comments on commit 88073e9

Please sign in to comment.