diff --git a/datetimeOperations.php b/datetimeOperations.php index dc31e0f..8e8d877 100644 --- a/datetimeOperations.php +++ b/datetimeOperations.php @@ -16,7 +16,7 @@ $daysFull = array( 4 => "Jeudi", 5 => "Vendredi", 6 => "Samedi", - 7 => "Dimamche" + 7 => "Dimanche" ); $months = array( @@ -44,7 +44,7 @@ $months = array( function printableHour($datetime) { $hour = date('G', $datetime); - $minutes = date('I', $datetime); + $minutes = date('i', $datetime); $ret = $hour.'h'; if($minutes != '00') diff --git a/index.php b/index.php index b4003ca..466b0ee 100644 --- a/index.php +++ b/index.php @@ -53,7 +53,7 @@ function categoriesOK($session, $categories)
-
+