From 600480b266435cd9ffce3c646ef8d3bfeda601d3 Mon Sep 17 00:00:00 2001 From: tobiasKaminsky Date: Thu, 27 Jun 2024 10:55:27 +0200 Subject: [PATCH] use correct variables Signed-off-by: tobiasKaminsky --- config/config.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/config/config.php b/config/config.php index 4c1a739..9609d87 100644 --- a/config/config.php +++ b/config/config.php @@ -128,21 +128,21 @@ ], 'daily' => [ 'linux' => [ - 'version' => $linuxDailyReleaseDate, - 'versionstring' => "Nextcloud Daily " . $linuxDailyReleaseDate, - 'downloadurl' => $dailyUrl . 'linux/linux-' . $linuxDailyReleaseDate . '.AppImage', + 'version' => $dailyReleaseDateLinux, + 'versionstring' => "Nextcloud Daily " . $dailyReleaseDateLinux, + 'downloadurl' => $dailyUrl . 'linux/linux-' . $dailyReleaseDateLinux . '.AppImage', 'web' => 'https://nextcloud.com/install', ], 'win32' => [ - 'version' => $windowsDailyReleaseDate, - 'versionstring' => "Nextcloud Daily " . $windowsDailyReleaseDate, - 'downloadurl' => $dailyUrl . 'windows/windows-' . $windowsDailyReleaseDate . '.msi', + 'version' => $dailyReleaseDateWindows, + 'versionstring' => "Nextcloud Daily " . $dailyReleaseDateWindows, + 'downloadurl' => $dailyUrl . 'windows/windows-' . $dailyReleaseDateWindows . '.msi', 'web' => 'https://nextcloud.com/install', ], 'macos' => [ - 'version' => $macosDailyReleaseDate, - 'versionstring' => "Nextcloud Daily " . $macosDailyReleaseDate, - 'downloadurl' => $dailyUrl . 'macos/macos-' . $macosDailyReleaseDate . '.pkg', + 'version' => $dailyReleaseDateMacos, + 'versionstring' => "Nextcloud Daily " . $dailyReleaseDateMacos, + 'downloadurl' => $dailyUrl . 'macos/macos-' . $dailyReleaseDateMacos . '.pkg', 'web' => 'https://nextcloud.com/install', ], ]