Plugin Directory

Changeset 2102202


Ignore:
Timestamp:
06/07/2019 12:00:54 PM (7 years ago)
Author:
nathanwebb
Message:

increase cache timeout to 3000s

Location:
db-share-count
Files:
3 edited
4 copied

Legend:

Unmodified
Added
Removed
  • db-share-count/tags/0.1.9/changelog.txt

    r2098603 r2102202  
    22
    33All notable changes to the project will be documented in this file.
     4
     5## [0.1.9]
     6### Fixed
     7 - increased timeout for cache from 5 minutes to 50 minutes
    48
    59## [0.1.7]
  • db-share-count/tags/0.1.9/db_share_count.php

    r2098666 r2102202  
    44Plugin URI: https://github.com/Crasily/db_share_count
    55Description: Social share buttons with count
    6 Version: 0.1.8
     6Version: 0.1.9
    77Author: Nathan Webb
    88License: GPLv2 or later
     
    180180    );
    181181  }
    182   if ($meta['createdAt'] > (time() - 300)) {
     182  if ($meta['createdAt'] > (time() - 3000)) {
    183183    dbsc_respondJson($meta);
    184184    die();
  • db-share-count/tags/0.1.9/readme.txt

    r2098666 r2102202  
    6868
    6969== Changelog ==
     70= 0.1.9 =
     71* increased timeout for cache
     72
    7073= 0.1.8 =
    7174* updated pinterest url
  • db-share-count/trunk/changelog.txt

    r2098603 r2102202  
    22
    33All notable changes to the project will be documented in this file.
     4
     5## [0.1.9]
     6### Fixed
     7 - increased timeout for cache from 5 minutes to 50 minutes
    48
    59## [0.1.7]
  • db-share-count/trunk/db_share_count.php

    r2098666 r2102202  
    44Plugin URI: https://github.com/Crasily/db_share_count
    55Description: Social share buttons with count
    6 Version: 0.1.8
     6Version: 0.1.9
    77Author: Nathan Webb
    88License: GPLv2 or later
     
    180180    );
    181181  }
    182   if ($meta['createdAt'] > (time() - 300)) {
     182  if ($meta['createdAt'] > (time() - 3000)) {
    183183    dbsc_respondJson($meta);
    184184    die();
  • db-share-count/trunk/readme.txt

    r2098666 r2102202  
    6868
    6969== Changelog ==
     70= 0.1.9 =
     71* increased timeout for cache
     72
    7073= 0.1.8 =
    7174* updated pinterest url
Note: See TracChangeset for help on using the changeset viewer.