diff options
author | Max Kostikov <max@kostikov.co> | 2019-11-08 21:35:06 +0100 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2019-11-08 21:35:06 +0100 |
commit | 163b1ee9f82985755f8e74fd144780ae08ce4030 (patch) | |
tree | ffe343e4878f1d1912de8ee8e559a686b3b8fa8e | |
parent | 4efb25867111d8d368265c7819cce8828e397a2e (diff) | |
parent | 7b9a992f8398ea746d61c3a24372ba8044f32312 (diff) | |
download | volse-hubzilla-163b1ee9f82985755f8e74fd144780ae08ce4030.tar.gz volse-hubzilla-163b1ee9f82985755f8e74fd144780ae08ce4030.tar.bz2 volse-hubzilla-163b1ee9f82985755f8e74fd144780ae08ce4030.zip |
Merge branch 'cherry-pick-fa437b79' into 'dev'
more fix date header format
See merge request hubzilla/core!1776
-rw-r--r-- | Zotlabs/Lib/LDSignatures.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/LDSignatures.php b/Zotlabs/Lib/LDSignatures.php index b13c4cf4a..16c8cfc18 100644 --- a/Zotlabs/Lib/LDSignatures.php +++ b/Zotlabs/Lib/LDSignatures.php @@ -30,7 +30,7 @@ class LDSignatures { 'type' => 'RsaSignature2017', 'nonce' => random_string(64), 'creator' => z_root() . '/channel/' . $channel['channel_address'], - 'created' => datetime_convert('UTC','UTC', 'now', 'Y-m-d\Th:i:s\Z') + 'created' => datetime_convert('UTC','UTC', 'now', 'Y-m-d\TH:i:s\Z') ]; $ohash = self::hash(self::signable_options($options)); |