diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-11-03 17:30:18 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-11-03 17:30:18 -0800 |
commit | 1faa2492952a54f0b80cce149ae42b59b91039df (patch) | |
tree | e25c2d0e9ceccf1974449eeda3ef62f4cb5e87c0 /modules/g2_import | |
parent | 6dd622416531e8897af2bc3712e55a640277ac62 (diff) | |
parent | 9a33f96e31ba41d78ab24eb9420d74578c7fbbcf (diff) |
Merge branch 'master' into talmdal_dev
Diffstat (limited to 'modules/g2_import')
-rw-r--r-- | modules/g2_import/helpers/g2_import.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/g2_import/helpers/g2_import.php b/modules/g2_import/helpers/g2_import.php index 248f8017..202a0e92 100644 --- a/modules/g2_import/helpers/g2_import.php +++ b/modules/g2_import/helpers/g2_import.php @@ -217,7 +217,7 @@ class g2_import_Core { static function import_group(&$queue) { $g2_group_id = array_shift($queue); if (self::map($g2_group_id)) { - return t("Group with id: %id already imported, skipping", array("id" => $g2_group_id)); + return; } try { @@ -330,7 +330,7 @@ class g2_import_Core { } if (self::map($g2_album_id)) { - return t("Album with id: %id already imported, skipping", array("id" => $g2_album_id)); + return; } try { @@ -424,7 +424,7 @@ class g2_import_Core { $g2_item_id = array_shift($queue); if (self::map($g2_item_id)) { - return t("Item with id: %id already imported, skipping", array("id" => $g2_item_id)); + return; } try { |