diff options
author | Mario <mario@mariovavti.com> | 2019-11-08 20:12:06 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-11-08 21:13:58 +0100 |
commit | 75323588065ef2e4371473f29084f83bc85498ec (patch) | |
tree | 3c78c4d9a09714a670ebf4afdac0186fe0ef61d2 | |
parent | 13c05e7937d3e0fe033204daad57cf9c0d194078 (diff) | |
download | volse-hubzilla-75323588065ef2e4371473f29084f83bc85498ec.tar.gz volse-hubzilla-75323588065ef2e4371473f29084f83bc85498ec.tar.bz2 volse-hubzilla-75323588065ef2e4371473f29084f83bc85498ec.zip |
fix date header format
(cherry picked from commit bb11cd15d147ebbcc90b544788c9c2ef4925daa5)
-rw-r--r-- | Zotlabs/Lib/Activity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 2014d68af..e41e165b1 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -87,7 +87,7 @@ class Activity { $headers = [ 'Accept' => 'application/activity+json, application/ld+json; profile="https://www.w3.org/ns/activitystreams"', 'Host' => $m['host'], - 'Date' => datetime_convert('UTC','UTC', 'now', 'D, d M Y h:i:s \\G\\M\\T'), + 'Date' => datetime_convert('UTC','UTC', 'now', 'D, d M Y H:i:s \\G\\M\\T'), '(request-target)' => 'get ' . get_request_string($url) ]; if (isset($token)) { |