diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-10-25 21:17:02 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-10-25 21:17:02 -0700 |
commit | a498fc8e72bd22dd0850bf2e8e75752724df8046 (patch) | |
tree | 9db1ad782d812bea01915733f92808b33388b99d /mod/item.php | |
parent | 7063b6cb6d36da2edd307237d6b69b7c2e6efdad (diff) | |
download | volse-hubzilla-a498fc8e72bd22dd0850bf2e8e75752724df8046.tar.gz volse-hubzilla-a498fc8e72bd22dd0850bf2e8e75752724df8046.tar.bz2 volse-hubzilla-a498fc8e72bd22dd0850bf2e8e75752724df8046.zip |
looks like there may be issues with the datetime picker if the local timezone isn't the same as your settings.
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/item.php b/mod/item.php index 32c417c56..4dcf8edd7 100644 --- a/mod/item.php +++ b/mod/item.php @@ -96,7 +96,7 @@ function item_post(&$a) { $owner_hash = null; $message_id = ((x($_REQUEST,'message_id') && $api_source) ? strip_tags($_REQUEST['message_id']) : ''); - $created = ((x($_REQUEST,'created')) ? datetime_convert('UTC','UTC',$_REQUEST['created']) : datetime_convert()); + $created = ((x($_REQUEST,'created')) ? datetime_convert(date_default_timezone_get(),'UTC',$_REQUEST['created']) : datetime_convert()); $post_id = ((x($_REQUEST,'post_id')) ? intval($_REQUEST['post_id']) : 0); $app = ((x($_REQUEST,'source')) ? strip_tags($_REQUEST['source']) : ''); $return_path = ((x($_REQUEST,'return')) ? $_REQUEST['return'] : ''); |