From 1041830c200a14e49a0d23da4ccfe614e30555e5 Mon Sep 17 00:00:00 2001 From: Ruan Date: Sun, 5 Apr 2015 05:46:48 +0200 Subject: [PATCH] Change (Inactive) to (Expired) --- includes/settings.php | 2 +- warnings.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/settings.php b/includes/settings.php index b932e36..a98de69 100644 --- a/includes/settings.php +++ b/includes/settings.php @@ -13,7 +13,7 @@ $password = 'password'; // Database name $database = 'litebans'; -// Show inactive bans? Removed bans will show (Unbanned), mutes will show (Unmuted), warnings will show (Inactive). +// Show inactive bans? Removed bans will show (Unbanned), mutes will show (Unmuted), warnings will show (Expired). $show_inactive_bans = true; // Amount of bans/mutes/warnings to show on each page diff --git a/warnings.php b/warnings.php index d4f0b45..04667c7 100644 --- a/warnings.php +++ b/warnings.php @@ -46,7 +46,7 @@ $expiresResult = 'Permanent Warning'; } if ($row['active'] == 0) { - $expiresResult .= ' (Inactive)'; + $expiresResult .= ' (Expired)'; } echo $expiresResult; ?>