Plugin Directory

Changeset 3480366


Ignore:
Timestamp:
03/11/2026 04:22:58 PM (2 weeks ago)
Author:
claudiosanches
Message:

Tagging version 3.2.24

Location:
restrict-content/tags/3.2.24
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • restrict-content/tags/3.2.24/composer.json

    r3469745 r3480366  
    11{
    22    "name": "restrictcontent/restrict-content",
    3     "version": "3.2.23",
     3    "version": "3.2.24",
    44    "type": "wordpress-plugin",
    55    "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  
    151151     * Get payment data from the row
    152152     *
    153      * @param array $row
     153     * @param array $row Row data from the CSV file.
    154154     *
    155155     * @since 3.4
     156     * @since 3.5.57 Fix incorrect date array key.
    156157     * @return array|WP_Error
    157158     */
     
    162163        // Date.
    163164        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'] ];
    165166
    166167            // 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 ) );
    168169        }
    169170
  • restrict-content/tags/3.2.24/core/includes/class-restrict-content.php

    r3469745 r3480366  
    2727     */
    2828    final class Restrict_Content_Pro {
    29         const VERSION = '3.5.56';
     29        const VERSION = '3.5.57';
    3030
    3131        /**
  • restrict-content/tags/3.2.24/lang/restrict-content.pot

    r3469745 r3480366  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Restrict Content 3.2.23\n"
     5"Project-Id-Version: Restrict Content 3.2.24\n"
    66"Report-Msgid-Bugs-To: http://ithemes.com/support/\n"
    7 "POT-Creation-Date: 2026-02-25 21:52:49+00:00\n"
     7"POT-Creation-Date: 2026-03-11 16:09:47+00:00\n"
    88"PO-Revision-Date: 2026-MO-DA HO:MI+ZONE\n"
    99"MIME-Version: 1.0\n"
  • restrict-content/tags/3.2.24/legacy/restrictcontent.php

    r3469745 r3480366  
    2222
    2323if ( ! defined( 'RC_PLUGIN_VERSION' ) ) {
    24     define( 'RC_PLUGIN_VERSION', '3.2.23' );
     24    define( 'RC_PLUGIN_VERSION', '3.2.24' );
    2525}
    2626
  • restrict-content/tags/3.2.24/package.json

    r3469745 r3480366  
    11{
    22  "name": "restrict-content",
    3   "version": "3.2.23",
     3  "version": "3.2.24",
    44  "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.",
    55  "homepage": "https://restrictcontentpro.com/",
  • restrict-content/tags/3.2.24/readme.txt

    r3469745 r3480366  
    77Requires PHP: 7.4
    88Tested up to: 6.9
    9 Stable tag: 3.2.23
     9Stable tag: 3.2.24
    1010
    1111Restrict Content is a powerful WordPress membership plugin that gives you full control over who can and cannot view content on your WordPress site.
     
    258258== Changelog ==
    259259
     260= 3.2.24 =
     261* Fix: Fixed incorrect date array key in payment import process.
     262
    260263= 3.2.23 =
    261264* Security: Strengthened security measures for processing payments with Stripe.
  • restrict-content/tags/3.2.24/restrictcontent.php

    r3469745 r3480366  
    44 * Plugin URI: https://restrictcontentpro.com
    55 * 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.23
     6 * Version: 3.2.24
    77 * Author: StellarWP
    88 * Author URI: https://stellarwp.com/
     
    1919define('RCP_ROOT', plugin_dir_path(__FILE__));
    2020define('RCP_WEB_ROOT', plugin_dir_url(__FILE__));
    21 define('RCF_VERSION', '3.2.23');
     21define('RCF_VERSION', '3.2.24');
    2222
    2323// Load Strauss autoload.
Note: See TracChangeset for help on using the changeset viewer.