Changeset 3014834
- Timestamp:
- 12/27/2023 08:02:17 PM (2 years ago)
- Location:
- event-agent/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
event-agent.php (modified) (2 diffs)
-
public/js/events-vue.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
event-agent/trunk/README.txt
r3008953 r3014834 9 9 Requires at least: 4.6 10 10 Tested up to: 6.3 11 Stable tag: 4.4. 012 Version: 4.4. 011 Stable tag: 4.4.1 12 Version: 4.4.1 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
r3008953 r3014834 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: 4.4. 013 * Version: 4.4.1 14 14 * Requires at least: 5.0 15 15 * Requires PHP: 7.0 … … 25 25 } 26 26 27 define( 'EVENT_AGENT_VERSION', '4.4. 0' );27 define( 'EVENT_AGENT_VERSION', '4.4.1' ); 28 28 29 29 require_once dirname(__FILE__).'/includes/activate.php'; -
event-agent/trunk/public/js/events-vue.js
r2967603 r3014834 98 98 if (response.data[i].rrule) { 99 99 let rule = new rrule.rrulestr(response.data[i].rrule); 100 101 if (rule._exdate) { 102 //rrule doesn't provide a count if there's an exdate. need to get it from text rrule 103 let parts = response.data[i].rrule.split(';'); 104 let exdateParts = parts[parts.length - 1].split('\n'); 105 let countParts = exdateParts[0].split('='); 106 if (countParts.length === 2 && countParts[0].toLowerCase() === 'count') 107 rule.options.count = countParts[1] - rule._exdate.length; 108 } 109 100 110 if (rule.options.count > 0) // a course 101 111 {
Note: See TracChangeset
for help on using the changeset viewer.