Plugin Directory

Changeset 3293027


Ignore:
Timestamp:
05/14/2025 07:17:03 AM (11 months ago)
Author:
eventilla
Message:

Deploy version 2.0.5

Location:
eventilla-events
Files:
296 added
3 edited

Legend:

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

    r3292999 r3293027  
    66Tested up to: 6.7.1
    77Requires PHP: 7.4
    8 Stable tag: 2.0.4
     8Stable tag: 2.0.5
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5454
    5555=== Changelog ==
     56= 2.0.5 =
     57- Bug fixes
    5658= 2.0.4 =
    5759- Bug fixes
  • eventilla-events/trunk/eventilla-wp.php

    r3292999 r3293027  
    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:           2.0.4
     18 * Version:           2.0.5
    1919 * Author:            Eventilla
    2020 * Author URI:        http://www.eventilla.com
     
    3636 */
    3737if(!defined('EVENTILLA_WP_VERSION')) {
    38     define('EVENTILLA_WP_VERSION', '2.0.4');
     38    define('EVENTILLA_WP_VERSION', '2.0.5');
    3939}
    4040
  • eventilla-events/trunk/includes/class-eventilla-wp-scheduled-actions.php

    r3283302 r3293027  
    230230        foreach($event_uids as $event_uid) {
    231231            eventilla_get_logger()->info('Queued update for event '. $event_uid, ['event_id' => $event_uid]);
    232             as_schedule_single_action(time(), 'eventilla_wp_update_single_event', [$event_uid], 'eventilla_wp');
     232            as_schedule_single_action(time(), 'eventilla_wp_update_single_event', [0, $event_uid], 'eventilla_wp');
    233233        }
    234234       
     
    287287     * @return void
    288288     */
    289     public static function update_event(string $eventilla_uid): void {
     289    public static function update_event(int $event_wp_id, string $eventilla_uid): void {
    290290        eventilla_get_logger()->info('Updating event '. $eventilla_uid, ['eventilla_uid' => $eventilla_uid]);
    291291        Eventilla_Event::update_from_eventilla($eventilla_uid);
Note: See TracChangeset for help on using the changeset viewer.