]> git.mxchange.org Git - friendica.git/blobdiff - mod/localtime.php
Merge pull request #2158 from annando/1512-vier-fonts
[friendica.git] / mod / localtime.php
index f5ecf3a961bb00b9fbb8b107e27d947099daebbd..d1453bc5272bd3cf2aa5ad8017853c75fdc44a85 100644 (file)
@@ -23,19 +23,24 @@ function localtime_content(&$a) {
 
        $o .= '<h3>' . t('Time Conversion') . '</h3>';
 
-       $o .= '<p>' . t('Friendika provides this service for sharing events with other networks and friends in unknown timezones.') . '</p>';
+       $o .= '<p>' . t('Friendica provides this service for sharing events with other networks and friends in unknown timezones.') . '</p>';
 
 
+
+       $o .= '<p>' . sprintf( t('UTC time: %s'), $t) . '</p>';
+
+       if($_REQUEST['timezone'])
+               $o .= '<p>' . sprintf( t('Current timezone: %s'), $_REQUEST['timezone']) . '</p>';
+
        if(x($a->data,'mod-localtime'))
                $o .= '<p>' . sprintf( t('Converted localtime: %s'),$a->data['mod-localtime']) . '</p>';
 
-       $o .= '<p>' . sprintf( t('UTC time: %s'), $t) . '</p>';
 
        $o .= '<form action ="' . $a->get_baseurl() . '/localtime?f=&time=' . $t . '" method="post" >';
 
        $o .= '<p>' . t('Please select your timezone:') . '</p>'; 
 
-       $o .= select_timezone();
+       $o .= select_timezone(($_REQUEST['timezone']) ? $_REQUEST['timezone'] : 'America/Los_Angeles');
 
        $o .= '<input type="submit" name="submit" value="' . t('Submit') . '" /></form>';