Skip to content
Snippets Groups Projects
Unverified Commit b1957333 authored by Peter Rotich's avatar Peter Rotich Committed by GitHub
Browse files

Merge pull request #4589 from JediKev/issue/create_date-variable

issue: create_date Variable
parents 149f5735 962b4c66
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment