Changeset 3418983
- Timestamp:
- 12/13/2025 03:37:34 PM (3 months ago)
- Location:
- widget-for-eventbrite-api
- Files:
-
- 10 edited
- 1 copied
-
tags/6.5.3 (copied) (copied from widget-for-eventbrite-api/trunk)
-
tags/6.5.3/changelog.txt (modified) (1 diff)
-
tags/6.5.3/includes/class-eventbrite-query.php (modified) (1 diff)
-
tags/6.5.3/includes/vendor/composer/installed.php (modified) (2 diffs)
-
tags/6.5.3/readme.txt (modified) (1 diff)
-
tags/6.5.3/widget-for-eventbrite-api.php (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/class-eventbrite-query.php (modified) (1 diff)
-
trunk/includes/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/widget-for-eventbrite-api.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
widget-for-eventbrite-api/tags/6.5.3/changelog.txt
r3416777 r3418983 1 = 6.5.3 = 2 * Fix missing spacing between block elements when stripping HTML for excerpts 3 1 4 = 6.5.2 = 2 5 * Fix long_description=true parameter not displaying full content in excerpts -
widget-for-eventbrite-api/tags/6.5.3/includes/class-eventbrite-query.php
r3416777 r3418983 166 166 foreach ( $this->api_results->events as $wfea_key => $wfea_event ) { 167 167 if ( isset( $this->query_vars['long_description'] ) && true === $this->query_vars['long_description'] ) { 168 // Use full description (HTML stripped) for excerpt source168 // Use full description (HTML stripped) with breaks between div elements 169 169 $wfea_full_text = ( isset( $wfea_event->long_description ) ? $wfea_event->long_description : $wfea_event->post_content ); 170 $this->api_results->events[$wfea_key]->wfea_excerpt_text = wp_strip_all_tags( $wfea_full_text ); 170 // Add space after block element boundaries before stripping tags 171 $wfea_full_text = str_replace( array('</div>', '</p>'), array('</div> ', '</p> '), $wfea_full_text ); 172 $wfea_full_text = wp_strip_all_tags( $wfea_full_text ); 173 $this->api_results->events[$wfea_key]->wfea_excerpt_text = $wfea_full_text; 171 174 } else { 172 175 // Use summary for excerpt source -
widget-for-eventbrite-api/tags/6.5.3/includes/vendor/composer/installed.php
r3416777 r3418983 2 2 'root' => array( 3 3 'name' => 'fullworks/widget-for-eventbrite-api', 4 'pretty_version' => ' 6.5.2',5 'version' => '6.5. 2.0',6 'reference' => ' 6e0304bf8eabadae1d7460c44ad9843174574d9a',4 'pretty_version' => 'v6.5.3', 5 'version' => '6.5.3.0', 6 'reference' => 'bc7ee9985cdf4b63bf07b04d7640d9586e54c89c', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../../', … … 70 70 ), 71 71 'fullworks/widget-for-eventbrite-api' => array( 72 'pretty_version' => ' 6.5.2',73 'version' => '6.5. 2.0',74 'reference' => ' 6e0304bf8eabadae1d7460c44ad9843174574d9a',72 'pretty_version' => 'v6.5.3', 73 'version' => '6.5.3.0', 74 'reference' => 'bc7ee9985cdf4b63bf07b04d7640d9586e54c89c', 75 75 'type' => 'wordpress-plugin', 76 76 'install_path' => __DIR__ . '/../../../', -
widget-for-eventbrite-api/tags/6.5.3/readme.txt
r3416777 r3418983 3 3 Tags: eventbrite, widget, events, eventbrite widget, eventbrite shortcode 4 4 Tested up to: 6.9 5 Stable tag: 6.5. 25 Stable tag: 6.5.3 6 6 Requires PHP: 7.4 7 7 License: GPL-2.0-or-later -
widget-for-eventbrite-api/tags/6.5.3/widget-for-eventbrite-api.php
r3416777 r3418983 7 7 * Plugin URI: https://fullworksplugins.com/products/widget-for-eventbrite/ 8 8 * Description: Easily display Eventbrite events on your WordPress site 9 * Version: 6.5. 29 * Version: 6.5.3 10 10 * Requires at least: 5.6 11 11 * Requires PHP: 7.4 … … 43 43 define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 44 44 define( 'WIDGET_FOR_EVENTBRITE_API_PLUGINS_TOP_DIR', plugin_dir_path( __DIR__ ) ); 45 define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_VERSION', '6.5. 2' );45 define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_VERSION', '6.5.3' ); 46 46 // Include the plugin autoloader, so we can dynamically include the classes. 47 47 require_once WIDGET_FOR_EVENTBRITE_API_PLUGIN_DIR . 'includes/vendor/autoload.php'; -
widget-for-eventbrite-api/trunk/changelog.txt
r3416777 r3418983 1 = 6.5.3 = 2 * Fix missing spacing between block elements when stripping HTML for excerpts 3 1 4 = 6.5.2 = 2 5 * Fix long_description=true parameter not displaying full content in excerpts -
widget-for-eventbrite-api/trunk/includes/class-eventbrite-query.php
r3416777 r3418983 166 166 foreach ( $this->api_results->events as $wfea_key => $wfea_event ) { 167 167 if ( isset( $this->query_vars['long_description'] ) && true === $this->query_vars['long_description'] ) { 168 // Use full description (HTML stripped) for excerpt source168 // Use full description (HTML stripped) with breaks between div elements 169 169 $wfea_full_text = ( isset( $wfea_event->long_description ) ? $wfea_event->long_description : $wfea_event->post_content ); 170 $this->api_results->events[$wfea_key]->wfea_excerpt_text = wp_strip_all_tags( $wfea_full_text ); 170 // Add space after block element boundaries before stripping tags 171 $wfea_full_text = str_replace( array('</div>', '</p>'), array('</div> ', '</p> '), $wfea_full_text ); 172 $wfea_full_text = wp_strip_all_tags( $wfea_full_text ); 173 $this->api_results->events[$wfea_key]->wfea_excerpt_text = $wfea_full_text; 171 174 } else { 172 175 // Use summary for excerpt source -
widget-for-eventbrite-api/trunk/includes/vendor/composer/installed.php
r3416777 r3418983 2 2 'root' => array( 3 3 'name' => 'fullworks/widget-for-eventbrite-api', 4 'pretty_version' => ' 6.5.2',5 'version' => '6.5. 2.0',6 'reference' => ' 6e0304bf8eabadae1d7460c44ad9843174574d9a',4 'pretty_version' => 'v6.5.3', 5 'version' => '6.5.3.0', 6 'reference' => 'bc7ee9985cdf4b63bf07b04d7640d9586e54c89c', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../../', … … 70 70 ), 71 71 'fullworks/widget-for-eventbrite-api' => array( 72 'pretty_version' => ' 6.5.2',73 'version' => '6.5. 2.0',74 'reference' => ' 6e0304bf8eabadae1d7460c44ad9843174574d9a',72 'pretty_version' => 'v6.5.3', 73 'version' => '6.5.3.0', 74 'reference' => 'bc7ee9985cdf4b63bf07b04d7640d9586e54c89c', 75 75 'type' => 'wordpress-plugin', 76 76 'install_path' => __DIR__ . '/../../../', -
widget-for-eventbrite-api/trunk/readme.txt
r3416777 r3418983 3 3 Tags: eventbrite, widget, events, eventbrite widget, eventbrite shortcode 4 4 Tested up to: 6.9 5 Stable tag: 6.5. 25 Stable tag: 6.5.3 6 6 Requires PHP: 7.4 7 7 License: GPL-2.0-or-later -
widget-for-eventbrite-api/trunk/widget-for-eventbrite-api.php
r3416777 r3418983 7 7 * Plugin URI: https://fullworksplugins.com/products/widget-for-eventbrite/ 8 8 * Description: Easily display Eventbrite events on your WordPress site 9 * Version: 6.5. 29 * Version: 6.5.3 10 10 * Requires at least: 5.6 11 11 * Requires PHP: 7.4 … … 43 43 define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 44 44 define( 'WIDGET_FOR_EVENTBRITE_API_PLUGINS_TOP_DIR', plugin_dir_path( __DIR__ ) ); 45 define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_VERSION', '6.5. 2' );45 define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_VERSION', '6.5.3' ); 46 46 // Include the plugin autoloader, so we can dynamically include the classes. 47 47 require_once WIDGET_FOR_EVENTBRITE_API_PLUGIN_DIR . 'includes/vendor/autoload.php';
Note: See TracChangeset
for help on using the changeset viewer.