Changeset 891078
- Timestamp:
- 04/11/2014 05:36:17 AM (12 years ago)
- Location:
- naver-map/trunk
- Files:
-
- 3 edited
-
naver-map.css (modified) (3 diffs)
-
naver-map.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
naver-map/trunk/naver-map.css
r757233 r891078 2 2 3 3 #naver_map_api_key { 4 width: 230px;4 width:300px; 5 5 } 6 6 … … 30 30 31 31 #query { 32 width: 400px;32 width:500px; 33 33 } 34 34 … … 80 80 81 81 .map_code { 82 width: 52px;82 width:64px; 83 83 } 84 84 -
naver-map/trunk/naver-map.php
r820774 r891078 4 4 Plugin URI: http://www.1efthander.com/category/plug-in/naver-map/ 5 5 Description: Naver Map 플러그인은 네이버 지도 API를 이용하여 워드프레스에서 쉽게 사용할 수 있도록 도와줍니다. This plugin uses Naver API and helps users easy to use in WordPress. 6 Version: 1. 56 Version: 1.6 7 7 Author: 1eftHander 8 8 Author URI: http://www.1efthander.com 9 9 */ 10 10 11 define( 'NAVER_MAP_VERSION', '1. 5' );11 define( 'NAVER_MAP_VERSION', '1.6' ); 12 12 13 13 /* … … 44 44 function register_submenu_page() { 45 45 if ( ! current_user_can( 'manage_options' ) ) { 46 wp_die( _e( 'You do not have sufficient permissions to access this page.', 'naver-map' ) ); 46 //2013-12-29, 수진(@sujin2f)님 버그리포팅, 캐퍼빌리티가 없는 유저들이 어드민 접근을 못하는 버그 47 return false; 48 //wp_die( _e( 'You do not have sufficient permissions to access this page.', 'naver-map' ) ); 47 49 } 48 50 $plugin_page = add_submenu_page( 'options-general.php', 'Naver Map', 'Naver Map', 'manage_options', basename( __FILE__ ), 'display_submenu_page' ); -
naver-map/trunk/readme.txt
r820774 r891078 48 48 == Changelog == 49 49 50 = 1.6 = 51 * 메뉴 접근 권한 오류 수정(수진(@sujin2f)님 버그리포팅) 52 50 53 = 1.5 = 51 54 * 다국어 지원 : 한국어, 영어
Note: See TracChangeset
for help on using the changeset viewer.