Plugin Directory

Changeset 1961008


Ignore:
Timestamp:
10/23/2018 03:04:56 AM (7 years ago)
Author:
therealwebdisrupt
Message:

Couple logic to work better on Funnelemntals Pro detection

Location:
web-disrupt-elementor-extended-template-library
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • web-disrupt-elementor-extended-template-library/tags/1.0.2/README.txt

    r1961003 r1961008  
    44Requires at least: 4.6
    55Tested up to: 4.9.8
    6 Stable tag: 1.0.2
     6Stable tag: 1.0.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • web-disrupt-elementor-extended-template-library/tags/1.0.2/web-disrupt-elementor-library-unlimited.php

    r1961003 r1961008  
    155155        $print_string = "";
    156156        if(strpos(sanitize_text_field($_POST['required']), 'funnelmentals') !== false) {
    157             if(!file_exists(WP_PLUGIN_DIR."/web-disrupt-funnelmentals")){ $print_string = "funnelmentals"; wp_die(); }
    158             if(!file_exists(WP_PLUGIN_DIR."/web-disrupt-funnelmentals-premium")){ $print_string = "funnelmentals-pro"; wp_die(); }
     157            if(!file_exists(WP_PLUGIN_DIR."/web-disrupt-funnelmentals") || !file_exists(WP_PLUGIN_DIR."/web-disrupt-funnelmentals-premium")){ $print_string = "funnelmentals"; wp_die(); }
    159158        }
    160159        if (strpos(sanitize_text_field($_POST['required']), 'pro') !== false){
  • web-disrupt-elementor-extended-template-library/trunk/README.txt

    r1961003 r1961008  
    44Requires at least: 4.6
    55Tested up to: 4.9.8
    6 Stable tag: 1.0.2
     6Stable tag: 1.0.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • web-disrupt-elementor-extended-template-library/trunk/web-disrupt-elementor-library-unlimited.php

    r1961003 r1961008  
    155155        $print_string = "";
    156156        if(strpos(sanitize_text_field($_POST['required']), 'funnelmentals') !== false) {
    157             if(!file_exists(WP_PLUGIN_DIR."/web-disrupt-funnelmentals")){ $print_string = "funnelmentals"; wp_die(); }
    158             if(!file_exists(WP_PLUGIN_DIR."/web-disrupt-funnelmentals-premium")){ $print_string = "funnelmentals-pro"; wp_die(); }
     157            if(!file_exists(WP_PLUGIN_DIR."/web-disrupt-funnelmentals") || !file_exists(WP_PLUGIN_DIR."/web-disrupt-funnelmentals-premium")){ $print_string = "funnelmentals"; wp_die(); }
    159158        }
    160159        if (strpos(sanitize_text_field($_POST['required']), 'pro') !== false){
Note: See TracChangeset for help on using the changeset viewer.