10.1 Compatibilite baseUrl IIS + Majuscules

This commit is contained in:
Fred Tempez 2020-05-22 16:06:34 +02:00
parent ca963adbbd
commit 24f8267ac8
2 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ class helper {
else {
$queryString = '';
}
return $host . rtrim($pathInfo['dirname'], ' /') . '/' . $queryString;
return $host . rtrim($pathInfo['dirname'], ' ' . DIRECTORY_SEPARATOR) . '/' . $queryString;
}
/**

View File

@ -10,7 +10,7 @@
</div>
<div class="col2 offset8">
<?php echo template::submit('configManageSubmit',[
'value' => 'valider',
'value' => 'Valider',
'ico' => 'check'
]); ?>
</div>