Changeset 2353898
- Timestamp:
- 08/06/2020 12:02:49 PM (6 years ago)
- Location:
- notice-manager/trunk
- Files:
-
- 4 edited
-
README.md (modified) (2 diffs)
-
includes/class-notice-manager.php (modified) (1 diff)
-
notice-manager.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
notice-manager/trunk/README.md
r2071626 r2353898 3 3 - Contributors: laytanl 4 4 - Requires at least: 4.0 5 - Tested up to: 5. 1.16 - Stable Tag: 1.0. 05 - Tested up to: 5.4 6 - Stable Tag: 1.0.1 7 7 - Requires PHP: 5.6 8 8 - License: GNU GENERAL PUBLIC LICENSE … … 27 27 ## Changelog 28 28 29 1.0.1 30 Replace deprecated sanitize_url with esc_url_raw 31 29 32 1.0.0 30 33 Released -
notice-manager/trunk/includes/class-notice-manager.php
r2071626 r2353898 74 74 75 75 if ( isset( $_GET['notice-manager-redirect-url'] ) ) { 76 $redirect_url = sanitize_url( $_GET['notice-manager-redirect-url'] );76 $redirect_url = esc_url_raw( $_GET['notice-manager-redirect-url'] ); 77 77 $this->redirect( $redirect_url ); 78 78 } else { -
notice-manager/trunk/notice-manager.php
r2071626 r2353898 3 3 * Plugin Name: Notice Manager 4 4 * Description: A lightweight plugin that lets you organize notices and notifications from other plugins or wordpress itself. 5 * Version: 1.0. 05 * Version: 1.0.1 6 6 * Author: Laytan Laats 7 7 * Author URI: https://github.com/laytan … … 22 22 23 23 $base_url = plugin_dir_url( __FILE__ ); 24 $version = '1.0. 0';24 $version = '1.0.1'; 25 25 26 26 // Create the plugin object -
notice-manager/trunk/readme.txt
r2071626 r2353898 2 2 Contributors: laytanl 3 3 Requires at least: 4.0 4 Tested up to: 5. 1.15 Stable Tag: 1.0. 04 Tested up to: 5.4 5 Stable Tag: 1.0.1 6 6 Requires PHP: 5.6 7 7 License: GNU GENERAL PUBLIC LICENSE … … 25 25 26 26 == Changelog == 27 1.0.1 28 Replace deprecated sanitize_url with esc_url_raw 29 27 30 1.0.0 28 31 Released
Note: See TracChangeset
for help on using the changeset viewer.