Quote Originally Posted by gonewild View Post
} ?> is missing from line470 in /collect_info.php


I am really sorry about that folks... I have no idea how the line got trimmed from my library copy of the code.

Here is the "official" fix

Module: admin/includes/modules/product_auction/collect_info.php


There is a line MISSING after line 474:
} ?>







current BAD code at line 474:
echo zen_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '100%', '20', (isset($products_description[$languages[$i]['id']])) ? stripslashes($products_description[$languages[$i]['id']]) : zen_get_products_description($pInfo->products_id, $languages[$i]['id'])); //,'id="'.'products_description' . $languages[$i]['id'] . '"');
</td>

Correct code at line 474:
echo zen_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '100%', '20', (isset($products_description[$languages[$i]['id']])) ? stripslashes($products_description[$languages[$i]['id']]) : zen_get_products_description($pInfo->products_id, $languages[$i]['id'])); //,'id="'.'products_description' . $languages[$i]['id'] . '"');
} ?>
</td>



Again my apologies....

I will upload 99.a today

AHB