From d007792f3ab14bfde7c988106808b8602b0b28fb Mon Sep 17 00:00:00 2001 From: Mike Koch Date: Thu, 12 Oct 2017 13:10:01 -0400 Subject: [PATCH] Remove var_dump --- install/ajax/process-migration.php | 1 - 1 file changed, 1 deletion(-) diff --git a/install/ajax/process-migration.php b/install/ajax/process-migration.php index c87ab9fd..7347bde3 100644 --- a/install/ajax/process-migration.php +++ b/install/ajax/process-migration.php @@ -11,7 +11,6 @@ require(HESK_PATH . 'install/migrations/core.php'); $allMigrations = getAllMigrations(); $json = file_get_contents('php://input'); $request = json_decode($json, true); -var_dump($request); /* @var $migration AbstractMigration */ $migration = $allMigrations[$request['migrationNumber']];