In email processing, change sitesecret (non existant) to (already used) siteidentifier

This commit is contained in:
mjollnir_
2005-02-10 07:53:52 +00:00
parent 915602ea79
commit 303d0af144
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ $mod = substr($address,4,2);
$modargs = substr($address,6,-16);
$hash = substr($address,-16);
if (substr(md5($prefix.$mod.$modargs.$CFG->sitesecret),0,16) != $hash) {
if (substr(md5($prefix.$mod.$modargs.$CFG->siteidentifier),0,16) != $hash) {
die("HASH DIDN'T MATCH!\n");
}
list(,$modid) = unpack('C',base64_decode($mod.'=='));