Changeset 2331006
- Timestamp:
- 06/26/2020 04:34:09 AM (6 years ago)
- Location:
- neeed-dynamic-websites
- Files:
-
- 24 added
- 1 edited
-
tags/0.10.0 (added)
-
tags/0.10.0/builders (added)
-
tags/0.10.0/builders/dynweb-divi.php (added)
-
tags/0.10.0/css (added)
-
tags/0.10.0/css/dynweb.css (added)
-
tags/0.10.0/css/dynweb_admin.css (added)
-
tags/0.10.0/css/images (added)
-
tags/0.10.0/css/images/ui-icons_3b3b3b_256x240.png (added)
-
tags/0.10.0/css/images/ui-icons_777620_256x240.png (added)
-
tags/0.10.0/css/images/ui-icons_cc0000_256x240.png (added)
-
tags/0.10.0/css/images/ui-icons_ffffff_256x240.png (added)
-
tags/0.10.0/css/jquery-ui.min.css (added)
-
tags/0.10.0/dynweb-back-rules.php (added)
-
tags/0.10.0/dynweb-back-settings.php (added)
-
tags/0.10.0/dynweb-back.php (added)
-
tags/0.10.0/dynweb-front.php (added)
-
tags/0.10.0/dynweb-pointer.php (added)
-
tags/0.10.0/js (added)
-
tags/0.10.0/js/dynweb.js (added)
-
tags/0.10.0/js/dynweb_admin.js (added)
-
tags/0.10.0/js/dynweb_admin_functions.js (added)
-
tags/0.10.0/js/dynweb_functions.js (added)
-
tags/0.10.0/neeed-dynamic-websites.php (added)
-
tags/0.10.0/readme.txt (added)
-
trunk/neeed-dynamic-websites.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
neeed-dynamic-websites/trunk/neeed-dynamic-websites.php
r2237106 r2331006 4 4 Plugin URI: https://neeed.me 5 5 Description: 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. 06 Version: 0.10.1 7 7 Author: Sebastian Eisenbuerger, Jonas Breuer 8 8 Author URI: https://neeed.me … … 13 13 if (!defined('ABSPATH')) die; 14 14 15 define('DYNWEB_VERSION', '0.10. 0');15 define('DYNWEB_VERSION', '0.10.1'); 16 16 17 17 … … 191 191 static function init() { 192 192 $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) { 195 196 self::activation(); 196 197 update_option('dynweb-version', DYNWEB_VERSION); 198 update_option('dynweb-pro', DYNWEB_PRO); 197 199 } 198 200
Note: See TracChangeset
for help on using the changeset viewer.