Skip to content

Commit

Permalink
Fix bootstrap label colors for "Permanent" tag
Browse files Browse the repository at this point in the history
  • Loading branch information
frdmn committed Sep 1, 2015
1 parent 044e3bf commit 2e182b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/searchip.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
$expireTime = ($player['expires'] + $mysqlSecs)- $timeNow;

if($player['expires'] == 0)
$expires = '<span class="label label-important">Permanent</span>';
$expires = '<span class="label label-danger">Permanent</span>';
else if(isset($expireTime) && $expireTime > 0) {
$expires = '<span class="label label-warning">'.secs_to_hmini($expireTime).'</span>';
} else
Expand Down

0 comments on commit 2e182b2

Please sign in to comment.