Plugin Directory

Changeset 2331006


Ignore:
Timestamp:
06/26/2020 04:34:09 AM (6 years ago)
Author:
JonasBreuer
Message:

release 0.10.1

Location:
neeed-dynamic-websites
Files:
24 added
1 edited

Legend:

Unmodified
Added
Removed
  • neeed-dynamic-websites/trunk/neeed-dynamic-websites.php

    r2237106 r2331006  
    44Plugin URI:     https://neeed.me
    55Description:    NEEED helps you to individually communicate with your visitors. Show dynamic content based on the situation, history and behavior of each visitor.
    6 Version:        0.10.0
     6Version:        0.10.1
    77Author:         Sebastian Eisenbuerger, Jonas Breuer
    88Author URI:     https://neeed.me
     
    1313if (!defined('ABSPATH')) die;
    1414
    15 define('DYNWEB_VERSION', '0.10.0');
     15define('DYNWEB_VERSION', '0.10.1');
    1616
    1717
     
    191191    static function init() {
    192192        $version = get_option('dynweb-version', '0.0.0');
    193        
    194         if ($version != DYNWEB_VERSION) {
     193        $pro = get_option('dynweb-pro', false);
     194       
     195        if ($version != DYNWEB_VERSION || $pro != DYNWEB_PRO) {
    195196            self::activation();
    196197            update_option('dynweb-version', DYNWEB_VERSION);
     198            update_option('dynweb-pro', DYNWEB_PRO);
    197199        }
    198200       
Note: See TracChangeset for help on using the changeset viewer.