aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/cron/task/parametrized.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/cron/task/parametrized.php')
-rw-r--r--phpBB/includes/cron/task/parametrized.php12
1 files changed, 5 insertions, 7 deletions
diff --git a/phpBB/includes/cron/task/parametrized.php b/phpBB/includes/cron/task/parametrized.php
index d505cc3328..a9481250e1 100644
--- a/phpBB/includes/cron/task/parametrized.php
+++ b/phpBB/includes/cron/task/parametrized.php
@@ -37,13 +37,11 @@ interface phpbb_cron_task_parametrized extends phpbb_cron_task
public function get_parameters();
/**
- * Parses parameters found in $params, which is an array.
+ * Parses parameters found in $request, which is an instance of
+ * phpbb_request_interface.
*
- * $params contains user input and must not be trusted.
- * In normal operation $params contains the same data that was returned by
- * get_parameters method. However, a malicious user can supply arbitrary
- * data in $params.
- * Cron task must validate all keys and values in $params before using them.
+ * $request contains user input and must not be trusted.
+ * Cron task must validate all data before using it.
*/
- public function parse_parameters($params);
+ public function parse_parameters(phpbb_request_interface $request);
} \ No newline at end of file