summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/principal/colasacciones.php
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2017-04-20 11:05:32 +0000
committerramon <ramongomez@us.es>2017-04-20 11:05:32 +0000
commit31ad04664ba58d8a75393c109b5f22b2dea0e253 (patch)
treeaef385314a3a57cd4ebd4ef8ecfca2e11d9fdc37 /admin/WebConsole/principal/colasacciones.php
parentd7352ab5fde6aad12e9094515354709cebeb93de (diff)
#730: Evitar errores en la BD cuando MySQL está configurado con el modo {{{NO_ZERO_DATE}}} (por defecto en MySQL 5.7 de Ubuntu 16.04).
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5272 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/principal/colasacciones.php')
-rw-r--r--admin/WebConsole/principal/colasacciones.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/WebConsole/principal/colasacciones.php b/admin/WebConsole/principal/colasacciones.php
index 7e9a2c97..98fdae8b 100644
--- a/admin/WebConsole/principal/colasacciones.php
+++ b/admin/WebConsole/principal/colasacciones.php
@@ -741,12 +741,12 @@ function escribeNotificacion($rs,$oA)
else{
/* Fechas y horas */
list($fecha,$hora)=split(" ",substr($rs->campos["fechahorafin"],0));
- if ($fecha=="0000-00-00") $hora="";
+ if ($fecha=="1970-01-01") $hora="";
$html.='<TD align=center>&nbsp;'.InvFecha($fecha).'&nbsp;</TD>';
$html.='<TD align=center>&nbsp;'.$hora.'&nbsp;</TD>';
list($fecha,$hora)=split(" ",substr($rs->campos["fechahorareg"],0));
- if ($fecha=="0000-00-00") $hora="";
+ if ($fecha=="1970-01-01") $hora="";
$html.='<TD align=center>&nbsp;'.InvFecha($fecha).'&nbsp;</TD>';
$html.='<TD align=center>&nbsp;'.$hora.'&nbsp;</TD>';
}