Skip to content

Commit 5a8291d

Browse files
fix: use strict less-than in condition
1 parent 6a790ed commit 5a8291d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2208,7 +2208,7 @@ public function should_show_exceed_quota_warning() {
22082208
$timestamp_before_two_weeks = strtotime( '-2 weeks', $renews_on );
22092209
$today_timestamp = strtotime( 'today' );
22102210

2211-
if ( $timestamp_before_two_weeks <= $today_timestamp ) {
2211+
if ( $timestamp_before_two_weeks < $today_timestamp ) {
22122212
return false;
22132213
}
22142214

0 commit comments

Comments
 (0)