Skip to content

Commit

Permalink
Merge pull request #3887 from nextcloud/enh/noid/allow-28
Browse files Browse the repository at this point in the history
  • Loading branch information
szaimen authored Dec 6, 2023
2 parents 174438d + addf019 commit bc167fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion php/src/Controller/DockerController.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public function StartContainer(Request $request, Response $response, array $args
}

if (isset($request->getParsedBody()['install_latest_major'])) {
$installLatestMajor = 27;
$installLatestMajor = 28;
} else {
$installLatestMajor = "";
}
Expand Down
2 changes: 1 addition & 1 deletion php/templates/containers.twig
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
{% set isBackupOrRestoreRunning = false %}
{% set isApacheStarting = false %}
{# Setting newMajorVersion to '' will hide corresponding options/elements, can be set to an integer like 26 in order to show corresponding elements. If set, also increase installLatestMajor in https://github.com/nextcloud/all-in-one/blob/main/php/src/Controller/DockerController.php #}
{% set newMajorVersion = '' %}
{% set newMajorVersion = 28 %}

{% if is_backup_container_running == true %}
{% if borg_backup_mode == 'backup' or borg_backup_mode == 'restore' %}
Expand Down

0 comments on commit bc167fc

Please sign in to comment.