mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-15 18:20:20 +00:00
exchange strval with string cast
Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
parent
d6e0d8b87d
commit
7d46e12df7
1 changed files with 1 additions and 1 deletions
|
|
@ -189,7 +189,7 @@ readonly class DockerController {
|
||||||
|
|
||||||
$config = $this->configurationManager->GetConfig();
|
$config = $this->configurationManager->GetConfig();
|
||||||
// set AIO_URL
|
// set AIO_URL
|
||||||
$config['AIO_URL'] = $host . ':' . strval($port) . $path;
|
$config['AIO_URL'] = $host . ':' . (string)$port . $path;
|
||||||
// set wasStartButtonClicked
|
// set wasStartButtonClicked
|
||||||
$config['wasStartButtonClicked'] = 1;
|
$config['wasStartButtonClicked'] = 1;
|
||||||
// set install_latest_major
|
// set install_latest_major
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue