From 2cf70326aedc14d6655ce82fb721a25bddfe59b2 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Fri, 17 Oct 2008 15:19:10 +0000 Subject: [PATCH] BUGFIX Fixed $module parameter for i18nTextCollectorTask git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@64490 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- core/i18nTextCollectorTask.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/i18nTextCollectorTask.php b/core/i18nTextCollectorTask.php index 9e37511b0..d7d75ad66 100644 --- a/core/i18nTextCollectorTask.php +++ b/core/i18nTextCollectorTask.php @@ -25,8 +25,8 @@ class i18nTextCollectorTask extends BuildTask { * @uses DataObject->collectI18nStatics() */ public function run($request) { - $c = new i18nTextCollector($request->getVar('module')); - return $c->run(); + $c = new i18nTextCollector(); + return $c->run($request->getVar('module')); } } ?> \ No newline at end of file