Changeset 2817802
- Timestamp:
- 11/14/2022 04:55:29 PM (3 years ago)
- Location:
- memberspace
- Files:
-
- 6 edited
- 1 copied
-
tags/2.1.4 (copied) (copied from memberspace/trunk)
-
tags/2.1.4/includes/memberspace.php (modified) (2 diffs)
-
tags/2.1.4/memberspace.php (modified) (2 diffs)
-
tags/2.1.4/readme.md (modified) (2 diffs)
-
trunk/includes/memberspace.php (modified) (2 diffs)
-
trunk/memberspace.php (modified) (2 diffs)
-
trunk/readme.md (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
memberspace/tags/2.1.4/includes/memberspace.php
r2767964 r2817802 83 83 public function render_notification_bar() { 84 84 $notification_types = array( 'error', 'warning', 'success', 'info' ); 85 86 if ( 87 !isset( $_GET['notification_type'] ) || 88 !isset( $_GET['notification'] ) || 89 !in_array( $_GET['notification_type'], $notification_types, true ) 90 ) return; 91 85 92 $type = $_GET['notification_type']; 86 93 $message = $_GET['notification']; 87 88 if (89 !isset( $type ) ||90 !in_array( $type, $notification_types, true ) ||91 !isset( $message )92 ) return;93 94 94 95 if ( $type === 'success' ) { … … 198 199 199 200 public function handle_registration_complete_callback() { 200 if( $_GET['ms-registration-complete'] !== 'true' ) return;201 if( !isset($_GET['ms-registration-complete']) || $_GET['ms-registration-complete'] !== 'true' ) return; 201 202 202 203 $result = $this->refresh_site_config(); -
memberspace/tags/2.1.4/memberspace.php
r2805123 r2817802 5 5 * Plugin URI: http://www.memberspace.com/ 6 6 * Description: The official MemberSpace plugin allows you to protect your WordPress content using MemberSpace memberships. 7 * Version: 2.1. 37 * Version: 2.1.4 8 8 * Author: MemberSpace 9 9 * Author URI: http://www.memberspace.com/ … … 33 33 defined( 'ABSPATH' ) || exit; 34 34 35 define( 'MEMBERSPACE_PLUGIN_VERSION', '2.1. 3' );36 define( 'MEMBERSPACE_PLUGIN_BUILD_ID', '20221 026T162140X304059658' );35 define( 'MEMBERSPACE_PLUGIN_VERSION', '2.1.4' ); 36 define( 'MEMBERSPACE_PLUGIN_BUILD_ID', '20221114T165519X045827899' ); 37 37 define( 'MEMBERSPACE_PLUGIN_MIN_PHP_VERSION', '7.4' ); 38 38 -
memberspace/tags/2.1.4/readme.md
r2805123 r2817802 4 4 Requires at least: 5.8 5 5 Tested up to: 6.1 6 Stable tag: 2.1. 36 Stable tag: 2.1.4 7 7 Requires PHP: 7.4 8 8 License: GPLv3 … … 121 121 == Changelog == 122 122 123 = 2.1.4 = 124 125 - Fix php warning on registration complete query param check 126 123 127 = 2.1.3 = 124 128 -
memberspace/trunk/includes/memberspace.php
r2767964 r2817802 83 83 public function render_notification_bar() { 84 84 $notification_types = array( 'error', 'warning', 'success', 'info' ); 85 86 if ( 87 !isset( $_GET['notification_type'] ) || 88 !isset( $_GET['notification'] ) || 89 !in_array( $_GET['notification_type'], $notification_types, true ) 90 ) return; 91 85 92 $type = $_GET['notification_type']; 86 93 $message = $_GET['notification']; 87 88 if (89 !isset( $type ) ||90 !in_array( $type, $notification_types, true ) ||91 !isset( $message )92 ) return;93 94 94 95 if ( $type === 'success' ) { … … 198 199 199 200 public function handle_registration_complete_callback() { 200 if( $_GET['ms-registration-complete'] !== 'true' ) return;201 if( !isset($_GET['ms-registration-complete']) || $_GET['ms-registration-complete'] !== 'true' ) return; 201 202 202 203 $result = $this->refresh_site_config(); -
memberspace/trunk/memberspace.php
r2805123 r2817802 5 5 * Plugin URI: http://www.memberspace.com/ 6 6 * Description: The official MemberSpace plugin allows you to protect your WordPress content using MemberSpace memberships. 7 * Version: 2.1. 37 * Version: 2.1.4 8 8 * Author: MemberSpace 9 9 * Author URI: http://www.memberspace.com/ … … 33 33 defined( 'ABSPATH' ) || exit; 34 34 35 define( 'MEMBERSPACE_PLUGIN_VERSION', '2.1. 3' );36 define( 'MEMBERSPACE_PLUGIN_BUILD_ID', '20221 026T162140X304059658' );35 define( 'MEMBERSPACE_PLUGIN_VERSION', '2.1.4' ); 36 define( 'MEMBERSPACE_PLUGIN_BUILD_ID', '20221114T165519X045827899' ); 37 37 define( 'MEMBERSPACE_PLUGIN_MIN_PHP_VERSION', '7.4' ); 38 38 -
memberspace/trunk/readme.md
r2805123 r2817802 4 4 Requires at least: 5.8 5 5 Tested up to: 6.1 6 Stable tag: 2.1. 36 Stable tag: 2.1.4 7 7 Requires PHP: 7.4 8 8 License: GPLv3 … … 121 121 == Changelog == 122 122 123 = 2.1.4 = 124 125 - Fix php warning on registration complete query param check 126 123 127 = 2.1.3 = 124 128
Note: See TracChangeset
for help on using the changeset viewer.