Changeset 2007794
- Timestamp:
- 01/07/2019 02:27:14 PM (7 years ago)
- Location:
- convertful
- Files:
-
- 2 edited
- 4 copied
-
tags/1.6 (copied) (copied from convertful/trunk)
-
tags/1.6/convertful.php (copied) (copied from convertful/trunk/convertful.php) (2 diffs)
-
tags/1.6/functions/admin_pages.php (copied) (copied from convertful/trunk/functions/admin_pages.php)
-
tags/1.6/readme.txt (copied) (copied from convertful/trunk/readme.txt) (2 diffs)
-
trunk/convertful.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
convertful/tags/1.6/convertful.php
r2002204 r2007794 3 3 /** 4 4 * Plugin Name: Convertful - Your Ultimate On-Site Conversion Tool 5 * Version: 1. 55 * Version: 1.6 6 6 * Plugin URI: https://convertful.com/ 7 7 * Description: All the modern on-site conversion solutions, natively integrates with all modern Email Marketing Platforms. … … 70 70 'categories' => $categories, 71 71 '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' ), 73 73 ) ); 74 74 } -
convertful/tags/1.6/readme.txt
r2002204 r2007794 4 4 Requires at least: 4.0 5 5 Tested up to: 5.0.2 6 Stable tag: 1. 56 Stable tag: 1.6 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 93 93 == Changelog == 94 94 95 = 1.6 = 96 * Fixed widgets' targeting by whether visitor is a guest 97 95 98 = 1.5 = 96 99 * Added widgets' targeting by post types -
convertful/trunk/convertful.php
r2002204 r2007794 3 3 /** 4 4 * Plugin Name: Convertful - Your Ultimate On-Site Conversion Tool 5 * Version: 1. 55 * Version: 1.6 6 6 * Plugin URI: https://convertful.com/ 7 7 * Description: All the modern on-site conversion solutions, natively integrates with all modern Email Marketing Platforms. … … 70 70 'categories' => $categories, 71 71 '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' ), 73 73 ) ); 74 74 } -
convertful/trunk/readme.txt
r2002204 r2007794 4 4 Requires at least: 4.0 5 5 Tested up to: 5.0.2 6 Stable tag: 1. 56 Stable tag: 1.6 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 93 93 == Changelog == 94 94 95 = 1.6 = 96 * Fixed widgets' targeting by whether visitor is a guest 97 95 98 = 1.5 = 96 99 * Added widgets' targeting by post types
Note: See TracChangeset
for help on using the changeset viewer.