(0000338)
Beda (reporter)
2009-08-07 13:24
|
HERE IS FIX:
OPEN
acp_garage_product.php
FIND
$product_to_id = request_var('modifications_to_id', 0);
REPLACE WITH
$product_to_id = request_var('product_to_id', 0);
**************
OPEN
mcp_garage.php
FIND
$params = array('product_id' => '', 'action_modifications' => '', 'modifications_to_id' => 0);
REPLACE WITH
$params = array('product_id' => '', 'action_modifications' => '', 'product_to_id' => 0);
FIND
$garage_modification->delete_product($data['product_id'], $data['action_modifications'], $data['modifications_to_id']);
REPLACE WITH
$garage_modification->delete_product($data['product_id'], $data['action_modifications'], $data['product_to_id']);
**************
OPEN
class_garage_modification.php
FIND
else if ($action_make == 'move')
REPLACE WITH
else if ($action_product == 'move')
FIND
if (!$make_to_id)
REPLACE WITH
if (!$product_to_id)
FIND
$this->move_product_content($product_id, $to_id);
REPLACE WITH
$this->move_product_content($product_id, $product_to_id); |