Plugin Directory

Changeset 891078


Ignore:
Timestamp:
04/11/2014 05:36:17 AM (12 years ago)
Author:
1eftHander
Message:

1.6

  • 메뉴 접근 권한 오류 수정(수진(@sujin2f)님 버그리포팅)
Location:
naver-map/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • naver-map/trunk/naver-map.css

    r757233 r891078  
    22
    33#naver_map_api_key {
    4     width:230px;
     4    width:300px;
    55}
    66
     
    3030
    3131#query {
    32     width:400px;
     32    width:500px;
    3333}
    3434
     
    8080
    8181.map_code {
    82     width:52px;
     82    width:64px;
    8383}
    8484
  • naver-map/trunk/naver-map.php

    r820774 r891078  
    44Plugin URI: http://www.1efthander.com/category/plug-in/naver-map/
    55Description: Naver Map 플러그인은 네이버 지도 API를 이용하여 워드프레스에서 쉽게 사용할 수 있도록 도와줍니다. This plugin uses Naver API and helps users easy to use in WordPress.
    6 Version: 1.5
     6Version: 1.6
    77Author: 1eftHander
    88Author URI: http://www.1efthander.com
    99*/
    1010
    11 define( 'NAVER_MAP_VERSION', '1.5' );
     11define( 'NAVER_MAP_VERSION', '1.6' );
    1212
    1313/*
     
    4444function register_submenu_page() {
    4545    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' ) );
    4749    }
    4850    $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  
    4848== Changelog ==
    4949
     50= 1.6 =
     51* 메뉴 접근 권한 오류 수정(수진(@sujin2f)님 버그리포팅)
     52
    5053= 1.5 =
    5154* 다국어 지원 : 한국어, 영어
Note: See TracChangeset for help on using the changeset viewer.