diff options
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r-- | phpBB/includes/functions_user.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index 9a304faba3..cd48a3d38e 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -2270,7 +2270,8 @@ function group_delete($group_id, $group_name = false) add_log('admin', 'LOG_GROUP_DELETE', $group_name); - return 'GROUP_DELETED'; + // Return false - no error + return false; } /** |