From 10b1e5c81d6a85f22a64b50cd1e66407fc8ebc74 Mon Sep 17 00:00:00 2001 From: padams Date: Wed, 10 Nov 2021 00:04:10 +0000 Subject: [PATCH] bumping version, changing name of constant. --- README.txt | 4 ++-- owa-plugin.php | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.txt b/README.txt index 6e285c8..e34c8b4 100644 --- a/README.txt +++ b/README.txt @@ -2,12 +2,12 @@ Contributors: padams Donate link: http://paypal.me/openwebanalytics -Tags: web analytics, user tracking, clickstream, traffic analysis, traffic reporting +Tags: web analytics, user tracking, clickstream, traffic analysis, traffic reporting, open web analytics, owa License: GPLv3 License URI: http://www.gnu.org/licenses/gpl.html Requires at least: 5.2.0 Tested up to: 5.8 -Stable tag: 2.1.0 +Stable tag: 2.1.1 The official plugin for integrating Open Web Analytics with WordPress based web sites and applications. diff --git a/owa-plugin.php b/owa-plugin.php index e0eccaf..ed7fdbc 100644 --- a/owa-plugin.php +++ b/owa-plugin.php @@ -5,7 +5,7 @@ Plugin URI: http://www.openwebanalytics.com Description: This plugin enables Wordpress blog owners to use the Open Web Analytics Framework. Author: Peter Adams -Version: 2.1.0 +Version: 2.1.1 Author URI: http://www.openwebanalytics.com */ @@ -31,7 +31,9 @@ } // Define the plugin path constant -define('OWA_WP_PATH', plugin_dir_path( __FILE__ ) ); + + +define('OWA_WP_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); // Hook package creation @@ -42,7 +44,7 @@ ///////////////////////////////////////////////////////////////////////////////// -require_once( OWA_WP_PATH .'/vendor/autoload.php' ); +require_once( OWA_WP_PLUGIN_PATH .'/vendor/autoload.php' ); use owaWp\module; use owaWp\util;