Plugin Directory

Changeset 1964278


Ignore:
Timestamp:
10/27/2018 08:44:09 PM (7 years ago)
Author:
janbpunkt
Message:

-removed "known issues" from readme.txt
-renamed a variable

Location:
wpubg/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wpubg/trunk/readme.txt

    r1962425 r1964278  
    41415. save
    4242
    43 == Known issues ==
    44 1. no error catching yet
    45 2. PUBG-API only allows 10 requests per minute as a default (you can request higher amounts on https://developer.pubg.com)
    46 3. no caching yet
    47 
    4843== Screenshots ==
    49441. That's how it will look live
  • wpubg/trunk/wpubg.php

    r1962422 r1964278  
    151151        If not, we're going to ask the API
    152152        */
    153         $session_transient = get_transient('wpubg_seasonID');
    154         if (!empty($session_transient)) {
     153        $season_transient = get_transient('wpubg_seasonID');
     154        if (!empty($season_transient)) {
    155155            //Cached value available -> let's use it
    156156            $seasonID = get_transient('wpubg_seasonID');
Note: See TracChangeset for help on using the changeset viewer.