summaryrefslogtreecommitdiff
path: root/classes/pref
diff options
context:
space:
mode:
authorwn_ <[email protected]>2021-11-12 02:01:31 +0000
committerwn_ <[email protected]>2021-11-12 02:01:31 +0000
commit5606e38bff619c388c9621dde30f0d54127a21f4 (patch)
tree1841d1057ac1b05df9b8854696042ecae1124056 /classes/pref
parent57bf56f7945b639d0e39f4c7ad9da161a4a18888 (diff)
Update signature of handler 'csrf_ignore' to include types.
Diffstat (limited to 'classes/pref')
-rwxr-xr-xclasses/pref/feeds.php2
-rwxr-xr-xclasses/pref/filters.php2
-rw-r--r--classes/pref/labels.php2
-rw-r--r--classes/pref/prefs.php2
-rw-r--r--classes/pref/system.php2
-rw-r--r--classes/pref/users.php2
6 files changed, 6 insertions, 6 deletions
diff --git a/classes/pref/feeds.php b/classes/pref/feeds.php
index ac0874259..ce1a53bef 100755
--- a/classes/pref/feeds.php
+++ b/classes/pref/feeds.php
@@ -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;
diff --git a/classes/pref/filters.php b/classes/pref/filters.php
index c4017e4ec..8bc32939d 100755
--- a/classes/pref/filters.php
+++ b/classes/pref/filters.php
@@ -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;
diff --git a/classes/pref/labels.php b/classes/pref/labels.php
index 0eb88ea36..81b85481b 100644
--- a/classes/pref/labels.php
+++ b/classes/pref/labels.php
@@ -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;
diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php
index c45d6d6ea..3a39bf981 100644
--- a/classes/pref/prefs.php
+++ b/classes/pref/prefs.php
@@ -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;
diff --git a/classes/pref/system.php b/classes/pref/system.php
index 8bebcc7ce..356adee0c 100644
--- a/classes/pref/system.php
+++ b/classes/pref/system.php
@@ -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;
diff --git a/classes/pref/users.php b/classes/pref/users.php
index aeba296b2..3c952b11b 100644
--- a/classes/pref/users.php
+++ b/classes/pref/users.php
@@ -1,6 +1,6 @@
<?php
class Pref_Users extends Handler_Administrative {
- function csrf_ignore($method) {
+ function csrf_ignore(string $method): bool {
return $method == "index";
}