Changeset 3023496
- Timestamp:
- 01/18/2024 12:55:17 PM (2 years ago)
- Location:
- eventilla-events/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
eventilla-wp.php (modified) (1 diff)
-
includes/class-eventilla-wp-api-request-v2.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
eventilla-events/trunk/README.txt
r2975484 r3023496 4 4 Tags: events, event 5 5 Requires at least: 5.8 6 Tested up to: 6. 3.16 Tested up to: 6.4.2 7 7 Requires PHP: 7.4 8 Stable tag: 1.7. 58 Stable tag: 1.7.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 46 46 47 47 == Changelog == 48 = 1.7.6 = 49 Fixed event fetching process getting stuck if Eventilla API connection was not available 48 50 = 1.7.5 = 49 51 Added short description parameter to API filtering options. -
eventilla-events/trunk/eventilla-wp.php
r2975484 r3023496 16 16 * Plugin URI: https://www.eventilla.com/ 17 17 * Description: Eventilla Events brings your event information from eventilla.com to WordPress as custom posts. 18 * Version: 1.7. 518 * Version: 1.7.6 19 19 * Author: Eventilla 20 20 * Author URI: http://www.eventilla.com -
eventilla-events/trunk/includes/class-eventilla-wp-api-request-v2.php
r2914586 r3023496 857 857 set_time_limit(300); 858 858 $full_event_json = $this->get( 'events', $event_id ); 859 $full_event = json_decode( $full_event_json ); 859 if (!$full_event_json) { 860 throw new RuntimeException("Event loading error"); 861 } 862 863 $full_event = json_decode( $full_event_json ); 860 864 if ( ! empty( $full_event->event ) ) { 861 865 $full_event = $full_event->event; … … 1767 1771 1768 1772 error_log('Caught Runtime Exception: ' . $e->getMessage()); 1769 } catch (Exception $e) { 1773 break; 1774 } catch (Exception $e) { 1770 1775 // code to handle any other exception 1771 1776 $message = $e->getMessage();
Note: See TracChangeset
for help on using the changeset viewer.