Changeset 14413


Ignore:
Timestamp:
2007/06/07 15:46:19 (17 years ago)
Author:
uehara
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/html/admin/products/product.php

    r14357 r14413  
    5050 
    5151// ¥Õ¥¡¥¤¥ë´ÉÍý¥¯¥é¥¹ 
    52 $objUpFile = new SC_UploadFile(IMAGE_TEMP_DIR, IMAGE_SAVE_DIR); 
     52$objUpFile = new SC_UploadFile(IMAGE_TEMP_DIR, IMAGE_SAVE_DIR, FTP_TEMP_SAVE_DIR, FTP_IMAGE_SAVE_DIR, MULTI_WEB_SERVER_MODE); 
    5353 
    5454// ¥Õ¥¡¥¤¥ë¾ðÊó¤Î½é´ü²½ 
     
    553553            // ¾ÜºÙ¥á¥¤¥ó²èÁü 
    554554            lfMakeScaleImage($_POST['image_key'], "main_image"); 
     555            $arrKey[] = "main_image"; 
    555556        case "main_image": 
    556557            // °ìÍ÷¥á¥¤¥ó²èÁü 
    557558            lfMakeScaleImage($_POST['image_key'], "main_list_image"); 
    558             break; 
     559            $arrKey[] = "main_list_image"; 
     560            break; 
    559561        case "sub_large_image" . $subno: 
    560562            // ¥µ¥Ö¥á¥¤¥ó²èÁü 
    561563            lfMakeScaleImage($_POST['image_key'], "sub_image" . $subno); 
     564            $arrKey[] = "sub_image" . $subno; 
    562565            break; 
    563566        default: 
    564567            break; 
    565568    } 
     569    return $arrKey; 
    566570} 
    567571 
Note: See TracChangeset for help on using the changeset viewer.