Changeset 1673967
- Timestamp:
- 06/09/2017 12:04:29 AM (9 years ago)
- Location:
- gnucommerce/trunk
- Files:
-
- 9 edited
-
adm/bbs/board_copy_update.php (modified) (3 diffs)
-
adm/bbs/board_form_update.php (modified) (1 diff)
-
adm/bbs/board_list.php (modified) (2 diffs)
-
config.php (modified) (1 diff)
-
gnucommerce.php (modified) (1 diff)
-
lib/gc_board.class.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
shop/inicis/m_settle_common.php (modified) (2 diffs)
-
shop/settle_inicis.inc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gnucommerce/trunk/adm/bbs/board_copy_update.php
r1490649 r1673967 32 32 $board['bo_count_write'] = 0; 33 33 $board['bo_count_comment'] = 0; 34 } 35 36 //페이지를 생성하는 훅을 걸어준다 37 if( isset($_POST['bo_auto_install']) && !empty($_POST['bo_auto_install']) ) { 38 add_action('gc_admin_board_create', 'gc_mk_page'); 34 39 } 35 40 … … 158 163 if ( false === $result ){ 159 164 gc_show_db_error(); 165 } else { 166 // 워드프레스의 페이지를 자동 생성합니다. 167 do_action('gc_admin_board_create' , $data); 160 168 } 161 169 … … 238 246 239 247 } 248 249 240 250 gc_delete_cache_latest($bo_table); 241 251 gc_delete_cache_latest($target_table); -
gnucommerce/trunk/adm/bbs/board_form_update.php
r1445302 r1673967 344 344 gc_show_db_error(); 345 345 } else { 346 // 워드프레스의 페이지를 자동 생성합니다. 346 347 do_action('gc_admin_board_create' , $data); 347 348 } -
gnucommerce/trunk/adm/bbs/board_list.php
r1445302 r1673967 146 146 147 147 <script> 148 149 function fboardcopy_check(f) 150 { 151 var bo_regex = /^[A-Za-z0-9_]{1,20}$/; 152 153 if ( !bo_regex.test(f.target_table.value) ) { 154 alert("<?php _e('복사할 테이블명은 20자 이내로 영문,숫자,_ 로 입력해 주세요.', GC_NAME);?>"); 155 return false; 156 } 157 158 if (f.bo_table.value == f.target_table.value) { 159 alert("<?php _e('원본 테이블명과 복사할 테이블명이 달라야 합니다.', GC_NAME);?>"); 160 return false; 161 } 162 163 return true; 164 } 165 148 166 function fboardlist_submit(f) 149 167 { … … 225 243 </td> 226 244 </tr> 245 <tr> 246 <th scope="col"><?php _e('페이지생성', GC_NAME); //페이지생성?></th> 247 <td> 248 <input type="checkbox" name="bo_auto_install" id="bo_auto_install" value="1" checked="checked"> 249 <label for="bo_auto_install">체크시 게시판 페이지를 자동으로 생성합니다.</label> 250 </td> 251 </tr> 227 252 </tbody> 228 253 </table> -
gnucommerce/trunk/config.php
r1637300 r1673967 5 5 6 6 public function __construct() { 7 define( 'GC_VERSION', '1.4. 5' );7 define( 'GC_VERSION', '1.4.6' ); 8 8 define( 'GC_NAME', 'gnucommerce' ); 9 9 define( 'GC_OPTION_KEY', 'gc_options' ); //쇼핑몰옵션키 -
gnucommerce/trunk/gnucommerce.php
r1637300 r1673967 5 5 * Author: SIR Soft 6 6 * Author URI: http://sir.kr 7 * Version: 1.4. 57 * Version: 1.4.6 8 8 * Text Domain: SIR Soft 9 9 */ -
gnucommerce/trunk/lib/gc_board.class.php
r1568385 r1673967 315 315 $gcboard->bo_table = $bo_table; 316 316 317 add_filter('the_content', array( $this, 'filter_the_content') ); //내용 관리 필터317 add_filter('the_content', array( $this, 'filter_the_content'), 20 ); //내용 관리 필터 318 318 319 319 break;break;break; -
gnucommerce/trunk/readme.txt
r1637300 r1673967 5 5 Requires at least: 4.0 6 6 Tested up to: 4.7 7 Stable tag: 1.4. 57 Stable tag: 1.4.6 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.4.6 = 68 게시판 복사시 워드프레스 페이지도 생성되게금 수정했습니다. 69 특정조건내에서 게시판에서 숏코드를 생성할수 있는 부분을 더 이상 동작되지 않도록 수정했습니다. 66 70 67 71 = 1.4.5 = -
gnucommerce/trunk/shop/inicis/m_settle_common.php
r1612999 r1673967 109 109 // 개인결제 정보 110 110 $pp_check = false; 111 $sql = $wpdb->prepare(" select * from `$wpdb->gc_shop_personalpay_table` where pp_id = %.0f and pp_ use = '1' ", $P_OID);111 $sql = $wpdb->prepare(" select * from `$wpdb->gc_shop_personalpay_table` where pp_id = %.0f and pp_tno = '%s' and pp_use = '1' ", $P_OID, $P_TID); 112 112 $pp = $wpdb->get_row($sql, ARRAY_A); 113 113 … … 188 188 $data['od_app_no'] = $od_app_no; 189 189 $data['od_mobile'] = 1; 190 $data['od_ mobile'] = $config['de_card_test'];190 $data['od_test'] = $config['de_card_test']; 191 191 $od_mod_history = $INIpayLog ? 'inicis noti ('.$P_AMT.') '.GC_TIME_YMDHIS : ''; 192 192 -
gnucommerce/trunk/shop/settle_inicis.inc.php
r1612999 r1673967 107 107 108 108 $inipay->SetField("inipayhome", GC_INICIS_KEY_PATH); // 이니페이 홈디렉터리(상점수정 필요) 109 $inipay->SetField("debug", apply_filters('gnucommerce_debug_mode', GC_DEBUG_MODE, 'inicis_log')); // 로그모드("true"로 설정하면 상세로그가 생성됨.)109 $inipay->SetField("debug", "false"); // 로그모드("true"로 설정하면 상세로그가 생성됨.) 110 110 111 111 if( GC_IS_MOBILE ){ //모바일이면
Note: See TracChangeset
for help on using the changeset viewer.