Download Monitor - Version 4.4.2

Version Description

Download this release

Release Info

Developer barrykooij
Plugin Icon 128x128 Download Monitor
Version 4.4.2
Comparing to
See all releases

Code changes from version 4.4.1 to 4.4.2

Files changed (3) hide show
  1. download-monitor.php +2 -2
  2. readme.txt +5 -2
  3. src/Shop/bootstrap.php +1 -1
download-monitor.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Download Monitor
4
  Plugin URI: https://www.download-monitor.com
5
  Description: A full solution for managing and selling downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.
6
- Version: 4.4.1
7
  Author: Never5
8
  Author URI: https://www.never5.com
9
  Requires at least: 3.8
@@ -33,7 +33,7 @@ if ( ! defined( 'ABSPATH' ) ) {
33
  } // Exit if accessed directly
34
 
35
  // Define DLM Version
36
- define( 'DLM_VERSION', '4.4.1' );
37
 
38
  // Define DLM FILE
39
  define( 'DLM_PLUGIN_FILE', __FILE__ );
3
  Plugin Name: Download Monitor
4
  Plugin URI: https://www.download-monitor.com
5
  Description: A full solution for managing and selling downloadable files, monitoring downloads and outputting download links and file information on your WordPress powered site.
6
+ Version: 4.4.2
7
  Author: Never5
8
  Author URI: https://www.never5.com
9
  Requires at least: 3.8
33
  } // Exit if accessed directly
34
 
35
  // Define DLM Version
36
+ define( 'DLM_VERSION', '4.4.2' );
37
 
38
  // Define DLM FILE
39
  define( 'DLM_PLUGIN_FILE', __FILE__ );
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.barrykooij.com/donate/
4
  Tags: download, downloads, monitor, hits, download monitor, tracking, admin, count, counter, files, versions, download count, logging, AJAX, digital, documents, download category, download manager, download template, downloadmanager, file manager, file tree, grid, hits, ip-address, manager, media, monitor, password, protect downloads, tracker, sell, shop, ecommerce, paypal
5
  Requires at least: 3.8
6
  Tested up to: 5.1.1
7
- Stable tag: 4.4.1
8
  License: GPLv3
9
  Text Domain: -
10
  Requires PHP: 5.3
@@ -118,6 +118,9 @@ More documentation can be found in our [Knowledge Base](https://www.download-mon
118
 
119
  == Changelog ==
120
 
 
 
 
121
  = 4.4.1: March 27, 2019 =
122
  * Tweak: Added proper html escaping to order overview page, props Nam.Dinh.
123
 
@@ -544,4 +547,4 @@ More documentation can be found in our [Knowledge Base](https://www.download-mon
544
  = 1.0.0 =
545
  * Complete rewrite of the plugin making use of custom post types and other best practices. Fresh start version '1' to prevent auto-updates (legacy importer needs to be used to migrate from old versions).
546
 
547
- == Upgrade Notice ==
4
  Tags: download, downloads, monitor, hits, download monitor, tracking, admin, count, counter, files, versions, download count, logging, AJAX, digital, documents, download category, download manager, download template, downloadmanager, file manager, file tree, grid, hits, ip-address, manager, media, monitor, password, protect downloads, tracker, sell, shop, ecommerce, paypal
5
  Requires at least: 3.8
6
  Tested up to: 5.1.1
7
+ Stable tag: 4.4.2
8
  License: GPLv3
9
  Text Domain: -
10
  Requires PHP: 5.3
118
 
119
  == Changelog ==
120
 
121
+ = 4.4.2: April 3, 2019 =
122
+ * Tweak: Fixed an relative inclusion bug that sometimes caused bootstrap not to properly load. (Undefined function dlm_is_shop_enabled()).
123
+
124
  = 4.4.1: March 27, 2019 =
125
  * Tweak: Added proper html escaping to order overview page, props Nam.Dinh.
126
 
547
  = 1.0.0 =
548
  * Complete rewrite of the plugin making use of custom post types and other best practices. Fresh start version '1' to prevent auto-updates (legacy importer needs to be used to migrate from old versions).
549
 
550
+ == Upgrade Notice ==
src/Shop/bootstrap.php CHANGED
@@ -25,7 +25,7 @@ if ( ! defined( 'ABSPATH' ) ) {
25
  /**
26
  * Import functions file
27
  */
28
- require_once( 'functions.php' );
29
 
30
  if ( ! dlm_is_shop_enabled() ) {
31
  return;
25
  /**
26
  * Import functions file
27
  */
28
+ require_once( plugin_dir_path( DLM_PLUGIN_FILE ) . 'src/Shop/functions.php' );
29
 
30
  if ( ! dlm_is_shop_enabled() ) {
31
  return;