Change (Inactive) to (Expired)

This commit is contained in:
Ruan 2015-04-05 05:46:48 +02:00
parent 514f4045b2
commit 1041830c20
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -46,7 +46,7 @@
$expiresResult = 'Permanent Warning';
}
if ($row['active'] == 0) {
$expiresResult .= ' (Inactive)';
$expiresResult .= ' (Expired)';
}
echo $expiresResult;
?>