diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-01 22:55:47 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-01 22:55:47 -0800 |
commit | aa2e4de024a985f16beb8c1ad90daf0e668d2e28 (patch) | |
tree | 6332d3f536b7e7e5367c51cc4f1c0d491ccd6173 | |
parent | 519cc249c4e59e987af440a066f81271b29dd931 (diff) |
Corrected copy paste errors in g2_import task. Fixes ticket #949.
-rw-r--r-- | modules/g2_import/helpers/g2_import_task.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/g2_import/helpers/g2_import_task.php b/modules/g2_import/helpers/g2_import_task.php index 21ba4c3a..e0212b33 100644 --- a/modules/g2_import/helpers/g2_import_task.php +++ b/modules/g2_import/helpers/g2_import_task.php @@ -189,7 +189,7 @@ class g2_import_task_Core { } $task->status = t( "Album highlights (%count of %total)", - array("count" => $done["tags"] + 1, "total" => $stats["albums"])); + array("count" => $done["highlights"] + 1, "total" => $stats["highlights"])); break; |