From 52e5c8b73938387a665dee9f4b909b7537e04dc8 Mon Sep 17 00:00:00 2001 From: Michael Hawkins Date: Wed, 31 Oct 2018 12:11:21 +0800 Subject: [PATCH 1/2] MDL-63816 privacy: Corrected interface get_users_in_context description --- privacy/classes/local/request/core_userlist_provider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/privacy/classes/local/request/core_userlist_provider.php b/privacy/classes/local/request/core_userlist_provider.php index e1b8e8fc242..735f03e64fb 100644 --- a/privacy/classes/local/request/core_userlist_provider.php +++ b/privacy/classes/local/request/core_userlist_provider.php @@ -36,7 +36,7 @@ defined('MOODLE_INTERNAL') || die(); interface core_userlist_provider { /** - * Get the list of contexts that contain user information for the specified user. + * Get the list of users who have data within a context. * * @param userlist $userlist The userlist containing the list of users who have data in this context/plugin combination. */ From b16a3388bb1e0d20dedf04992fb9e863fd9f4398 Mon Sep 17 00:00:00 2001 From: Michael Hawkins Date: Wed, 31 Oct 2018 12:13:30 +0800 Subject: [PATCH 2/2] MDL-63816 privacy: Corrected provider get_users_in_context descriptions --- grade/grading/classes/privacy/provider.php | 2 +- group/classes/privacy/provider.php | 2 +- mod/assign/classes/privacy/provider.php | 2 +- mod/assignment/classes/privacy/provider.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/grade/grading/classes/privacy/provider.php b/grade/grading/classes/privacy/provider.php index 95b62672848..54eb9ede458 100644 --- a/grade/grading/classes/privacy/provider.php +++ b/grade/grading/classes/privacy/provider.php @@ -110,7 +110,7 @@ class provider implements } /** - * Get the list of contexts that contain user information for the specified user. + * Get the list of users who have data within a context. * * @param userlist $userlist The userlist containing the list of users who have data in this context/plugin combination. */ diff --git a/group/classes/privacy/provider.php b/group/classes/privacy/provider.php index 9102d10a8f6..ee2344dc879 100644 --- a/group/classes/privacy/provider.php +++ b/group/classes/privacy/provider.php @@ -306,7 +306,7 @@ class provider implements } /** - * Get the list of contexts that contain user information for the specified user. + * Get the list of users who have data within a context. * * @param userlist $userlist The userlist containing the list of users who have data in this context/plugin combination. */ diff --git a/mod/assign/classes/privacy/provider.php b/mod/assign/classes/privacy/provider.php index fc0e0ab8b6f..8181f354780 100644 --- a/mod/assign/classes/privacy/provider.php +++ b/mod/assign/classes/privacy/provider.php @@ -202,7 +202,7 @@ class provider implements } /** - * Get the list of contexts that contain user information for the specified user. + * Get the list of users who have data within a context. * * @param userlist $userlist The userlist containing the list of users who have data in this context/plugin combination. */ diff --git a/mod/assignment/classes/privacy/provider.php b/mod/assignment/classes/privacy/provider.php index 9fbfa1e5b9b..79abc808c35 100644 --- a/mod/assignment/classes/privacy/provider.php +++ b/mod/assignment/classes/privacy/provider.php @@ -116,7 +116,7 @@ class provider implements } /** - * Get the list of contexts that contain user information for the specified user. + * Get the list of users who have data within a context. * * @param userlist $userlist The userlist containing the list of users who have data in this context/plugin combination. */