Changeset 22058 for branches/version-2_12-multilang/html
- Timestamp:
- 2012/10/22 19:42:42 (14 years ago)
- Location:
- branches/version-2_12-multilang
- Files:
-
- 4 edited
- 2 copied
-
. (modified) (1 prop)
-
html/install/index.php (modified) (1 diff)
-
html/install/sql/insert_data.sql (modified) (1 diff)
-
html/rss/product.php (modified) (1 diff)
-
html/rss/products.php (copied) (copied from branches/version-2_12-dev/html/rss/products.php)
-
html/upload/save_image/noimage_plugin_list.png (copied) (copied from branches/version-2_12-dev/html/upload/save_image/noimage_plugin_list.png)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-multilang
- Property svn:mergeinfo changed
/branches/version-2_12-dev (added) merged: 22001-22004,22010-22012,22014-22029,22033-22039,22042-22044,22050-22057 /branches/version-2_12_2 (added) merged: 21999-22000,22008-22009
- Property svn:mergeinfo changed
-
branches/version-2_12-multilang/html/install/index.php
r21938 r22058 196 196 } 197 197 } 198 199 //マスターデータのキャッシュを削除 200 $cache_dir = '../../data/cache/'; 201 $res_dir = opendir( $cache_dir ); 202 while( $file_name = readdir( $res_dir ) ){ 203 //dummy以外は削除 204 if($file_name != 'dummy'){ 205 unlink($cache_dir . $file_name); 206 } 207 } 208 closedir( $res_dir ); 198 209 199 210 $objPage = lfDispStep3($objPage); -
branches/version-2_12-multilang/html/install/sql/insert_data.sql
r22005 r22058 304 304 INSERT INTO dtb_csv (no, csv_id, col, disp_name, rank, rw_flg, status, create_date, update_date, mb_convert_kana_option, size_const_type, error_check_types) VALUES (68, 1, '(SELECT ARRAY_TO_STRING(ARRAY(SELECT product_status_id FROM dtb_product_status WHERE dtb_product_status.product_id = prdcls.product_id and del_flg = 0 ORDER BY dtb_product_status.product_status_id), '','')) as product_statuses', '商品ステータス', 68, 1, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'KVa', 'STEXT_LEN', 'SPTAB_CHECK,MAX_LENGTH_CHECK'); 305 305 INSERT INTO dtb_csv (no, csv_id, col, disp_name, rank, rw_flg, status, create_date, update_date, mb_convert_kana_option, size_const_type, error_check_types) VALUES (69, 1, '(SELECT ARRAY_TO_STRING(ARRAY(SELECT name FROM dtb_product_status LEFT JOIN mtb_status ON dtb_product_status.product_status_id = mtb_status.id WHERE dtb_product_status.product_id = prdcls.product_id and del_flg = 0 ORDER BY dtb_product_status.product_status_id), '','')) as product_status_names', '商品ステータス名', 69, 2, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'KVa', 'LTEXT_LEN', 'SPTAB_CHECK,MAX_LENGTH_CHECK'); 306 INSERT INTO dtb_csv (no, csv_id, col, disp_name, rank, rw_flg, status, create_date, update_date, mb_convert_kana_option, size_const_type, error_check_types) VALUES (70, 1, '(SELECT ARRAY_TO_STRING(ARRAY(SELECT category_id FROM dtb_product_categories WHERE dtb_product_categories.product_id = prdcls.product_id ORDER BY dtb_product_categories.rank), '','')) as category_ids', 'カテゴリID', 70, 1, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'KVa', 'LTEXT_LEN', 'SPTAB_CHECK,MAX_LENGTH_CHECK ');306 INSERT INTO dtb_csv (no, csv_id, col, disp_name, rank, rw_flg, status, create_date, update_date, mb_convert_kana_option, size_const_type, error_check_types) VALUES (70, 1, '(SELECT ARRAY_TO_STRING(ARRAY(SELECT category_id FROM dtb_product_categories WHERE dtb_product_categories.product_id = prdcls.product_id ORDER BY dtb_product_categories.rank), '','')) as category_ids', 'カテゴリID', 70, 1, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'KVa', 'LTEXT_LEN', 'SPTAB_CHECK,MAX_LENGTH_CHECK,EXIST_CHECK'); 307 307 INSERT INTO dtb_csv (no, csv_id, col, disp_name, rank, rw_flg, status, create_date, update_date, mb_convert_kana_option, size_const_type, error_check_types) VALUES (71, 1, '(SELECT ARRAY_TO_STRING(ARRAY(SELECT category_name FROM dtb_product_categories LEFT JOIN dtb_category ON dtb_product_categories.category_id = dtb_category.category_id WHERE dtb_product_categories.product_id = prdcls.product_id ORDER BY dtb_product_categories.rank), '','')) as category_names', 'カテゴリ名', 71, 2, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'KVa', 'LTEXT_LEN', 'SPTAB_CHECK,MAX_LENGTH_CHECK'); 308 308 INSERT INTO dtb_csv (no, csv_id, col, disp_name, rank, status, create_date, update_date) VALUES (72, 2, 'customer_id', '会員ID', 1, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP); -
branches/version-2_12-multilang/html/rss/product.php
r21867 r22058 29 29 // {{{ generate page 30 30 31 // @deprecated 2.12.3 html/rss/products.php が正しい。 32 trigger_error('前方互換用ファイルが使用されました。', E_USER_WARNING); 33 31 34 $objPage = new LC_Page_Rss_Products_Ex(); 32 35 register_shutdown_function(array($objPage, 'destroy'));
Note: See TracChangeset
for help on using the changeset viewer.
