Changeset 2998182
- Timestamp:
- 11/19/2023 12:40:08 AM (2 years ago)
- Location:
- featured-image-caption
- Files:
-
- 12 added
- 3 edited
-
tags/0.8.10 (added)
-
tags/0.8.10/classes (added)
-
tags/0.8.10/classes/Bootstrap.php (added)
-
tags/0.8.10/classes/Caption.php (added)
-
tags/0.8.10/classes/Hooks.php (added)
-
tags/0.8.10/classes/MetaBox.php (added)
-
tags/0.8.10/classes/Option.php (added)
-
tags/0.8.10/classes/RestApi.php (added)
-
tags/0.8.10/classes/Shortcode.php (added)
-
tags/0.8.10/classes/Upgrade.php (added)
-
tags/0.8.10/featured-image-caption.php (added)
-
tags/0.8.10/readme.txt (added)
-
trunk/classes/MetaBox.php (modified) (1 diff)
-
trunk/featured-image-caption.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
featured-image-caption/trunk/classes/MetaBox.php
r2300545 r2998182 88 88 // Now that we've validated nonce and permissions, let's save the caption data 89 89 // Sanitize the caption 90 $allowed_html = array( 91 'img' => array( 92 'title' => array(), 93 'src' => array(), 94 'alt' => array(), 95 ), 96 'a' => array( 97 'href' => array(), 98 'title' => array() 99 ), 100 'br' => array(), 101 'em' => array(), 102 'strong' => array(), 103 'p' => array(), 104 ); 90 105 $caption = array( 91 'caption_text' => $_POST[CCFIC_KEY.'_caption_text'],92 'source_text' => $_POST[CCFIC_KEY.'_source_text'],93 'source_url' => esc_url ($_POST[CCFIC_KEY.'_source_url']),106 'caption_text' => wp_kses($_POST[CCFIC_KEY.'_caption_text'], $allowed_html), 107 'source_text' => wp_kses($_POST[CCFIC_KEY.'_source_text'], $allowed_html), 108 'source_url' => esc_url_raw($_POST[CCFIC_KEY.'_source_url']), 94 109 'new_window' => (! empty($_POST[CCFIC_KEY.'_new_window']) ? true : false), 95 110 ); -
featured-image-caption/trunk/featured-image-caption.php
r2486227 r2998182 4 4 Plugin URI: https://christiaanconover.com/ 5 5 Description: Set a caption for the featured image of a post that can be displayed on your site. 6 Version: 0.8.1 06 Version: 0.8.11 7 7 Author: Christiaan Conover 8 8 Author URI: https://christiaanconover.com?utm_source=wp-featured-image-caption-author … … 19 19 define('CCFIC_ID', 'ccfic'); // Plugin ID 20 20 define('CCFIC_NAME', 'Featured Image Caption'); // Plugin name 21 define('CCFIC_VERSION', '0.8.1 0'); // Plugin version21 define('CCFIC_VERSION', '0.8.11'); // Plugin version 22 22 define('CCFIC_WPVER', '3.5'); // Minimum required version of WordPress 23 23 define('CCFIC_PHPVER', '5.6.20'); // Minimum required version of PHP -
featured-image-caption/trunk/readme.txt
r2486227 r2998182 5 5 Requires at least: 3.5 6 6 Tested up to: 5.7 7 Stable tag: 0.8.1 07 Stable tag: 0.8.11 8 8 License: GPLv2 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 105 105 106 106 == Changelog == 107 108 = 0.8.11 = 109 * Security patch fix. 110 * Tested up to WordPress 6.4. 107 111 108 112 = 0.8.10 =
Note: See TracChangeset
for help on using the changeset viewer.