Plugin Directory

Changeset 2532658


Ignore:
Timestamp:
05/17/2021 01:48:23 AM (5 years ago)
Author:
wokamoto
Message:

[simple-ga-ranking] Update ver.2.1.2

Location:
simple-ga-ranking
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • simple-ga-ranking/tags/2.1.2/readme.txt

    r2532343 r2532658  
    44Requires at least: 3.6.1
    55Tested up to: 5.7.2
    6 Stable tag: 2.1.1
     6Stable tag: 2.1.2
    77
    88Ranking plugin using data from google analytics.
     
    9292= 2.1 =
    9393* refactoring
    94 = 2.1.1=
    95 * Fixed some error handling
     94= 2.1.1 =
     95* Fixed some error handling.
     96= 2.1.2 =
     97* Fixed a bug that prevented shortcodes from working.
  • simple-ga-ranking/tags/2.1.2/simple-ga-ranking.php

    r2532344 r2532658  
    55Plugin URI: http://simple-ga-ranking.org
    66Description: Ranking plugin using data from google analytics.
    7 Version: 2.1.1
     7Version: 2.1.2
    88Author URI: http://simple-ga-ranking.org
    99Domain Path: /languages
     
    148148    } else {
    149149        // from Google Analytics API
     150        if ( ! is_object( $simple_ga_ranking ) || ! method_exists( $simple_ga_ranking , 'fetch' ) ) {
     151            $simple_ga_ranking = \Hametuha\GapiWP\Loader::analytics();
     152        }
    150153        $ga_args = array(
    151154                'start-index' => 1,
  • simple-ga-ranking/trunk/readme.txt

    r2532343 r2532658  
    44Requires at least: 3.6.1
    55Tested up to: 5.7.2
    6 Stable tag: 2.1.1
     6Stable tag: 2.1.2
    77
    88Ranking plugin using data from google analytics.
     
    9292= 2.1 =
    9393* refactoring
    94 = 2.1.1=
    95 * Fixed some error handling
     94= 2.1.1 =
     95* Fixed some error handling.
     96= 2.1.2 =
     97* Fixed a bug that prevented shortcodes from working.
  • simple-ga-ranking/trunk/simple-ga-ranking.php

    r2532344 r2532658  
    55Plugin URI: http://simple-ga-ranking.org
    66Description: Ranking plugin using data from google analytics.
    7 Version: 2.1.1
     7Version: 2.1.2
    88Author URI: http://simple-ga-ranking.org
    99Domain Path: /languages
     
    148148    } else {
    149149        // from Google Analytics API
     150        if ( ! is_object( $simple_ga_ranking ) || ! method_exists( $simple_ga_ranking , 'fetch' ) ) {
     151            $simple_ga_ranking = \Hametuha\GapiWP\Loader::analytics();
     152        }
    150153        $ga_args = array(
    151154                'start-index' => 1,
Note: See TracChangeset for help on using the changeset viewer.