php8+ error
-
line 1831 (version 1.10.5 of wpDirAuth.php) throws an error. The order of the parameters in the implode call is reversed:
return sprintf($strMsg,$strUserID,$strSSOID,implode($arySiteMsgParts,', '),$strExtraMsg);
should bereturn sprintf($strMsg,$strUserID,$strSSOID,implode(', ',$arySiteMsgParts),$strExtraMsg);
I’ll try to patch it for everyone but it’s going to take a bit since it has been more than 3 years since I’ve used SVN. If someone has a good git/github –> svn connector, I’d happily use it.
The topic ‘php8+ error’ is closed to new replies.