Plugin Directory

Changeset 1733984


Ignore:
Timestamp:
09/21/2017 09:37:07 PM (9 years ago)
Author:
merleM_157
Message:

Updated plugin version to 1.0
changed deprecated function get_currentuserinfo
added language files

Location:
multisite-ticket-system/trunk
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • multisite-ticket-system/trunk/class-msts-table.php

    r1343403 r1733984  
    7373    private function msts_get_tickets( $per_page = 10, $page_number = 1 ) {
    7474        global $wpdb;
    75         global $current_user;
    76         get_currentuserinfo();
     75        $current_user = wp_get_current_user();
    7776        $blog_id = get_current_blog_id();
    7877
     
    528527        global $msts_prio_high;
    529528        global $titleUrl;
    530         global $current_user;
    531         get_currentuserinfo();
     529        $current_user = wp_get_current_user();
    532530        $msts_blog_name = get_bloginfo('name');
    533531
  • multisite-ticket-system/trunk/includes/msts_notification.php

    r1343403 r1733984  
    66
    77global $menu;
    8 global $current_user;
    98global $wpdb;
    10 get_currentuserinfo();
     9$current_user = wp_get_current_user();
    1110
    1211$userID = $current_user->ID;
  • multisite-ticket-system/trunk/multisite-ticket-system.php

    r1343403 r1733984  
    33 *  Plugin Name:  Multisite Ticket System
    44 *  Description: Ticket support system for multisite network. Super Admin receives tickets and manages settings (categories and e-mail addresses). Administrators of the sites (only) can submit tickets. Uses a comment section for updating tickets.
    5  *  Version: 0.5
     5 *  Version: 1.0
    66 *  Author: Merle Miller
    77 *  Text Domain: multisite-ticket-system
  • multisite-ticket-system/trunk/readme.txt

    r1344300 r1733984  
    33Tags: multisite, multisite network, ticketsystem, ticketsupport, ticket, tickets, support, network admin, super admin
    44Requires at least: 4.4
    5 Tested up to: 4.4.2
    6 Stable tag: 0.5
     5Tested up to: 4.8.2
     6Stable tag: 1.0
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4848== Changelog ==
    4949
     50= 1.0 =
     51* Deprecated function get_currentuserinfo swapped for wp_get_current_user()
     52* Added language files for en_AU (Australia)
     53
    5054= 0.5 =
    5155* This is the first version ever, so no changes have been made so far. But I am eager to improve this plugin and optimize its features!
Note: See TracChangeset for help on using the changeset viewer.