Changeset 3298914
- Timestamp:
- 05/22/2025 04:47:01 PM (11 months ago)
- Location:
- event-agent/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
event-agent.php (modified) (2 diffs)
-
public/js/checkin-vue.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
event-agent/trunk/README.txt
r3298910 r3298914 9 9 Requires at least: 6.0 10 10 Tested up to: 7.0 11 Stable tag: 5.0. 212 Version: 5.0. 211 Stable tag: 5.0.3 12 Version: 5.0.3 13 13 License: GPLv2 or later 14 14 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
event-agent/trunk/event-agent.php
r3298910 r3298914 11 11 * Plugin URI: https://www.eventagent.ai/ 12 12 * 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. 213 * Version: 5.0.3 14 14 * Requires at least: 6.0 15 15 * Requires PHP: 8.0 … … 25 25 } 26 26 27 define( 'EVENT_AGENT_VERSION', '5.0. 2' );27 define( 'EVENT_AGENT_VERSION', '5.0.3' ); 28 28 29 29 require_once dirname(__FILE__).'/includes/activate.php'; -
event-agent/trunk/public/js/checkin-vue.js
r3298910 r3298914 43 43 var params = new URLSearchParams(window.location.search); 44 44 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 }); 47 47 return; 48 48 }
Note: See TracChangeset
for help on using the changeset viewer.