Plugin Directory

Changeset 2007794


Ignore:
Timestamp:
01/07/2019 02:27:14 PM (7 years ago)
Author:
rsukhar
Message:

Tagging version 1.6

Location:
convertful
Files:
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • convertful/tags/1.6/convertful.php

    r2002204 r2007794  
    33/**
    44 * Plugin Name: Convertful - Your Ultimate On-Site Conversion Tool
    5  * Version: 1.5
     5 * Version: 1.6
    66 * Plugin URI: https://convertful.com/
    77 * Description: All the modern on-site conversion solutions, natively integrates with all modern Email Marketing Platforms.
     
    7070        'categories' => $categories,
    7171        'tags' => $tags,
    72         'userRoles' => ( $user_meta instanceof WP_User ) ? $user_meta->roles : array( 'guest' ),
     72        'userRoles' => ( $user_meta instanceof WP_User AND ! empty($user_meta->roles) ) ? $user_meta->roles : array( 'guest' ),
    7373    ) );
    7474}
  • convertful/tags/1.6/readme.txt

    r2002204 r2007794  
    44Requires at least: 4.0
    55Tested up to: 5.0.2
    6 Stable tag: 1.5
     6Stable tag: 1.6
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9393== Changelog ==
    9494
     95= 1.6 =
     96* Fixed widgets' targeting by whether visitor is a guest
     97
    9598= 1.5 =
    9699* Added widgets' targeting by post types
  • convertful/trunk/convertful.php

    r2002204 r2007794  
    33/**
    44 * Plugin Name: Convertful - Your Ultimate On-Site Conversion Tool
    5  * Version: 1.5
     5 * Version: 1.6
    66 * Plugin URI: https://convertful.com/
    77 * Description: All the modern on-site conversion solutions, natively integrates with all modern Email Marketing Platforms.
     
    7070        'categories' => $categories,
    7171        'tags' => $tags,
    72         'userRoles' => ( $user_meta instanceof WP_User ) ? $user_meta->roles : array( 'guest' ),
     72        'userRoles' => ( $user_meta instanceof WP_User AND ! empty($user_meta->roles) ) ? $user_meta->roles : array( 'guest' ),
    7373    ) );
    7474}
  • convertful/trunk/readme.txt

    r2002204 r2007794  
    44Requires at least: 4.0
    55Tested up to: 5.0.2
    6 Stable tag: 1.5
     6Stable tag: 1.6
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9393== Changelog ==
    9494
     95= 1.6 =
     96* Fixed widgets' targeting by whether visitor is a guest
     97
    9598= 1.5 =
    9699* Added widgets' targeting by post types
Note: See TracChangeset for help on using the changeset viewer.