Fix up default index link if simple_urls is enabled

This commit is contained in:
ruan 2020-06-21 10:14:31 +02:00
parent 4443721716
commit e7598dee7e

View File

@ -138,6 +138,10 @@ final class Settings {
ini_set("display_errors", 1);
}
if ($this->simple_urls && $this->name_link === "index.php") {
$this->name_link = "index/";
}
$this->active_query = "";
if ($this->driver === "pgsql") {