diff options
author | Mario <mario@mariovavti.com> | 2019-11-08 20:26:29 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-11-08 21:27:43 +0100 |
commit | 7b9a992f8398ea746d61c3a24372ba8044f32312 (patch) | |
tree | ffe343e4878f1d1912de8ee8e559a686b3b8fa8e /Zotlabs/Lib | |
parent | 4efb25867111d8d368265c7819cce8828e397a2e (diff) | |
download | volse-hubzilla-7b9a992f8398ea746d61c3a24372ba8044f32312.tar.gz volse-hubzilla-7b9a992f8398ea746d61c3a24372ba8044f32312.tar.bz2 volse-hubzilla-7b9a992f8398ea746d61c3a24372ba8044f32312.zip |
more fix date header format
(cherry picked from commit fa437b7977ba7fffd7368fa5c75e3d57fbf75424)
Diffstat (limited to 'Zotlabs/Lib')
-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)); |