Plugin Directory

Changeset 1857728


Ignore:
Timestamp:
04/13/2018 08:33:30 AM (8 years ago)
Author:
gosomi
Message:

상품명 출력 버그 수정

Location:
woo-bootpay/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • woo-bootpay/trunk/bootpay-woocommerce.php

    r1857723 r1857728  
    44 * Plugin URI: https://www.bootpay.co.kr
    55 * Description: 우커머스에 PG를 손쉽게 붙일 수 연동 플러그인 ( 이니시스 / 다날 / KCP / LGU+ 모두 쉽게 붙이는 Woo-bootpay )
    6  * Version: 1.1.7
     6 * Version: 1.1.8
    77 * Author: Gosomi
    88 * Author URI: https://blog.areum.io
     
    231231
    232232            $order_data = [
    233                 'name'      => $this->get_order_name( $order ),
     233                'name'      => sizeof( $items ) > 1 ? sprintf( "%s 외 %s 개", $items[0]['item_name'], sizeof( $items ) - 1 ) : $items[0]['item_name'],
    234234                'price'     => $order->get_total(),
    235235                'items'     => $items,
  • woo-bootpay/trunk/readme.txt

    r1857723 r1857728  
    55Requires at least: 3.6
    66Tested up to: 4.9.1
    7 Stable tag: 1.1.7
     7Stable tag: 1.1.8
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1212
    1313== Description ==
     14버전 1.1.8
     15상품명 노출 안되는 버그 수정
     16
    1417버전 1.1.6, 1.1.7
    1518ajax URL 변경
Note: See TracChangeset for help on using the changeset viewer.