Changeset 2781599
- Timestamp:
- 09/07/2022 08:24:26 PM (3 years ago)
- Location:
- ml-slider
- Files:
-
- 8 edited
- 1 copied
-
tags/3.27.11 (copied) (copied from ml-slider/trunk)
-
tags/3.27.11/admin/routes/api.php (modified) (1 diff)
-
tags/3.27.11/inc/slide/metaslide.image.class.php (modified) (2 diffs)
-
tags/3.27.11/ml-slider.php (modified) (2 diffs)
-
tags/3.27.11/readme.txt (modified) (2 diffs)
-
trunk/admin/routes/api.php (modified) (1 diff)
-
trunk/inc/slide/metaslide.image.class.php (modified) (2 diffs)
-
trunk/ml-slider.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ml-slider/tags/3.27.11/admin/routes/api.php
r2780800 r2781599 560 560 return [ 561 561 'caption_source' => sanitize_text_field($fields['caption_source']), 562 'post_excerpt' => sanitize_text_field($fields['post_excerpt']), 562 563 'url' => sanitize_url($fields['url']), 563 564 'inherit_image_title' => sanitize_text_field($fields['inherit_image_title']), -
ml-slider/tags/3.27.11/inc/slide/metaslide.image.class.php
r2780800 r2781599 822 822 823 823 // Store the inherit custom title and alt settings 824 $this->set_field_inherited('title', isset($fields['inherit_image_title']) );825 $this->set_field_inherited('alt', isset($fields['inherit_image_alt']) );824 $this->set_field_inherited('title', isset($fields['inherit_image_title']) && $fields['inherit_image_title'] === 'on'); 825 $this->set_field_inherited('alt', isset($fields['inherit_image_alt']) && $fields['inherit_image_alt'] === 'on'); 826 826 827 827 if (isset($fields['alt'])) { … … 855 855 private function set_field_inherited($field, $value) 856 856 { 857 858 857 // TODO eventually I would like to handle errors / successful updates to the database even if just sending it to a log file 859 858 return update_post_meta($this->slide->ID, 'ml-slider_inherit_image_' . $field, (bool) $value); -
ml-slider/tags/3.27.11/ml-slider.php
r2781416 r2781599 6 6 * Plugin URI: https://www.metaslider.com 7 7 * Description: Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides. 8 * Version: 3.27.1 08 * Version: 3.27.11 9 9 * Author: MetaSlider 10 10 * Author URI: https://www.metaslider.com … … 48 48 * @var string 49 49 */ 50 public $version = '3.27.1 0';50 public $version = '3.27.11'; 51 51 52 52 /** -
ml-slider/tags/3.27.11/readme.txt
r2781416 r2781599 3 3 Tags: slideshow, slider, image slider, carousel, gallery, flexslider, wordpress slider, nivoslider, rotating banner, responsive slideshow, seo slideshow, unsplash 4 4 Requires at least: 3.5 5 Stable tag: 3.27.1 05 Stable tag: 3.27.11 6 6 Requires PHP: 5.4 7 7 Tested up to: 6.0 … … 324 324 The format is based on [Keep a Changelog recommendations](http://keepachangelog.com/) 325 325 and this project adheres to [Semantic Versioning](http://semver.org/). 326 327 = [3.27.11] - 07 Sep, 2022 = 328 329 * FIXED: Fix the Caption field when editing a slideshow, #234; 330 * FIXED: Fix the SEO fields when editing a slideshow, #235; 326 331 327 332 = [3.27.10] - 07 Sep, 2022 = -
ml-slider/trunk/admin/routes/api.php
r2780800 r2781599 560 560 return [ 561 561 'caption_source' => sanitize_text_field($fields['caption_source']), 562 'post_excerpt' => sanitize_text_field($fields['post_excerpt']), 562 563 'url' => sanitize_url($fields['url']), 563 564 'inherit_image_title' => sanitize_text_field($fields['inherit_image_title']), -
ml-slider/trunk/inc/slide/metaslide.image.class.php
r2780800 r2781599 822 822 823 823 // Store the inherit custom title and alt settings 824 $this->set_field_inherited('title', isset($fields['inherit_image_title']) );825 $this->set_field_inherited('alt', isset($fields['inherit_image_alt']) );824 $this->set_field_inherited('title', isset($fields['inherit_image_title']) && $fields['inherit_image_title'] === 'on'); 825 $this->set_field_inherited('alt', isset($fields['inherit_image_alt']) && $fields['inherit_image_alt'] === 'on'); 826 826 827 827 if (isset($fields['alt'])) { … … 855 855 private function set_field_inherited($field, $value) 856 856 { 857 858 857 // TODO eventually I would like to handle errors / successful updates to the database even if just sending it to a log file 859 858 return update_post_meta($this->slide->ID, 'ml-slider_inherit_image_' . $field, (bool) $value); -
ml-slider/trunk/ml-slider.php
r2781416 r2781599 6 6 * Plugin URI: https://www.metaslider.com 7 7 * Description: Easy to use slideshow plugin. Create SEO optimised responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides. 8 * Version: 3.27.1 08 * Version: 3.27.11 9 9 * Author: MetaSlider 10 10 * Author URI: https://www.metaslider.com … … 48 48 * @var string 49 49 */ 50 public $version = '3.27.1 0';50 public $version = '3.27.11'; 51 51 52 52 /** -
ml-slider/trunk/readme.txt
r2781416 r2781599 3 3 Tags: slideshow, slider, image slider, carousel, gallery, flexslider, wordpress slider, nivoslider, rotating banner, responsive slideshow, seo slideshow, unsplash 4 4 Requires at least: 3.5 5 Stable tag: 3.27.1 05 Stable tag: 3.27.11 6 6 Requires PHP: 5.4 7 7 Tested up to: 6.0 … … 324 324 The format is based on [Keep a Changelog recommendations](http://keepachangelog.com/) 325 325 and this project adheres to [Semantic Versioning](http://semver.org/). 326 327 = [3.27.11] - 07 Sep, 2022 = 328 329 * FIXED: Fix the Caption field when editing a slideshow, #234; 330 * FIXED: Fix the SEO fields when editing a slideshow, #235; 326 331 327 332 = [3.27.10] - 07 Sep, 2022 =
Note: See TracChangeset
for help on using the changeset viewer.