Changeset 3480366
- Timestamp:
- 03/11/2026 04:22:58 PM (2 weeks ago)
- Location:
- restrict-content/tags/3.2.24
- Files:
-
- 8 edited
- 1 copied
-
. (copied) (copied from restrict-content/trunk)
-
composer.json (modified) (1 diff)
-
core/includes/batch/csv-imports/class-import-payments.php (modified) (2 diffs)
-
core/includes/class-restrict-content.php (modified) (1 diff)
-
lang/restrict-content.pot (modified) (1 diff)
-
legacy/restrictcontent.php (modified) (1 diff)
-
package.json (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
restrictcontent.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
restrict-content/tags/3.2.24/composer.json
r3469745 r3480366 1 1 { 2 2 "name": "restrictcontent/restrict-content", 3 "version": "3.2.2 3",3 "version": "3.2.24", 4 4 "type": "wordpress-plugin", 5 5 "description": "A simple, yet powerful membership solution for WordPress.", -
restrict-content/tags/3.2.24/core/includes/batch/csv-imports/class-import-payments.php
r3420370 r3480366 151 151 * Get payment data from the row 152 152 * 153 * @param array $row 153 * @param array $row Row data from the CSV file. 154 154 * 155 155 * @since 3.4 156 * @since 3.5.57 Fix incorrect date array key. 156 157 * @return array|WP_Error 157 158 */ … … 162 163 // Date. 163 164 if ( ! empty( $this->field_map['date'] ) && ! empty( $row[ $this->field_map['date'] ] ) ) { 164 $date = $row[ $this->field_map[' membership_level_name'] ];165 $date = $row[ $this->field_map['date'] ]; 165 166 166 167 // Convert it to our desired format. 167 $data['date'] = date( 'Y-m-d H:i:s', strtotime( $date, current_time( 'timestamp' )) );168 $data['date'] = wp_date( 'Y-m-d H:i:s', strtotime( $date ) ); 168 169 } 169 170 -
restrict-content/tags/3.2.24/core/includes/class-restrict-content.php
r3469745 r3480366 27 27 */ 28 28 final class Restrict_Content_Pro { 29 const VERSION = '3.5.5 6';29 const VERSION = '3.5.57'; 30 30 31 31 /** -
restrict-content/tags/3.2.24/lang/restrict-content.pot
r3469745 r3480366 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Restrict Content 3.2.2 3\n"5 "Project-Id-Version: Restrict Content 3.2.24\n" 6 6 "Report-Msgid-Bugs-To: http://ithemes.com/support/\n" 7 "POT-Creation-Date: 2026-0 2-25 21:52:49+00:00\n"7 "POT-Creation-Date: 2026-03-11 16:09:47+00:00\n" 8 8 "PO-Revision-Date: 2026-MO-DA HO:MI+ZONE\n" 9 9 "MIME-Version: 1.0\n" -
restrict-content/tags/3.2.24/legacy/restrictcontent.php
r3469745 r3480366 22 22 23 23 if ( ! defined( 'RC_PLUGIN_VERSION' ) ) { 24 define( 'RC_PLUGIN_VERSION', '3.2.2 3' );24 define( 'RC_PLUGIN_VERSION', '3.2.24' ); 25 25 } 26 26 -
restrict-content/tags/3.2.24/package.json
r3469745 r3480366 1 1 { 2 2 "name": "restrict-content", 3 "version": "3.2.2 3",3 "version": "3.2.24", 4 4 "description": "Set up a complete membership system for your WordPress site and deliver premium content to your members. Unlimited membership packages, membership management, discount codes, registration / login forms, and more.", 5 5 "homepage": "https://restrictcontentpro.com/", -
restrict-content/tags/3.2.24/readme.txt
r3469745 r3480366 7 7 Requires PHP: 7.4 8 8 Tested up to: 6.9 9 Stable tag: 3.2.2 39 Stable tag: 3.2.24 10 10 11 11 Restrict Content is a powerful WordPress membership plugin that gives you full control over who can and cannot view content on your WordPress site. … … 258 258 == Changelog == 259 259 260 = 3.2.24 = 261 * Fix: Fixed incorrect date array key in payment import process. 262 260 263 = 3.2.23 = 261 264 * Security: Strengthened security measures for processing payments with Stripe. -
restrict-content/tags/3.2.24/restrictcontent.php
r3469745 r3480366 4 4 * Plugin URI: https://restrictcontentpro.com 5 5 * Description: Set up a complete membership system for your WordPress site and deliver premium content to your members. Unlimited membership packages, membership management, discount codes, registration / login forms, and more. 6 * Version: 3.2.2 36 * Version: 3.2.24 7 7 * Author: StellarWP 8 8 * Author URI: https://stellarwp.com/ … … 19 19 define('RCP_ROOT', plugin_dir_path(__FILE__)); 20 20 define('RCP_WEB_ROOT', plugin_dir_url(__FILE__)); 21 define('RCF_VERSION', '3.2.2 3');21 define('RCF_VERSION', '3.2.24'); 22 22 23 23 // Load Strauss autoload.
Note: See TracChangeset
for help on using the changeset viewer.