Plugin Directory

Changeset 790738


Ignore:
Timestamp:
10/20/2013 03:54:50 AM (12 years ago)
Author:
apsense
Message:

1.1 upgrades

Location:
qr-code-login-by-tagauth/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • qr-code-login-by-tagauth/trunk/readme.txt

    r789062 r790738  
    33Donate link: http://www.inhao.com/
    44Tags: apsense, qr code, qr scanner, login by qr code, tagauth, tag auth,tagbook,inhao
    5 Requires at least: 1.0
     5Requires at least: 3.5
    66Tested up to: 3.6.1
    77Stable tag: 3.6.1
     
    5555== Changelog ==
    5656
     57= 1.1 =
     58* Change the visibility of "Get QR Key". All users can see it.
     59
    5760= 1.0 =
    5861* Initial release
  • qr-code-login-by-tagauth/trunk/tagauth.php

    r789136 r790738  
    44Plugin Name: QR Code Login by TagAuth
    55Description: Use mobile to login your wordpress site by scanning QR Code.
    6 Version: 1
     6Version: 1.1
    77Author: Inhao.com
    88Tags: QR Code Login, inhao, tagbook, scan qr code, login wp by qrcode, apsense
     
    2020    add_action('admin_menu', 'tagauth_admin_menu');
    2121}
    22 else
    23 {
    24     add_action('admin_menu', 'tagauth_user_menu');
    25 }
    2622
    2723function tagauth_admin_menu() {
    28     add_dashboard_page('Get QR Key', 'Get QR Key', 'manage_options', 'get_qr_key', 'get_qr_key');
     24    add_dashboard_page('Get QR Key', 'Get QR Key', 'read', 'get_qr_key', 'get_qr_key');
    2925    add_options_page('', 'TagAuth', 'manage_options', __FILE__, 'TagAuth_Settings', '', 6);
    3026}
    3127
    3228function tagauth_user_menu() {
    33     add_dashboard_page('Get QR Key', 'Get QR Key', 'manage_options', 'get_qr_key', 'get_qr_key');
     29    add_dashboard_page('Get QR Key', 'Get QR Key', 'read', 'get_qr_key', 'get_qr_key');
    3430}
    3531
Note: See TracChangeset for help on using the changeset viewer.