From a98f18bff1f169876dd5a6ad16ba8b635af2435d Mon Sep 17 00:00:00 2001
From: Robin <derrobin154@users.noreply.github.com>
Date: Mon, 23 Oct 2017 20:39:11 +0200
Subject: [PATCH] Update bans.php

Changed the Dateformat from xx-xx-xxxx to xx.xx.xxxx
---
 bans.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bans.php b/bans.php
index 1f4ffdc..7d30a0e 100644
--- a/bans.php
+++ b/bans.php
@@ -87,7 +87,7 @@ function getBanlist() {
             if ($duration == 0)
                 $expires = translate($lang["banlist"]["table"]["permaban"]);
             else
-                $expires = date('d-m-Y H:i:s', $expiresepoch);
+                $expires = date('d.m.Y H:i:s', $expiresepoch);
 
             $output .= "<tr><td>$user</td><td>$reason</td><td>$invokername</td><td data-order=\"$createdepoch\">$created</td><td data-order=\"$expiresepoch\">$expires</td></tr>";
         }