diff options
| author | 2023-11-17 13:47:13 +0100 | |
|---|---|---|
| committer | 2023-11-17 13:47:13 +0100 | |
| commit | e70e5542e477e3cbcbde775cf7a7e7016c4c6c00 (patch) | |
| tree | a40098ad45f94ccef711e1ee2f309d47271f0eb8 /lib/Minz/Session.php | |
| parent | 30c7a61a9b410f023c56ef19b9389a61647d8768 (diff) | |
Fix Minz_Session::param visibility (#5889)
Regression from https://github.com/FreshRSS/FreshRSS/pull/5830
Diffstat (limited to 'lib/Minz/Session.php')
| -rw-r--r-- | lib/Minz/Session.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Minz/Session.php b/lib/Minz/Session.php index 4372c2683..4553d3083 100644 --- a/lib/Minz/Session.php +++ b/lib/Minz/Session.php @@ -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; } |
