Merge remote-tracking branch 'origin/develop' into tbl2502
This commit is contained in:
@@ -37,7 +37,7 @@ require_once "includes/inc_all_admin.php";
|
|||||||
<th>
|
<th>
|
||||||
<div><i class="fas fa-fw fa-globe mr-2"></i>Domain Expiration Notice</div>
|
<div><i class="fas fa-fw fa-globe mr-2"></i>Domain Expiration Notice</div>
|
||||||
<small class="text-muted">
|
<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>
|
</small>
|
||||||
</th>
|
</th>
|
||||||
<td>
|
<td>
|
||||||
@@ -54,7 +54,7 @@ require_once "includes/inc_all_admin.php";
|
|||||||
<th>
|
<th>
|
||||||
<div><i class="fas fa-fw fa-lock mr-2"></i>Certificate Expiration Notice</div>
|
<div><i class="fas fa-fw fa-lock mr-2"></i>Certificate Expiration Notice</div>
|
||||||
<small class="text-muted">
|
<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>
|
</small>
|
||||||
</th>
|
</th>
|
||||||
<td>
|
<td>
|
||||||
@@ -67,7 +67,7 @@ require_once "includes/inc_all_admin.php";
|
|||||||
<th>
|
<th>
|
||||||
<div><i class="fas fa-fw fa-desktop mr-2"></i>Asset Warranty Expiration Notice</div>
|
<div><i class="fas fa-fw fa-desktop mr-2"></i>Asset Warranty Expiration Notice</div>
|
||||||
<small class="text-muted">
|
<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>
|
</small>
|
||||||
</th>
|
</th>
|
||||||
<td>
|
<td>
|
||||||
|
|||||||
@@ -179,7 +179,7 @@ if ($config_whitelabel_enabled && !validateWhitelabelKey($config_whitelabel_key)
|
|||||||
|
|
||||||
if ($config_enable_alert_domain_expire == 1) {
|
if ($config_enable_alert_domain_expire == 1) {
|
||||||
|
|
||||||
$domainAlertArray = [1,7,14,30,90];
|
$domainAlertArray = [1,7,45];
|
||||||
|
|
||||||
foreach ($domainAlertArray as $day) {
|
foreach ($domainAlertArray as $day) {
|
||||||
|
|
||||||
@@ -209,7 +209,7 @@ if ($config_enable_alert_domain_expire == 1) {
|
|||||||
|
|
||||||
// CERTIFICATES EXPIRING
|
// CERTIFICATES EXPIRING
|
||||||
|
|
||||||
$certificateAlertArray = [1,7,14,30,90];
|
$certificateAlertArray = [1,7,45];
|
||||||
|
|
||||||
foreach ($certificateAlertArray as $day) {
|
foreach ($certificateAlertArray as $day) {
|
||||||
|
|
||||||
@@ -239,7 +239,7 @@ foreach ($certificateAlertArray as $day) {
|
|||||||
|
|
||||||
// Asset Warranties Expiring
|
// Asset Warranties Expiring
|
||||||
|
|
||||||
$warranty_alert_array = [1,7,14,30,90];
|
$warranty_alert_array = [1,7,45];
|
||||||
|
|
||||||
foreach ($warranty_alert_array as $day) {
|
foreach ($warranty_alert_array as $day) {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user