Corrige la valeur de LC_TIME pour fr_FR
This commit is contained in:
parent
8d98882ca5
commit
8692a37d1d
@ -24,7 +24,7 @@
|
||||
|
||||
$conf = new Conf();
|
||||
$db = new DoliDb();
|
||||
$a = setlocale(LC_TIME, "FRENCH");
|
||||
$a = setlocale(LC_TIME, "fr_FR");
|
||||
$sql = "SELECT ".$db->pdate("f.datef")." as datef, s.nom, f.total, f.note, f.paye";
|
||||
$sql .= " FROM llx_facture_fourn as f, llx_societe as s";
|
||||
$sql .= " WHERE f.fk_soc = s.idp ORDER BY f.datef DESC";
|
||||
|
||||
@ -23,7 +23,7 @@
|
||||
|
||||
$conf = new Conf();
|
||||
$db = new DoliDb();
|
||||
$a = setlocale(LC_TIME, "FRENCH");
|
||||
$a = setlocale(LC_TIME, "fr_FR");
|
||||
$sql = "SELECT ".$db->pdate("d.datedon")." as datedon, d.nom, d.prenom, d.amount, d.public, d.societe";
|
||||
$sql .= " FROM llx_don as d";
|
||||
$sql .= " WHERE d.fk_don_projet = 1 AND d.fk_statut in (2, 3) ORDER BY d.datedon DESC";
|
||||
|
||||
@ -35,7 +35,7 @@
|
||||
|
||||
<tr id="date">
|
||||
<script language="php">
|
||||
$a = setlocale(LC_TIME, "FRENCH");
|
||||
$a = setlocale(LC_TIME, "fr_FR");
|
||||
print strftime("%d %B %Y", time());
|
||||
</script>
|
||||
</tr>
|
||||
|
||||
@ -72,7 +72,7 @@ if ($conf->don->enabled)
|
||||
|
||||
if ($ref_commande)
|
||||
{
|
||||
$a = setlocale(LC_TIME, "FRENCH");
|
||||
$a = setlocale(LC_TIME, "fr_FR");
|
||||
$date_limite = strftime("%A %d %B %Y",time() + (3 * 7 * 24 * 3600));
|
||||
|
||||
include ("mail.php");
|
||||
|
||||
@ -29,7 +29,7 @@
|
||||
|
||||
<tr id="date">
|
||||
<script language="php">
|
||||
$a = setlocale(LC_TIME, "FRENCH");
|
||||
$a = setlocale(LC_TIME, "fr_FR");
|
||||
print strftime("%d %B %Y", time());
|
||||
</script>
|
||||
</tr>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user