Is this the right place to do it In admin/categories.php?
if ($action == 'new_product_preview') {
// copy image only if modified
if ($dir && !is_dir(DIR_FS_CATALOG_IMAGES . $dir)) {
if (mkdir(DIR_FS_CATALOG_IMAGES . $dir)) $messageStack->add('Folder ' . $dir . ' created in '. $images_dir . '.', 'success');
}
$products_image = new upload('products_image');
// Should my code be here? <==================
$products_image->set_destination(DIR_FS_CATALOG_IMAGES . ($dir ? $dir .'/' : ''));
if ($products_image->parse() && $products_image->save()) {
Thanks in advance
Sara









