Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove 2 ")" extra #2982

Merged
merged 2 commits into from
May 11, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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