Plugin Directory

Changeset 3298914


Ignore:
Timestamp:
05/22/2025 04:47:01 PM (11 months ago)
Author:
aldeng
Message:

5.0.3

Location:
event-agent/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • event-agent/trunk/README.txt

    r3298910 r3298914  
    99Requires at least: 6.0
    1010Tested up to:      7.0
    11 Stable tag:        5.0.2
    12 Version:           5.0.2
     11Stable tag:        5.0.3
     12Version:           5.0.3
    1313License:           GPLv2 or later
    1414License URI:       http://www.gnu.org/licenses/gpl-2.0.html
  • event-agent/trunk/event-agent.php

    r3298910 r3298914  
    1111 * Plugin URI:        https://www.eventagent.ai/
    1212 * Description:       EventAgent.ai combines a next generation event management system with AI-powered marketing to maximize your sales.  AI makes all the difference.
    13  * Version:           5.0.2
     13 * Version:           5.0.3
    1414 * Requires at least: 6.0
    1515 * Requires PHP:      8.0
     
    2525}
    2626
    27 define( 'EVENT_AGENT_VERSION', '5.0.2' );
     27define( 'EVENT_AGENT_VERSION', '5.0.3' );
    2828
    2929require_once dirname(__FILE__).'/includes/activate.php';
  • event-agent/trunk/public/js/checkin-vue.js

    r3298910 r3298914  
    4343                var params = new URLSearchParams(window.location.search);
    4444
    45                 if (!params.get('code')) {
    46                     this.$message.error({ message: eaTranslate('This page will only accept a donation with a valid registration code.'), offset: 40 });
     45                if (!params.get('code') || !params.get('eventId')) {
     46                    this.$message.error({ message: eaTranslate('This page will only accept a donation with a valid registration code and event ID.'), offset: 40 });
    4747                    return;
    4848                }
Note: See TracChangeset for help on using the changeset viewer.