diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/user/user.module | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 0c2839796..47ac64273 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -823,7 +823,12 @@ function user_access($string, $account = NULL) { /** * Checks for usernames blocked by user administration. * - * @return boolean TRUE for blocked users, FALSE for active. + * @param $name + * A string containing a name of the user. + * + * @return + * Object with property 'name' (the user name), if the user is blocked; + * FALSE if the user is not blocked. */ function user_is_blocked($name) { return db_select('users') |