Please how do i correct this error

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Please how do i correct this error

    Please how do i correct the error on line 117 in the functions.php file of this document. https://www.libertyreserve.com/downl...asspay-2.1.zip , due to mhash being obsolete to hash

    #2
    replace
    Code:
    mhash(MHASH_SHA256, $authString)
    with
    Code:
    hash("sha256", $authString)

    Comment

    Working...
    X