Remove HTML escaping in config file template, add quote escaping

- Allows HTML special characters and quotes in DB password
This commit is contained in:
Hypolite Petovan 2020-05-19 21:07:55 -04:00
parent aadaf032ee
commit 6d5437721e
1 changed files with 13 additions and 13 deletions

View File

@ -7,10 +7,10 @@
return [ return [
'database' => [ 'database' => [
'hostname' => '{{$dbhost}}', 'hostname' => '{{$dbhost|escape:'quotes' nofilter}}',
'username' => '{{$dbuser}}', 'username' => '{{$dbuser|escape:'quotes' nofilter}}',
'password' => '{{$dbpass}}', 'password' => '{{$dbpass|escape:'quotes' nofilter}}',
'database' => '{{$dbdata}}', 'database' => '{{$dbdata|escape:'quotes' nofilter}}',
'charset' => 'utf8mb4', 'charset' => 'utf8mb4',
], ],
@ -21,19 +21,19 @@ return [
// **************************************************************** // ****************************************************************
'config' => [ 'config' => [
'php_path' => '{{$phpath}}', 'php_path' => '{{$phpath|escape:'quotes' nofilter}}',
'admin_email' => '{{$adminmail}}', 'admin_email' => '{{$adminmail|escape:'quotes' nofilter}}',
'sitename' => 'Friendica Social Network', 'sitename' => 'Friendica Social Network',
'hostname' => '{{$hostname}}', 'hostname' => '{{$hostname|escape:'quotes' nofilter}}',
'register_policy' => \Friendica\Module\Register::OPEN, 'register_policy' => \Friendica\Module\Register::OPEN,
'max_import_size' => 200000, 'max_import_size' => 200000,
], ],
'system' => [ 'system' => [
'urlpath' => '{{$urlpath}}', 'urlpath' => '{{$urlpath|escape:'quotes' nofilter}}',
'url' => '{{$baseurl}}', 'url' => '{{$baseurl|escape:'quotes' nofilter}}',
'ssl_policy' => {{$sslpolicy}}, 'ssl_policy' => {{$sslpolicy|escape:'quotes' nofilter}},
'basepath' => '{{$basepath}}', 'basepath' => '{{$basepath|escape:'quotes' nofilter}}',
'default_timezone' => '{{$timezone}}', 'default_timezone' => '{{$timezone|escape:'quotes' nofilter}}',
'language' => '{{$language}}', 'language' => '{{$language|escape:'quotes' nofilter}}',
], ],
]; ];