mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
update quotes logic
This commit is contained in:
parent
ba6c157128
commit
d888780ed8
@ -131,7 +131,7 @@ trait AppSetup
|
||||
$words_count = count(explode(' ', trim($value)));
|
||||
|
||||
if (is_null($position)) {
|
||||
$env[] = "{$property}=" . $value . "\n"; // If we don't have entry for variable in the .env, write it.
|
||||
$words_count > 1 ? $env[] = "{$property}=" . '"' . $value . '"' . "\n" : $env[] = "{$property}=" . $value . "\n";
|
||||
} else if ($words_count > 1) {
|
||||
$env[$position] = "{$property}=" . '"' . $value . '"' . "\n"; // If value of variable is more than one word, surround with quotes.
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user