1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-23 23:20:57 +01:00

minor bugfix relating to auth when changing your own username

This commit is contained in:
Lorenzo Yario 2024-10-20 12:03:15 -07:00 committed by GitHub
parent c1307feeb5
commit 58f7302936
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,7 +10,7 @@ use Vichan\Functions\Net;
defined('TINYBOARD') or exit;
// create a hash/salt pair for validate logins
function mkhash(string $username, string $password, mixed $salt = false): array|string {
function mkhash(string $username, ?string $password, mixed $salt = false): array|string {
global $config;
if (!$salt) {