From e6bcda260d6faffa5a2475a1e21c7f73d7703d71 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 12 Aug 2014 10:42:28 +0200 Subject: [PATCH] Redirect after a new resource has been created successfully refs #5525 --- application/controllers/ConfigController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/controllers/ConfigController.php b/application/controllers/ConfigController.php index 6358bb42d..0a699ca99 100644 --- a/application/controllers/ConfigController.php +++ b/application/controllers/ConfigController.php @@ -425,6 +425,7 @@ class ConfigController extends BaseConfigController $resources[$name] = $config; if ($this->writeConfigFile($resources, 'resources')) { $this->addSuccessMessage(sprintf($this->translate('Resource "%s" successfully created.'), $name)); + $this->redirectNow('config/resource'); } } }