diff --git a/include/class.format.php b/include/class.format.php index 399feaf0ac4fd9144a96c141f139d1d0743a4c87..216cb6e630ea42be0d8ca88bdca19a372c33b182 100644 --- a/include/class.format.php +++ b/include/class.format.php @@ -1017,11 +1017,11 @@ implements TemplateVariable { case 'short': return Format::date($this->date, $this->fromdb, false, $this->timezone, $this->user); case 'long': - return Format::datetime($this->date, $this->fromdb, $this->timezone, $this->user); + return Format::datetime($this->date, $this->fromdb, false, $this->timezone, $this->user); case 'time': return Format::time($this->date, $this->fromdb, false, $this->timezone, $this->user); case 'full': - return Format::daydatetime($this->date, $this->fromdb, $this->timezone, $this->user); + return Format::daydatetime($this->date, $this->fromdb, false, $this->timezone, $this->user); } }