mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-04 04:49:16 +00:00
Update signature of handler 'csrf_ignore' to include types.
This commit is contained in:
@@ -5,7 +5,7 @@ class Pref_Feeds extends Handler_Protected {
|
||||
const E_ICON_UPLOAD_FAILED = 'E_ICON_UPLOAD_FAILED';
|
||||
const E_ICON_UPLOAD_SUCCESS = 'E_ICON_UPLOAD_SUCCESS';
|
||||
|
||||
function csrf_ignore($method) {
|
||||
function csrf_ignore(string $method): bool {
|
||||
$csrf_ignored = array("index", "getfeedtree", "savefeedorder");
|
||||
|
||||
return array_search($method, $csrf_ignored) !== false;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
class Pref_Filters extends Handler_Protected {
|
||||
|
||||
function csrf_ignore($method) {
|
||||
function csrf_ignore(string $method): bool {
|
||||
$csrf_ignored = array("index", "getfiltertree", "savefilterorder");
|
||||
|
||||
return array_search($method, $csrf_ignored) !== false;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
class Pref_Labels extends Handler_Protected {
|
||||
|
||||
function csrf_ignore($method) {
|
||||
function csrf_ignore(string $method): bool {
|
||||
$csrf_ignored = array("index", "getlabeltree");
|
||||
|
||||
return array_search($method, $csrf_ignored) !== false;
|
||||
|
||||
@@ -17,7 +17,7 @@ class Pref_Prefs extends Handler_Protected {
|
||||
const PI_ERR_PLUGIN_NOT_FOUND = "PI_ERR_PLUGIN_NOT_FOUND";
|
||||
const PI_ERR_NO_WORKDIR = "PI_ERR_NO_WORKDIR";
|
||||
|
||||
function csrf_ignore($method) {
|
||||
function csrf_ignore(string $method): bool {
|
||||
$csrf_ignored = array("index", "updateself", "otpqrcode");
|
||||
|
||||
return array_search($method, $csrf_ignored) !== false;
|
||||
|
||||
@@ -4,7 +4,7 @@ class Pref_System extends Handler_Administrative {
|
||||
|
||||
private $log_page_limit = 15;
|
||||
|
||||
function csrf_ignore($method) {
|
||||
function csrf_ignore(string $method): bool {
|
||||
$csrf_ignored = array("index");
|
||||
|
||||
return array_search($method, $csrf_ignored) !== false;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
class Pref_Users extends Handler_Administrative {
|
||||
function csrf_ignore($method) {
|
||||
function csrf_ignore(string $method): bool {
|
||||
return $method == "index";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user