From 278f699fdad602db48b2caf661a6b820e91467d3 Mon Sep 17 00:00:00 2001 From: mark_story Date: Sun, 10 Oct 2010 01:02:23 -0400 Subject: [PATCH] Updating extract task. --- cake/console/libs/tasks/extract.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cake/console/libs/tasks/extract.php b/cake/console/libs/tasks/extract.php index a03790cadb1..8cbf27a9673 100644 --- a/cake/console/libs/tasks/extract.php +++ b/cake/console/libs/tasks/extract.php @@ -103,8 +103,8 @@ function execute() { if (isset($this->params['paths'])) { $this->__paths = explode(',', $this->params['paths']); } else { - $defaultPath = $this->params['working']; - $message = sprintf(__("What is the full path you would like to extract?\nExample: %s\n[Q]uit [D]one"), $this->params['root'] . DS . 'myapp'); + $defaultPath = $this->Dispatch->params['working']; + $message = sprintf(__("What is the full path you would like to extract?\nExample: %s\n[Q]uit [D]one"), $this->Dispatch->params['root'] . DS . 'myapp'); while (true) { $response = $this->in($message, null, $defaultPath); if (strtoupper($response) === 'Q') {