aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-09-14 19:53:13 -0700
committerFriendika <info@friendika.com>2011-09-14 19:53:13 -0700
commit58b2bb58486a79e6725db8ed6153d8f4ab08cf21 (patch)
tree283726ecf6bb5f21e45d160f4fcd3aeeb35d86b0 /mod
parent93c235a912aa4d413dd00e636c211fe53b5c1553 (diff)
downloadvolse-hubzilla-58b2bb58486a79e6725db8ed6153d8f4ab08cf21.tar.gz
volse-hubzilla-58b2bb58486a79e6725db8ed6153d8f4ab08cf21.tar.bz2
volse-hubzilla-58b2bb58486a79e6725db8ed6153d8f4ab08cf21.zip
localtime cleanup
Diffstat (limited to 'mod')
-rw-r--r--mod/localtime.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/mod/localtime.php b/mod/localtime.php
index f5ecf3a96..c03eae1b0 100644
--- a/mod/localtime.php
+++ b/mod/localtime.php
@@ -26,16 +26,21 @@ function localtime_content(&$a) {
$o .= '<p>' . t('Friendika 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>';