Commit 7228116a authored by Tobias Munk's avatar Tobias Munk

added fallback for FTP_BINARY constant

parent 11b8b083
Pipeline #85152 passed with stages
in 12 minutes and 12 seconds
......@@ -280,7 +280,7 @@ return [
'ssl' => getenv('FTP_BUCKET_SSL') ?: 0,
'passive' => 1,
'timeout' => 10,
'transferMode' => FTP_BINARY,
'transferMode' => defined("FTP_BINARY") ? FTP_BINARY : null,
'enableTimestampsOnUnixListings' => true
],
'i18n' => [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment