partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 27a647732898ea41bc220dab4452208aac92326f
parent c2b0bf22514eaad5189f4f5eec2c209226149094
Author: Felicitus <felicitus@felicitus.org>
Date:   Mon, 16 Nov 2015 23:30:53 +0100

Fixed test for existing configuration

Diffstat:
Msrc/PartKeepr/SetupBundle/Controller/ExistingConfigParserController.php | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/PartKeepr/SetupBundle/Controller/ExistingConfigParserController.php b/src/PartKeepr/SetupBundle/Controller/ExistingConfigParserController.php @@ -38,9 +38,9 @@ class ExistingConfigParserController extends SetupController if (count($response["config"]) == 0) { $response["message"] = "No configuration found"; - $response["config"]["existingConfig"] = false; + $response["existingConfig"] = false; } else { - $response["config"]["existingConfig"] = true; + $response["existingConfig"] = true; } } catch (\Exception $e) {