X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flocaltime.php;h=535308903153af6d3cf81ef4d310ccc8705034db;hb=7e846ba7acf2cf452f4250d42105ba24d429f67e;hp=c03eae1b0e490d0246647933d68357a1e0a83658;hpb=273594af62c960b5a52da5ec1cf6d6bd450415ba;p=friendica.git diff --git a/mod/localtime.php b/mod/localtime.php index c03eae1b0e..5353089031 100644 --- a/mod/localtime.php +++ b/mod/localtime.php @@ -3,7 +3,7 @@ require_once('include/datetime.php'); -function localtime_post(&$a) { +function localtime_post(App $a) { $t = $_REQUEST['time']; if(! $t) @@ -16,14 +16,14 @@ function localtime_post(&$a) { } -function localtime_content(&$a) { +function localtime_content(App $a) { $t = $_REQUEST['time']; if(! $t) $t = 'now'; $o .= '

' . t('Time Conversion') . '

'; - $o .= '

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

'; + $o .= '

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

'; @@ -36,9 +36,9 @@ function localtime_content(&$a) { $o .= '

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

'; - $o .= '
'; + $o .= ''; - $o .= '

' . t('Please select your timezone:') . '

'; + $o .= '

' . t('Please select your timezone:') . '

'; $o .= select_timezone(($_REQUEST['timezone']) ? $_REQUEST['timezone'] : 'America/Los_Angeles');