Plugin Directory

Changeset 3214229


Ignore:
Timestamp:
12/28/2024 05:43:35 PM (15 months ago)
Author:
eventilla
Message:

Removed unused MD5-encoding.

Location:
eventilla-events/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • eventilla-events/trunk/README.txt

    r3134115 r3214229  
    44Tags: events, event
    55Requires at least: 6.0
    6 Tested up to: 6.6.1
     6Tested up to: 6.7.1
    77Requires PHP: 7.4
    8 Stable tag: 1.8.2
     8Stable tag: 1.8.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4646
    4747== Changelog ==
     48= 1.8.3 =
     49Removed unused MD5-encoding that blocked single event registration process.
    4850= 1.8.2 =
    4951Removed die()-functions in favour of error logging.
  • eventilla-events/trunk/eventilla-wp.php

    r3134115 r3214229  
    1616 * Plugin URI:        https://www.eventilla.com/
    1717 * Description:       Eventilla Events brings your event information from eventilla.com to WordPress as custom posts.
    18  * Version:           1.8.2
     18 * Version:           1.8.3
    1919 * Author:            Eventilla
    2020 * Author URI:        http://www.eventilla.com
  • eventilla-events/trunk/includes/class-eventilla-wp-api-request-v2.php

    r3134115 r3214229  
    231231        $date = gmdate( 'D, d M Y H:i:s T' );
    232232
    233         $content_md5 = base64_encode( md5( $post_body_array, true ) ); // Optional for future use perhaps.
     233        //$content_md5 = base64_encode( md5( $post_body_array, true ) ); // Optional for future use perhaps.
    234234        $content_md5 = ''; // Optional for future use perhaps.
    235235        $content_type = 'application/x-www-form-urlencoded';
Note: See TracChangeset for help on using the changeset viewer.