Changeset 1549081
- Timestamp:
- 12/08/2016 09:59:21 AM (9 years ago)
- Location:
- gnucommerce/trunk
- Files:
-
- 2 added
- 7 edited
-
bbs/write_update.php (modified) (1 diff)
-
config.php (modified) (1 diff)
-
gnucommerce.php (modified) (1 diff)
-
lib/gc_client.lib.php (modified) (2 diffs)
-
lib/gc_common.lib.php (modified) (1 diff)
-
lib/gc_shortcode.class.php (modified) (2 diffs)
-
lib/shortcode/register.php (added)
-
readme.txt (modified) (2 diffs)
-
skin/member/basic/register.skin.php (added)
Legend:
- Unmodified
- Added
- Removed
-
gnucommerce/trunk/bbs/write_update.php
r1530810 r1549081 622 622 do_action( 'write_update_metadata', $wr_id, $w ); 623 623 624 if( $upload_count && is_multisite() && function_exists('delete_transient') ){ 625 delete_transient( 'dirsize_cache' ); 626 } 627 624 628 // 비밀글이라면 세션에 비밀글의 아이디를 저장한다. 자신의 글은 다시 비밀번호를 묻지 않기 위함 625 629 if ($secret) -
gnucommerce/trunk/config.php
r1530810 r1549081 5 5 6 6 public function __construct() { 7 define( 'GC_VERSION', '1.3. 8' );7 define( 'GC_VERSION', '1.3.9' ); 8 8 define( 'GC_NAME', 'gnucommerce' ); 9 9 define( 'GC_OPTION_KEY', 'gc_options' ); //쇼핑몰옵션키 -
gnucommerce/trunk/gnucommerce.php
r1530810 r1549081 5 5 * Author: SIR Soft 6 6 * Author URI: http://sir.kr 7 * Version: 1.3. 87 * Version: 1.3.9 8 8 * Text Domain: SIR Soft 9 9 */ -
gnucommerce/trunk/lib/gc_client.lib.php
r1492985 r1549081 732 732 $wp_current_filter[] = $tag; 733 733 734 // Sort 735 if ( ! isset( $merged_filters[ $tag ] ) ) { 736 ksort( $wp_filter[$tag] ); 737 $merged_filters[ $tag ] = true; 734 // Sort. 735 if ( class_exists( 'WP_Hook' ) ) { 736 $filter = $wp_filter[ $tag ]->callbacks; 737 } else { 738 $filter = &$wp_filter[ $tag ]; 739 740 if ( ! isset( $merged_filters[ $tag ] ) ) { 741 ksort( $filter ); 742 $merged_filters[ $tag ] = true; 743 } 738 744 } 739 745 740 746 // Ensure we're always at the beginning of the filter array 741 reset( $ wp_filter[ $tag ]);747 reset( $filter ); 742 748 743 749 // Loop through 'gc_template_stack' filters, and call callback functions 744 750 do { 745 foreach ( (array) current( $wp_filter[$tag]) as $the_ ) {751 foreach( (array) current( $filter ) as $the_ ) { 746 752 if ( ! is_null( $the_['function'] ) ) { 747 753 $args[1] = $stack; … … 749 755 } 750 756 } 751 } while ( next( $ wp_filter[$tag]) !== false );757 } while ( next( $filter ) !== false ); 752 758 753 759 // Remove 'gc_template_stack' from the current filter array -
gnucommerce/trunk/lib/gc_common.lib.php
r1518161 r1549081 1415 1415 $dst = $write_path.'/key'; 1416 1416 1417 if( ! file_exists($dst) && is_dir($src) ){1417 if( (! file_exists($dst) || ! file_exists($key_file) ) && is_dir($src) ){ 1418 1418 gc_inicis_recurse_copy($src, $dst); 1419 1419 } -
gnucommerce/trunk/lib/gc_shortcode.class.php
r1518161 r1549081 9 9 GC_NAME.'_mypage' => __CLASS__ . '::mypage', //내 계정 페이지 10 10 GC_NAME.'_shop' => __CLASS__ . '::shop', //상품 페이지 11 GC_NAME.'_register' => __CLASS__ . '::register', //회원가입 페이지 11 12 GC_NAME.'_shop_latest' => __CLASS__ . '::shop_latest', //상품 페이지 12 13 GC_NAME.'_item' => __CLASS__ . '::item', //상품 보여주기 … … 48 49 } 49 50 51 //회원가입 52 public static function register($atts) { 53 global $post; 54 55 return "아직 지원하지 않습니다."; 56 57 include_once( GC_SHORTCODE_DIR_PATH.'/'. __FUNCTION__ .'.php' ); 58 59 return self::shortcode_wrapper( array( 'GC_Shortcode_Register', 'output' ), $atts ); 60 } 61 50 62 //장바구니 51 63 public static function cart($atts) { -
gnucommerce/trunk/readme.txt
r1530810 r1549081 5 5 Requires at least: 4.0 6 6 Tested up to: 4.6 7 Stable tag: 1.3. 87 Stable tag: 1.3.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 64 64 65 65 == Changelog == 66 67 = 1.3.9 = 68 워드프레스 4.7 버젼에서 쇼핑몰 상품이 제대로 뜨지 않는 오류를 고쳤습니다.( 피피짱 님이 알려주심 ) 69 네트워트 활성화시 워드프레스 관리자모드에 사용량이 증가되지 않는 오류를 고쳤습니다.( HMHM 님이 알려주심 ) 70 이니시스 실결제시 키 활성화 오류를 고쳤습니다.( 콜라맨님이 알려주심 ) 66 71 67 72 = 1.3.8 =
Note: See TracChangeset
for help on using the changeset viewer.