Changeset 2970788
- Timestamp:
- 09/23/2023 11:43:10 PM (3 years ago)
- Location:
- sitekit
- Files:
-
- 22 added
- 3 edited
-
tags/1.5 (added)
-
tags/1.5/.gitattributes (added)
-
tags/1.5/.gitignore (added)
-
tags/1.5/css (added)
-
tags/1.5/css/sitekit.css (added)
-
tags/1.5/inc (added)
-
tags/1.5/inc/sitekit-functions.php (added)
-
tags/1.5/inc/sitekit-settings.php (added)
-
tags/1.5/inc/sitekit-shortcode-archives.php (added)
-
tags/1.5/inc/sitekit-shortcode-bloginfo.php (added)
-
tags/1.5/inc/sitekit-shortcode-categories.php (added)
-
tags/1.5/inc/sitekit-shortcode-iframe.php (added)
-
tags/1.5/inc/sitekit-shortcode-posts.php (added)
-
tags/1.5/inc/sitekit-widget-archives.php (added)
-
tags/1.5/inc/sitekit-widget-categories.php (added)
-
tags/1.5/inc/sitekit-widget-posts.php (added)
-
tags/1.5/inc/sitekit-widget-search.php (added)
-
tags/1.5/js (added)
-
tags/1.5/js/tinymce.js (added)
-
tags/1.5/readme.txt (added)
-
tags/1.5/sitekit.php (added)
-
tags/1.5/todo.txt (added)
-
trunk/inc/sitekit-shortcode-iframe.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/sitekit.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sitekit/trunk/inc/sitekit-shortcode-iframe.php
r2960330 r2970788 22 22 $value = esc_url( $value ); 23 23 } 24 // remove some attributes25 if ( str tolower($attr) != 'onload' AND strtolower($attr) != 'onpageshow' AND strtolower($attr) != 'onclick') {24 // remove all attributes starting with "on". Examples: onload, onmouseover, onfocus, onpageshow, onclick 25 if ( strpos( strtolower( $attr ), 'on' ) !== 0 ) { 26 26 if ( $value != '' ) { 27 27 // adding all attributes -
sitekit/trunk/readme.txt
r2960330 r2970788 2 2 Contributors: webvitaly 3 3 Donate link: http://web-profile.net/donate/ 4 Tags: widget, widgets, search, archive, archives, category, categories, pages, shortcode, shortcodes, bloginfo 4 Tags: widget, widgets, search, archive, archives, category, categories, pages, shortcode, shortcodes, bloginfo, iframe 5 5 Requires at least: 4.0 6 6 Tested up to: 6.3.1 7 Stable tag: 1. 47 Stable tag: 1.5 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html 10 10 11 Widgets: search, archives and categories. Shortcodes: archives, bloginfo and categories.11 Widgets: search, archives and categories. Shortcodes: archives, bloginfo, iframe and categories. 12 12 13 13 == Description == … … 108 108 == Changelog == 109 109 110 = 1.5 = 111 * Removed all iframe attributes starting with "on". Examples: onload, onmouseover, onfocus, onpageshow, onclick. 112 110 113 = 1.4 = 111 114 * Sanitize iframe URL. -
sitekit/trunk/sitekit.php
r2960330 r2970788 4 4 Plugin URI: https://wordpress.org/plugins/sitekit/ 5 5 Description: Widgets: search, archives, categories, pages, posts. Shortcodes: archives, bloginfo, categories, posts. 6 Version: 1. 46 Version: 1.5 7 7 Author: webvitaly 8 8 Text Domain: sitekit … … 15 15 } 16 16 17 define('SITEKIT_PLUGIN_VERSION', '1. 4');17 define('SITEKIT_PLUGIN_VERSION', '1.5'); 18 18 define('SITEKIT_PLUGIN_POWERED', "\n".'<!-- Powered by Sitekit v.'.SITEKIT_PLUGIN_VERSION.' https://wordpress.org/plugins/sitekit/ -->'."\n"); 19 19
Note: See TracChangeset
for help on using the changeset viewer.