Changeset 1964278
- Timestamp:
- 10/27/2018 08:44:09 PM (7 years ago)
- Location:
- wpubg/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
wpubg.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wpubg/trunk/readme.txt
r1962425 r1964278 41 41 5. save 42 42 43 == Known issues ==44 1. no error catching yet45 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 yet47 48 43 == Screenshots == 49 44 1. That's how it will look live -
wpubg/trunk/wpubg.php
r1962422 r1964278 151 151 If not, we're going to ask the API 152 152 */ 153 $se ssion_transient = get_transient('wpubg_seasonID');154 if (!empty($se ssion_transient)) {153 $season_transient = get_transient('wpubg_seasonID'); 154 if (!empty($season_transient)) { 155 155 //Cached value available -> let's use it 156 156 $seasonID = get_transient('wpubg_seasonID');
Note: See TracChangeset
for help on using the changeset viewer.