Skip to content

Commit

Permalink
Merge pull request #2982 from valdeir2000/master
Browse files Browse the repository at this point in the history
Remove 2 ")" extra
  • Loading branch information
danielkerr committed May 11, 2015
2 parents 7a402f2 + 414519f commit a5e3c38
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions upload/admin/model/catalog/product.php
Original file line number Diff line number Diff line change
Expand Up @@ -290,20 +290,20 @@ public function copyProduct($product_id) {
$data['keyword'] = '';
$data['status'] = '0';

$data['product_attribute'] = $this->getProductAttributes($product_id)));
$data['product_description'] = $this->getProductDescriptions($product_id)));
$data['product_discount'] = $this->getProductDiscounts($product_id)));
$data['product_filter'] = $this->getProductFilters($product_id)));
$data['product_image'] = $this->getProductImages($product_id)));
$data['product_option'] = $this->getProductOptions($product_id)));
$data['product_related'] = $this->getProductRelated($product_id)));
$data['product_reward'] = $this->getProductRewards($product_id)));
$data['product_special'] = $this->getProductSpecials($product_id)));
$data['product_category'] = $this->getProductCategories($product_id)));
$data['product_download'] = $this->getProductDownloads($product_id)));
$data['product_layout'] = $this->getProductLayouts($product_id)));
$data['product_store'] = $this->getProductStores($product_id)));
$data['product_recurrings'] => $this->getRecurrings($product_id)));
$data['product_attribute'] = $this->getProductAttributes($product_id);
$data['product_description'] = $this->getProductDescriptions($product_id);
$data['product_discount'] = $this->getProductDiscounts($product_id);
$data['product_filter'] = $this->getProductFilters($product_id);
$data['product_image'] = $this->getProductImages($product_id);
$data['product_option'] = $this->getProductOptions($product_id);
$data['product_related'] = $this->getProductRelated($product_id);
$data['product_reward'] = $this->getProductRewards($product_id);
$data['product_special'] = $this->getProductSpecials($product_id);
$data['product_category'] = $this->getProductCategories($product_id);
$data['product_download'] = $this->getProductDownloads($product_id);
$data['product_layout'] = $this->getProductLayouts($product_id);
$data['product_store'] = $this->getProductStores($product_id);
$data['product_recurrings'] = $this->getRecurrings($product_id);

$this->addProduct($data);
}
Expand Down

0 comments on commit a5e3c38

Please sign in to comment.