mirror of https://github.com/itflow-org/itflow
In-App alerts are spawned 1,7 and 45 days instead of 1,7,14,30 and 90
This commit is contained in:
parent
6cc6e80f92
commit
f28c1ce398
|
|
@ -37,7 +37,7 @@ require_once "includes/inc_all_admin.php";
|
|||
<th>
|
||||
<div><i class="fas fa-fw fa-globe mr-2"></i>Domain Expiration Notice</div>
|
||||
<small class="text-muted">
|
||||
(This setting triggers a notification when a domain is approaching its expiration date, specifically at 1, 7, 14, 30 and 90 days prior to expiry.)
|
||||
(This setting triggers a notification when a domain is approaching its expiration date, specifically at 1, 7 and 45 days prior to expiry.)
|
||||
</small>
|
||||
</th>
|
||||
<td>
|
||||
|
|
@ -54,7 +54,7 @@ require_once "includes/inc_all_admin.php";
|
|||
<th>
|
||||
<div><i class="fas fa-fw fa-lock mr-2"></i>Certificate Expiration Notice</div>
|
||||
<small class="text-muted">
|
||||
(This setting triggers a notification when a certificate is approaching its expiration date, specifically at 1, 7, 14, 30 and 90 days prior to expiry.)
|
||||
(This setting triggers a notification when a certificate is approaching its expiration date, specifically at 1, 7 and 45 days prior to expiry.)
|
||||
</small>
|
||||
</th>
|
||||
<td>
|
||||
|
|
@ -67,7 +67,7 @@ require_once "includes/inc_all_admin.php";
|
|||
<th>
|
||||
<div><i class="fas fa-fw fa-desktop mr-2"></i>Asset Warranty Expiration Notice</div>
|
||||
<small class="text-muted">
|
||||
(This setting triggers a notification when an asset is approaching its expiration date, specifically at 1, 7, 14, 30 and 90 days prior to expiry.)
|
||||
(This setting triggers a notification when an asset is approaching its expiration date, specifically at 1, 7 and 45 days prior to expiry.)
|
||||
</small>
|
||||
</th>
|
||||
<td>
|
||||
|
|
|
|||
|
|
@ -179,7 +179,7 @@ if ($config_whitelabel_enabled && !validateWhitelabelKey($config_whitelabel_key)
|
|||
|
||||
if ($config_enable_alert_domain_expire == 1) {
|
||||
|
||||
$domainAlertArray = [1,7,14,30,90];
|
||||
$domainAlertArray = [1,7,45];
|
||||
|
||||
foreach ($domainAlertArray as $day) {
|
||||
|
||||
|
|
@ -209,7 +209,7 @@ if ($config_enable_alert_domain_expire == 1) {
|
|||
|
||||
// CERTIFICATES EXPIRING
|
||||
|
||||
$certificateAlertArray = [1,7,14,30,90];
|
||||
$certificateAlertArray = [1,7,45];
|
||||
|
||||
foreach ($certificateAlertArray as $day) {
|
||||
|
||||
|
|
@ -239,7 +239,7 @@ foreach ($certificateAlertArray as $day) {
|
|||
|
||||
// Asset Warranties Expiring
|
||||
|
||||
$warranty_alert_array = [1,7,14,30,90];
|
||||
$warranty_alert_array = [1,7,45];
|
||||
|
||||
foreach ($warranty_alert_array as $day) {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue