mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-18 13:24:37 -04:00
Fix ctype_alnum (#4182)
* Fix ctype_alnum #fix https://github.com/FreshRSS/FreshRSS/issues/4180 Ensure `ctype_alnum()` gets a string * Changelog
This commit is contained in:
committed by
GitHub
parent
24afafb74d
commit
47e242aa77
@@ -538,7 +538,7 @@ class FreshRSS_user_Controller extends FreshRSS_ActionController {
|
||||
$ok = true;
|
||||
if ($self_deletion) {
|
||||
// We check the password if it’s a self-destruction
|
||||
$nonce = Minz_Session::param('nonce');
|
||||
$nonce = Minz_Session::param('nonce', '');
|
||||
$challenge = Minz_Request::param('challenge', '');
|
||||
|
||||
$ok &= FreshRSS_FormAuth::checkCredentials(
|
||||
|
||||
Reference in New Issue
Block a user