set placeholder of baseUrl to getBaseUrl()

This commit is contained in:
Uwe Steinmann 2024-09-07 19:26:44 +02:00
parent 74af17c020
commit 62ce0e7440

View File

@ -462,7 +462,7 @@ if(($kkk = $this->callHook('getFullSearchEngine')) && is_array($kkk))
--> -->
<?php $this->showConfigHeadline('settings_Server'); ?> <?php $this->showConfigHeadline('settings_Server'); ?>
<?php $this->showConfigText('settings_rootDir', 'rootDir'); ?> <?php $this->showConfigText('settings_rootDir', 'rootDir'); ?>
<?php $this->showConfigText('settings_baseUrl', 'baseUrl'); ?> <?php $this->showConfigText('settings_baseUrl', 'baseUrl', '', getBaseUrl()); ?>
<?php $this->showConfigText('settings_httpRoot', 'httpRoot'); ?> <?php $this->showConfigText('settings_httpRoot', 'httpRoot'); ?>
<?php $this->showConfigText('settings_contentDir', 'contentDir'); ?> <?php $this->showConfigText('settings_contentDir', 'contentDir'); ?>
<?php $this->showConfigText('settings_backupDir', 'backupDir'); ?> <?php $this->showConfigText('settings_backupDir', 'backupDir'); ?>
@ -837,4 +837,13 @@ if(is_writeable($settings->_configFilePath)) {
$this->htmlEndPage(); $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
*/