mirror of
https://github.com/friendica/friendica
synced 2024-11-18 17:03:41 +00:00
Display the current timezone in date time picker fields
This commit is contained in:
parent
a9bb53b021
commit
a31a64827f
1 changed files with 6 additions and 2 deletions
|
@ -271,7 +271,11 @@ class Temporal
|
|||
$id,
|
||||
$label,
|
||||
$input_text,
|
||||
'',
|
||||
DI::l10n()->t(
|
||||
'Time zone: <strong>%s</strong> <a href="%s">Change in Settings</a>',
|
||||
str_replace('_', ' ', DI::app()->getTimeZone()) . ' (GMT ' . DateTimeFormat::localNow('P') . ')',
|
||||
DI::baseUrl() . '/settings'
|
||||
),
|
||||
$required ? '*' : '',
|
||||
'placeholder="' . $readable_format . '"'
|
||||
],
|
||||
|
@ -284,7 +288,7 @@ class Temporal
|
|||
'lang' => $lang,
|
||||
'minfrom' => $minfrom,
|
||||
'maxfrom' => $maxfrom,
|
||||
]
|
||||
],
|
||||
]);
|
||||
|
||||
return $o;
|
||||
|
|
Loading…
Reference in a new issue