From 528fe408396be75c83ce8fe03ea8b108cd5c817e Mon Sep 17 00:00:00 2001 From: Nick Hazen Date: Wed, 4 Sep 2013 16:55:06 -0400 Subject: [PATCH] Update create bug script This script is using the first argument twice and ignoring the second argument completely. --- docs/en/tutorials/getting-started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/tutorials/getting-started.rst b/docs/en/tutorials/getting-started.rst index 4038947c7..02a07bc47 100644 --- a/docs/en/tutorials/getting-started.rst +++ b/docs/en/tutorials/getting-started.rst @@ -1037,7 +1037,7 @@ like this: require_once "bootstrap.php"; $theReporterId = $argv[1]; - $theDefaultEngineerId = $argv[1]; + $theDefaultEngineerId = $argv[2]; $productIds = explode(",", $argv[3]); $reporter = $entityManager->find("User", $theReporterId);