Skip to content
Snippets Groups Projects
Commit 6dcae5b7 authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

fix for php 8.2 compatibility

parent 53dc956c
No related branches found
No related tags found
1 merge request!26621 update to php82
......@@ -25,7 +25,7 @@ function _checkAuth($sMySecret, $iMaxAge=60){
$sGotReq=$_SERVER['REQUEST_URI'];
$sMyData="${sGotMethod}\n${sGotReq}\n${sGotDate}\n";
$sMyData="{$sGotMethod}\n{$sGotReq}\n{$sGotDate}\n";
$sMyHash= base64_encode(hash_hmac("sha1", $sMyData, $sMySecret));
_wd('Hash: '.$sGotHash.' -- from header');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment