Skip to content

Commit

Permalink
changed null to 9999-12-31 23:59:59
Browse files Browse the repository at this point in the history
  • Loading branch information
zigazajc007 committed Jan 9, 2021
1 parent d96a161 commit 32ec0b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
<td><?php if($heads_link != null){ ?><img src="<?php echo str_replace("{uuid}", $from_uuid['id'], $heads_link); ?>" /><?php } echo " " . $row['username_from']; ?></td>
<td><?php if($row['reason'] != null) echo chatColor($row['reason']); ?></td>
<td><?php echo $row['created']; ?></td>
<td><?php if($row['until'] == null){ echo 'Never'; }else{ echo $row['until']; } ?></td>
<td><?php if($row['until'] == '9999-12-31 23:59:59'){ echo 'Never'; }else{ echo $row['until']; } ?></td>
<td><?php if($row['server'] != ""){ echo $row['server']; }else{ echo "-"; } ?></td>
</tr>
<?php
Expand Down

0 comments on commit 32ec0b5

Please sign in to comment.