mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Add date only placeholders for timestamps: {{timestamp_placeholder/date}}
This commit is contained in:
parent
e09a9c3198
commit
195a3353d7
@ -870,6 +870,18 @@ abstract class bo_merge
|
||||
{
|
||||
$replacements = translation::convert($replacements,translation::charset(),$charset);
|
||||
}
|
||||
|
||||
// Date only placeholders for timestamps
|
||||
if(is_array($this->date_fields))
|
||||
{
|
||||
foreach($this->date_fields as $field)
|
||||
{
|
||||
if($value = $replacements['$$'.$field.'$$'])
|
||||
{
|
||||
$replacements['$$'.$field.'/date$$'] = egw_time::to($value,true);
|
||||
}
|
||||
}
|
||||
}
|
||||
if ($is_xml) // zip'ed xml document (eg. OO)
|
||||
{
|
||||
// Numeric fields
|
||||
|
Loading…
Reference in New Issue
Block a user