GX-Bug #55927 » GXCustomizerReCreateOrderFix.patch
| src/gm/modules/gm_gprint_admin_gm_send_order.php (date 1522228992000) | ||
|---|---|---|
| 52 | 52 |
$t_attributes_data = str_replace(':', ': ', $t_attributes_data);
|
| 53 | 53 |
$t_attributes_data = str_replace(': ', ': ', $t_attributes_data);
|
| 54 | 54 |
|
| 55 |
for($i = 0; $i < count($coo_gm_gprint_order_data[$t_order_data_values['orders_products_id']]); $i++) |
|
| 56 |
{
|
|
| 57 |
$t_attributes_data .= '<br />' . $coo_gm_gprint_order_data[$t_order_data_values['orders_products_id']][$i]['NAME'] . ': ' . $coo_gm_gprint_order_data[$t_order_data_values['orders_products_id']][$i]['VALUE']; |
|
| 58 |
$t_attributes_model .= '<br />'; |
|
| 59 |
} |
|
| 55 |
if(!empty($coo_gm_gprint_order_data)) |
|
| 56 |
{
|
|
| 57 |
for($i = 0; $i < count($coo_gm_gprint_order_data[$t_order_data_values['orders_products_id']]); $i++) |
|
| 58 |
{
|
|
| 59 |
$t_attributes_data .= '<br />' |
|
| 60 |
. $coo_gm_gprint_order_data[$t_order_data_values['orders_products_id']][$i]['NAME'] |
|
| 61 |
. ': ' |
|
| 62 |
. $coo_gm_gprint_order_data[$t_order_data_values['orders_products_id']][$i]['VALUE']; |
|
| 63 |
$t_attributes_model .= '<br />'; |
|
| 64 |
} |
|
| 65 |
} |
|