mirror of
https://github.com/phpmyadmin/docker.git
synced 2026-08-24 10:13:22 -05:00
Remove Trim() from around dir env settings
This commit is contained in:
+2
-2
@@ -140,11 +140,11 @@ $i--;
|
||||
|
||||
/* Uploads setup */
|
||||
if (isset($_ENV['PMA_UPLOADDIR'])) {
|
||||
$cfg['UploadDir'] = trim($_ENV['PMA_UPLOADDIR']);
|
||||
$cfg['UploadDir'] = $_ENV['PMA_UPLOADDIR'];
|
||||
}
|
||||
|
||||
if (isset($_ENV['PMA_SAVEDIR'])) {
|
||||
$cfg['SaveDir'] = trim($_ENV['PMA_SAVEDIR']);
|
||||
$cfg['SaveDir'] = $_ENV['PMA_SAVEDIR'];
|
||||
}
|
||||
|
||||
if (isset($_ENV['MAX_EXECUTION_TIME'])) {
|
||||
|
||||
Reference in New Issue
Block a user