diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-14 02:16:06 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-14 02:16:06 +0000 |
commit | 229eca29189e33e87fd0c0e454bb0e248e3188e3 (patch) | |
tree | 85da71583f84b95fe58fba62377e6f7807c11321 /modules/developer/helpers/developer_task.php | |
parent | cb3d39fe62d69022cc90ae52b634e997905c242c (diff) |
* Allow module names with spaces
* remove debug code
Diffstat (limited to 'modules/developer/helpers/developer_task.php')
-rw-r--r-- | modules/developer/helpers/developer_task.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/developer/helpers/developer_task.php b/modules/developer/helpers/developer_task.php index 3fff6fc2..532d3a8d 100644 --- a/modules/developer/helpers/developer_task.php +++ b/modules/developer/helpers/developer_task.php @@ -25,7 +25,7 @@ class developer_task_Core { static function create_module($task) { $context = unserialize($task->context); - $module_path = (MODPATH . "{$context['name']}"); + $module_path = (MODPATH . "{$context['path_part']}"); switch ($context["step"]) { case 0: // Create directory tree |