Plugin Directory

Changeset 1970945


Ignore:
Timestamp:
11/08/2018 01:42:28 PM (7 years ago)
Author:
Friese
Message:

Version 1.5.3

Location:
wp-visitorflow/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • wp-visitorflow/trunk/includes/classes/class-wp-visitorflow-config.php

    r1961151 r1970945  
    1616    private static $instance = NULL;
    1717
    18     protected $settings = [];           // Plugin's general options/settings
    19     protected $user_settings = [];      // User's options/settings
     18    protected $settings = array();      // Plugin's general options/settings
     19    protected $user_settings = array(); // User's options/settings
    2020    protected $user_id = 0;             // ID of current Wordpress user
    2121    protected $datetime = 0;            // current date and time
  • wp-visitorflow/trunk/includes/classes/class-wp-visitorflow-database.php

    r1965312 r1970945  
    1818
    1919    private static $db;                     // WordPress database object
    20     private static $table_name = [];            // Hash array with db table names
     20    private static $table_name = array();   // Hash array with db table names
    2121
    2222    /**
  • wp-visitorflow/trunk/includes/classes/class-wp-visitorflow-maintenance.php

    r1965312 r1970945  
    1818
    1919    private static $db;                     // WordPress database object
    20     private static $table_name = [];            // Hash array with db table names
     20    private static $table_name = array();           // Hash array with db table names
    2121
    2222    /**
  • wp-visitorflow/trunk/readme.txt

    r1965331 r1970945  
    44Tags: statistics, analytics, web analytics, stats, visits, visitors, page, page view, pageviews, page hit, visitor flow, pagerank, bounce, bounce rate, exit page, web stats
    55Requires at least: 3.5
     6Requires PHP: 5.4
    67Tested up to:  4.9.8
    7 Stable tag: 1.5.2
     8Stable tag: 1.5.3
    89License: GPLv2 or later
    910License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9495
    9596== Changelog ==
     97= 1.5.3 =
     98* Bugfix: PHP 5.4 requirement
     99
    96100= 1.5.2 =
    97101* Some minor bugfixes
  • wp-visitorflow/trunk/wp-visitorflow.php

    r1965312 r1970945  
    44 * Plugin URI: https://www.datacodedesign.de/index.php/wp-visitorflow/
    55 * Description: Detailed web analytics and visualization of your website's visitor flow
    6  * Version: 1.5.2
     6 * Version: 1.5.3
    77 * Author: Onno Gabriel, DataCodeDesign
    88 * Author URI: http://www.onno-gabriel.de
     
    3636// Global constants
    3737define( 'WP_VISITORFLOW_VERSION', '1.5.1' );
    38 define( 'WP_VISITORFLOW_REQUIRED_PHP_VERSION', '5.3.0' );
     38define( 'WP_VISITORFLOW_REQUIRED_PHP_VERSION', '5.4.0' );
    3939define( 'WP_VISITORFLOW_PLUGIN_PATH', trailingslashit( dirname(  __FILE__ ) ) );
    4040define( 'WP_VISITORFLOW_PLUGIN_URL', trailingslashit( plugins_url(  'wp-visitorflow' ) ) );
Note: See TracChangeset for help on using the changeset viewer.