diff --git a/modules/backend/behaviors/FormController.php b/modules/backend/behaviors/FormController.php index 3afaf2721..7eab913b8 100644 --- a/modules/backend/behaviors/FormController.php +++ b/modules/backend/behaviors/FormController.php @@ -389,6 +389,10 @@ class FormController extends ControllerBehavior if (post('close') && !ends_with($context, '-close')) { $context .= '-close'; } + + if (post('refresh', false)) { + return Redirect::refresh(); + } if (post('redirect', true)) { $redirectUrl = $this->getRedirectUrl($context);