From 62ce0e74402218639a1de4ae525cb7bfa1857b35 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Sat, 7 Sep 2024 19:26:44 +0200 Subject: [PATCH] set placeholder of baseUrl to getBaseUrl() --- views/bootstrap/class.Settings.php | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/views/bootstrap/class.Settings.php b/views/bootstrap/class.Settings.php index 6571f4287..c0ba2cb44 100644 --- a/views/bootstrap/class.Settings.php +++ b/views/bootstrap/class.Settings.php @@ -462,7 +462,7 @@ if(($kkk = $this->callHook('getFullSearchEngine')) && is_array($kkk)) --> showConfigHeadline('settings_Server'); ?> showConfigText('settings_rootDir', 'rootDir'); ?> -showConfigText('settings_baseUrl', 'baseUrl'); ?> +showConfigText('settings_baseUrl', 'baseUrl', '', getBaseUrl()); ?> showConfigText('settings_httpRoot', 'httpRoot'); ?> showConfigText('settings_contentDir', 'contentDir'); ?> showConfigText('settings_backupDir', 'backupDir'); ?> @@ -837,4 +837,13 @@ if(is_writeable($settings->_configFilePath)) { $this->htmlEndPage(); } /* }}} */ } -?> + +/* + * Local variables: + * tab-width: 4 + * c-basic-offset: 4 + * indent-tabs-mode: t + * End: + * vim600: fdm=marker + * vim: noet sw=2 ts=2 + */