From 529e336c1ee53c13584b71bedc8eccae498b2018 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Wed, 14 Oct 2009 02:30:51 +0000 Subject: [PATCH] Add set_user_role action hook. props jamescollins, usermrpapa. fixes #10716 git-svn-id: https://develop.svn.wordpress.org/trunk@12028 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/capabilities.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/capabilities.php b/wp-includes/capabilities.php index 10ac24000d..c461e926fc 100644 --- a/wp-includes/capabilities.php +++ b/wp-includes/capabilities.php @@ -605,6 +605,7 @@ class WP_User { update_usermeta( $this->ID, $this->cap_key, $this->caps ); $this->get_role_caps(); $this->update_user_level_from_caps(); + do_action( 'set_user_role', $this->ID, $role ); } /**