diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-07-04 14:41:46 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-07-04 14:41:46 -0400 |
commit | 34576a1f81d50a44064567469eb1406a028c92a7 (patch) | |
tree | 58cdb07d5a7763a22af583c98fe9cedaa2561285 /engine/lib | |
parent | 9b975ab04da582b801f97645d5a460f924a63b26 (diff) | |
download | elgg-34576a1f81d50a44064567469eb1406a028c92a7.tar.gz elgg-34576a1f81d50a44064567469eb1406a028c92a7.tar.bz2 |
stop double encoding the ban reason
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/users.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/engine/lib/users.php b/engine/lib/users.php index 241b524f9..527eff3cd 100644 --- a/engine/lib/users.php +++ b/engine/lib/users.php @@ -136,7 +136,6 @@ function ban_user($user_guid, $reason = "") { global $CONFIG; $user_guid = (int)$user_guid; - $reason = sanitise_string($reason); $user = get_entity($user_guid); |