Browse Source

Merge remote-tracking branch 'origin/master'

master
n0m1s 10 years ago
parent
commit
9e8b0f0e95
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      datetimeOperations.php
  2. +1
    -1
      index.php

+ 2
- 2
datetimeOperations.php View File

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


+ 1
- 1
index.php View File

@ -53,7 +53,7 @@ function categoriesOK($session, $categories)
</div>
</a>
<div id="container">
<form method="post" id="form-categories" action="./update-categories.php">
<form method="post" id="form-categories" action="./updateCategories.php">
<?php
for($tab = 0; $tab < 2; ++$tab)
{


Loading…
Cancel
Save