From a7db22c447d2f266b0922b121f9d01d597976cb8 Mon Sep 17 00:00:00 2001 From: Sergey Konovalov Date: Wed, 4 Dec 2024 19:58:40 +0300 Subject: [PATCH] [bug] Fix bug 71491 --- branding/info/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/branding/info/index.html b/branding/info/index.html index da189225..bcee645c 100644 --- a/branding/info/index.html +++ b/branding/info/index.html @@ -330,7 +330,7 @@ var licdateStart = new Date(licenseInfo.startDate); elem = document.getElementById('lic-start'); elem.innerText = licdateStart.toLocaleDateString(); - if (16 === licType || licdateStart > new Date()) { + if (16 === licType || licdateStart > new Date(serverInfo.date)) { elem.classList.add('critical'); } }