mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-18 21:34:35 -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
@@ -117,7 +117,7 @@ class FreshRSS_auth_Controller extends FreshRSS_ActionController {
|
||||
Minz_Session::_param('POST_to_GET');
|
||||
|
||||
if ($isPOST) {
|
||||
$nonce = Minz_Session::param('nonce');
|
||||
$nonce = Minz_Session::param('nonce', '');
|
||||
$username = Minz_Request::param('username', '');
|
||||
$challenge = Minz_Request::param('challenge', '');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user