Changeset 1970945
- Timestamp:
- 11/08/2018 01:42:28 PM (7 years ago)
- Location:
- wp-visitorflow/trunk
- Files:
-
- 5 edited
-
includes/classes/class-wp-visitorflow-config.php (modified) (1 diff)
-
includes/classes/class-wp-visitorflow-database.php (modified) (1 diff)
-
includes/classes/class-wp-visitorflow-maintenance.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-visitorflow.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-visitorflow/trunk/includes/classes/class-wp-visitorflow-config.php
r1961151 r1970945 16 16 private static $instance = NULL; 17 17 18 protected $settings = [];// Plugin's general options/settings19 protected $user_settings = [];// User's options/settings18 protected $settings = array(); // Plugin's general options/settings 19 protected $user_settings = array(); // User's options/settings 20 20 protected $user_id = 0; // ID of current Wordpress user 21 21 protected $datetime = 0; // current date and time -
wp-visitorflow/trunk/includes/classes/class-wp-visitorflow-database.php
r1965312 r1970945 18 18 19 19 private static $db; // WordPress database object 20 private static $table_name = [];// Hash array with db table names20 private static $table_name = array(); // Hash array with db table names 21 21 22 22 /** -
wp-visitorflow/trunk/includes/classes/class-wp-visitorflow-maintenance.php
r1965312 r1970945 18 18 19 19 private static $db; // WordPress database object 20 private static $table_name = []; // Hash array with db table names20 private static $table_name = array(); // Hash array with db table names 21 21 22 22 /** -
wp-visitorflow/trunk/readme.txt
r1965331 r1970945 4 4 Tags: statistics, analytics, web analytics, stats, visits, visitors, page, page view, pageviews, page hit, visitor flow, pagerank, bounce, bounce rate, exit page, web stats 5 5 Requires at least: 3.5 6 Requires PHP: 5.4 6 7 Tested up to: 4.9.8 7 Stable tag: 1.5. 28 Stable tag: 1.5.3 8 9 License: GPLv2 or later 9 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 94 95 95 96 == Changelog == 97 = 1.5.3 = 98 * Bugfix: PHP 5.4 requirement 99 96 100 = 1.5.2 = 97 101 * Some minor bugfixes -
wp-visitorflow/trunk/wp-visitorflow.php
r1965312 r1970945 4 4 * Plugin URI: https://www.datacodedesign.de/index.php/wp-visitorflow/ 5 5 * Description: Detailed web analytics and visualization of your website's visitor flow 6 * Version: 1.5. 26 * Version: 1.5.3 7 7 * Author: Onno Gabriel, DataCodeDesign 8 8 * Author URI: http://www.onno-gabriel.de … … 36 36 // Global constants 37 37 define( 'WP_VISITORFLOW_VERSION', '1.5.1' ); 38 define( 'WP_VISITORFLOW_REQUIRED_PHP_VERSION', '5. 3.0' );38 define( 'WP_VISITORFLOW_REQUIRED_PHP_VERSION', '5.4.0' ); 39 39 define( 'WP_VISITORFLOW_PLUGIN_PATH', trailingslashit( dirname( __FILE__ ) ) ); 40 40 define( 'WP_VISITORFLOW_PLUGIN_URL', trailingslashit( plugins_url( 'wp-visitorflow' ) ) );
Note: See TracChangeset
for help on using the changeset viewer.