u
chenl
2018-12-10 2dfa8309210e3e8aae59e3d83ee6e73c8961995e
u
1 files modified
6 ■■■■ changed files
api/common/interface.func.php 6 ●●●● patch | view | raw | blame | history
api/common/interface.func.php
@@ -46,12 +46,12 @@
function checkSign($data,$sysKey)
{
    $str = "";
    foreach ($data as $key => $value)
    foreach ($data as $key => $value)
    {
        if ($key != "sign") {
            $str = $str.$key."=".$value."&";
            $str = $str.$key."=".str_replace("\\", "", $value)."&";
        }
    }
    }
    return $data["sign"] == md5($str."key=".$sysKey);
}