mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-20 23:33:27 -04:00
Fix Minz_Session::param visibility (#5889)
Regression from https://github.com/FreshRSS/FreshRSS/pull/5830
This commit is contained in:
committed by
GitHub
parent
30c7a61a9b
commit
e70e5542e4
@@ -63,7 +63,7 @@ class Minz_Session {
|
||||
* @return mixed|false the value of the session variable, false if doesn’t exist
|
||||
* @deprecated Use typed versions instead
|
||||
*/
|
||||
private static function param(string $p, $default = false) {
|
||||
public static function param(string $p, $default = false) {
|
||||
return $_SESSION[$p] ?? $default;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user