Changeset 3116091
- Timestamp:
- 07/11/2024 06:56:28 AM (18 months ago)
- Location:
- simple-popup-plugin
- Files:
-
- 6 added
- 3 edited
-
tags/4.5 (added)
-
tags/4.5/readme.txt (added)
-
tags/4.5/screenshot-1.png (added)
-
tags/4.5/simple-popup-widget.php (added)
-
tags/4.5/simple_popup_admin.php (added)
-
tags/4.5/simple_popup_plugin.php (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/simple_popup_admin.php (modified) (4 diffs)
-
trunk/simple_popup_plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-popup-plugin/trunk/readme.txt
r2764900 r3116091 4 4 Tags: popup,simple,tools,music,bands,musicians,pop-up,pop up,window,widget 5 5 Requires at least: 2.8 6 Tested up to: 6. 07 Stable tag: 4. 46 Tested up to: 6.5 7 Stable tag: 4.5 8 8 9 9 This plugin makes it easy to create a simple, modifiable popup window. … … 13 13 14 14 Use this plugin to easily create links to simple popup windows. It supports multiple popup links on posts/pages/widgets and window positioning/centering options. 15 16 NEW to 4.2 - Fixed issue of toolbar/scrollbar/location bar options not working correctly.17 15 18 16 == Installation == … … 72 70 * Cleaned up options screen. 73 71 74 == Upgrade Notice == 75 76 = 4.4 = 77 * Fixed PHP7 depricated class constructor. 78 * Fixed widget. 79 * Cleaned up options screen. 72 = 4.5 = 73 * Fix XSS vulnerability. 74 * Address has_cap deprecation notice. -
simple-popup-plugin/trunk/simple_popup_admin.php
r1641818 r3116091 20 20 </th> 21 21 <td> 22 <input type="text" id="popup_window_height" name="popup_window_height" value="<?php echo get_option('popup_window_height'); ?>" />22 <input type="text" id="popup_window_height" name="popup_window_height" value="<?php echo esc_attr(get_option('popup_window_height')); ?>" /> 23 23 </td> 24 24 </tr> … … 28 28 </th> 29 29 <td> 30 <input type="text" id="popup_window_width" name="popup_window_width" value="<?php echo get_option('popup_window_width'); ?>" />30 <input type="text" id="popup_window_width" name="popup_window_width" value="<?php echo esc_attr(get_option('popup_window_width')); ?>" /> 31 31 </td> 32 32 </tr> … … 42 42 </th> 43 43 <td> 44 <input type="text" id="popup_window_top" name="popup_window_top" value="<?php echo get_option('popup_window_top'); ?>" />44 <input type="text" id="popup_window_top" name="popup_window_top" value="<?php echo esc_attr(get_option('popup_window_top')); ?>" /> 45 45 </td> 46 46 </tr> … … 50 50 </th> 51 51 <td> 52 <input type="text" id="popup_window_left" name="popup_window_left" value="<?php echo get_option('popup_window_left'); ?>" />52 <input type="text" id="popup_window_left" name="popup_window_left" value="<?php echo esc_attr(get_option('popup_window_left')); ?>" /> 53 53 </td> 54 54 </tr> -
simple-popup-plugin/trunk/simple_popup_plugin.php
r1641818 r3116091 4 4 Plugin URI: http://www.grimmdude.com/wordpress-simple-popup-plugin 5 5 Description: This plugin makes it easy to create a simple, modifiable popup window. Using the shortcode you can create a popup link and set the dimensions of each individual popup. 6 Version: 4. 46 Version: 4.5 7 7 Author: Garrett Grimm 8 Author URI: http ://www.grimmdude.com8 Author URI: https://grimmdude.com 9 9 */ 10 10 … … 78 78 79 79 function simple_popup_menu() { 80 add_options_page('Simple Popup Plugin Options', 'Simple Popup Plugin', 8, __FILE__, 'simple_popup_options');80 add_options_page('Simple Popup Plugin Options', 'Simple Popup Plugin', 'administrator', __FILE__, 'simple_popup_options'); 81 81 } 82 82
Note: See TracChangeset
for help on using the changeset viewer.