Ignore:
Timestamp:
Jun 11, 2022 11:15:06 PM (2 years ago)
Author:
anonymous
Message:

Minor fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Utilities.inc.php

    r768 r770  
    13731373    } else {
    13741374        $app =& App::getInstance();
    1375         $app->logMsg(sprintf('Failed signature (%s should be %s)', $signed_val, addSignature($val, $salt, $length)), LOG_DEBUG, __FILE__, __LINE__);
     1375        // A signature mismatch might occur if the signing_key is not the same across all environments, apache, cli, etc.
     1376        $app->logMsg(sprintf('Failed signature (%s should be %s).', $signed_val, addSignature($val, $salt, $length)), LOG_DEBUG, __FILE__, __LINE__);
    13761377        return false;
    13771378    }
Note: See TracChangeset for help on using the changeset viewer.