Skip to content

Commit

Permalink
Fixed woocommerce dependency error
Browse files Browse the repository at this point in the history
Fix an issue that prevented the plugin from working when woocommerce plugin was not active
  • Loading branch information
michelve committed Nov 7, 2019
1 parent bfb751f commit b512e57
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions software-license-manager.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/*
Plugin Name: Software License Manager
Version: 5.1.4
Version: 5.1.5
Plugin URI: https://github.com/michelve/software-license-manager/
Author: Michel Velis
Author URI: https://www.epikly.com/
Expand All @@ -19,8 +19,8 @@
global $wpdb, $slm_debug_logger;

//Short name/slug "SLM" or "slm"
define('SLM_VERSION', '5.1.4');
define('SLM_DB_VERSION', '4.1.1');
define('SLM_VERSION', '5.1.5');
define('SLM_DB_VERSION', '4.1.2');
define('SLM_REWRITE_VERSION', '2.3.0');
define('SLM_FOLDER', dirname(plugin_basename(__FILE__)));
define('SLM_URL', plugins_url('' ,__FILE__));
Expand Down

0 comments on commit b512e57

Please sign in to comment.