X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flocaltime.php;h=f68c3fba509600f621469f5be3a5b2c8b64dab0e;hb=41663c7592abe55a958632c3a48265e0a8544d2b;hp=fd1ef33a95ee2571e052659701a5ebd987f2dd6b;hpb=cea80c78e42ff059b1645c0449af2d624238f03c;p=friendica.git diff --git a/mod/localtime.php b/mod/localtime.php index fd1ef33a95..f68c3fba50 100644 --- a/mod/localtime.php +++ b/mod/localtime.php @@ -9,8 +9,6 @@ use Friendica\Core\System; use Friendica\Util\DateTimeFormat; use Friendica\Util\Temporal; -require_once 'include/datetime.php'; - function localtime_post(App $a) { $t = $_REQUEST['time']; @@ -32,7 +30,7 @@ function localtime_content(App $a) $t = 'now'; } - $o .= '

' . L10n::t('Time Conversion') . '

'; + $o = '

' . L10n::t('Time Conversion') . '

'; $o .= '

' . L10n::t('Friendica provides this service for sharing events with other networks and friends in unknown timezones.') . '

'; @@ -44,7 +42,7 @@ function localtime_content(App $a) $o .= '

' . L10n::t('Current timezone: %s', $_REQUEST['timezone']) . '

'; } - if (x($a->data, 'mod-localtime')) { + if (!empty($a->data['mod-localtime'])) { $o .= '

' . L10n::t('Converted localtime: %s', $a->data['mod-localtime']) . '

'; }