Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

feat: update cache directory of HtmlPurifier #126

Merged
merged 1 commit into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ test/coverage/
config/development.config.php
vendor-bin/**/composer.lock
.phpunit.result.cache
data/cache/*

# Non-dist files for the static analysis.
# This allows developers to set a different (more strict) static analysis locally.
Expand Down
2 changes: 1 addition & 1 deletion config/autoload/config.global.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
],
],
],
'html-purifier-cache-dir' => '/var/tmp/htmlPurifierCache',
'html-purifier-cache-dir' => 'data/cache/HtmlPurifier',

'auth' => [
'user_unique_id_salt' => '%user_unique_id_salt%',
Expand Down
2 changes: 0 additions & 2 deletions config/autoload/local.php.dist
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,6 @@ return [
],
],
],
'html-purifier-cache-dir' => '/tmp',

'auth' => [
'user_unique_id_salt' => '1234',
],
Expand Down
1 change: 1 addition & 0 deletions data/cache/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*
!.gitignore
!*/
2 changes: 2 additions & 0 deletions data/cache/HtmlPurifier/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
Loading