aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2019-11-08 21:26:54 +0100
committerMax Kostikov <max@kostikov.co>2019-11-08 21:26:54 +0100
commit4efb25867111d8d368265c7819cce8828e397a2e (patch)
tree3c78c4d9a09714a670ebf4afdac0186fe0ef61d2
parent13c05e7937d3e0fe033204daad57cf9c0d194078 (diff)
parent75323588065ef2e4371473f29084f83bc85498ec (diff)
downloadvolse-hubzilla-4efb25867111d8d368265c7819cce8828e397a2e.tar.gz
volse-hubzilla-4efb25867111d8d368265c7819cce8828e397a2e.tar.bz2
volse-hubzilla-4efb25867111d8d368265c7819cce8828e397a2e.zip
Merge branch 'cherry-pick-bb11cd15' into 'dev'
fix date header format See merge request hubzilla/core!1775
-rw-r--r--Zotlabs/Lib/Activity.php2
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)) {