Changeset 1713272
- Timestamp:
- 08/14/2017 04:31:31 PM (9 years ago)
- Location:
- dovetail/trunk
- Files:
-
- 3 edited
-
FP-members.php (modified) (1 diff)
-
classes/class.role-editor.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dovetail/trunk/FP-members.php
r1713269 r1713272 14 14 * Description: Dovetail adds basic yet beautiful membership tools to your WordPress website. Use and enjoy. 15 15 * Author: Rigorous & Factory Pattern 16 * Version: 1.2.1 216 * Version: 1.2.13 17 17 * Author URI: https://rigorous-digital.co.uk/author/admin 18 18 */ -
dovetail/trunk/classes/class.role-editor.php
r1713269 r1713272 70 70 $slug = 'member-level'; 71 71 72 // If this isn't a 'book' post, don't update it. 73 if ( !isset( $_POST['post_type'] ) && $slug != $_POST['post_type'] ) { 72 // If this isn't a 'member-level' post, don't update it. 73 if ( !isset( $_POST['post_type'] ) ) { 74 return; 75 } 76 if ( $slug != $_POST['post_type'] ) { 74 77 return; 75 78 } -
dovetail/trunk/readme.txt
r1713269 r1713272 51 51 52 52 == Changelog == 53 54 = 1.2.13 = 55 56 * Fixed PHP warning for undefined index when checking created post type 53 57 54 58 = 1.2.12 =
Note: See TracChangeset
for help on using the changeset viewer.