From: Alexander Ebert Date: Sat, 8 Jun 2013 21:38:45 +0000 (+0200) Subject: Fixed user group cache not properly reseted on edit X-Git-Tag: 2.0.0_Beta_4~95 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=dd30d5761e782c461f77e575665167f967af5a3b;p=GitHub%2FWoltLab%2FWCF.git Fixed user group cache not properly reseted on edit --- diff --git a/wcfsetup/install/files/lib/acp/form/UserGroupEditForm.class.php b/wcfsetup/install/files/lib/acp/form/UserGroupEditForm.class.php index 610b4ea9c6..a0993b4594 100755 --- a/wcfsetup/install/files/lib/acp/form/UserGroupEditForm.class.php +++ b/wcfsetup/install/files/lib/acp/form/UserGroupEditForm.class.php @@ -13,7 +13,7 @@ use wcf\system\WCF; * Shows the group edit form. * * @author Marcel Werk - * @copyright 2001-2012 WoltLab GmbH + * @copyright 2001-2013 WoltLab GmbH * @license GNU Lesser General Public License * @package com.woltlab.wcf * @subpackage acp.form @@ -165,6 +165,9 @@ class UserGroupEditForm extends UserGroupAddForm { $this->objectAction->executeAction(); $this->saved(); + // reset user group cache + UserGroupEditor::resetCache(); + // show success message WCF::getTPL()->assign('success', true); }