Plugin Directory

Changeset 2353898


Ignore:
Timestamp:
08/06/2020 12:02:49 PM (6 years ago)
Author:
laytanl
Message:

publish 1.0.1

Location:
notice-manager/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • notice-manager/trunk/README.md

    r2071626 r2353898  
    33- Contributors: laytanl
    44- Requires at least: 4.0
    5 - Tested up to: 5.1.1
    6 - Stable Tag: 1.0.0
     5- Tested up to: 5.4
     6- Stable Tag: 1.0.1
    77- Requires PHP: 5.6
    88- License: GNU GENERAL PUBLIC LICENSE
     
    2727## Changelog
    2828
     291.0.1
     30Replace deprecated sanitize_url with esc_url_raw
     31
    29321.0.0
    3033Released
  • notice-manager/trunk/includes/class-notice-manager.php

    r2071626 r2353898  
    7474               
    7575                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'] );
    7777                    $this->redirect( $redirect_url );
    7878                } else {
  • notice-manager/trunk/notice-manager.php

    r2071626 r2353898  
    33 * Plugin Name: Notice Manager
    44 * Description: A lightweight plugin that lets you organize notices and notifications from other plugins or wordpress itself.
    5  * Version: 1.0.0
     5 * Version: 1.0.1
    66 * Author: Laytan Laats
    77 * Author URI: https://github.com/laytan
     
    2222
    2323$base_url = plugin_dir_url( __FILE__ );
    24 $version = '1.0.0';
     24$version = '1.0.1';
    2525
    2626// Create the plugin object
  • notice-manager/trunk/readme.txt

    r2071626 r2353898  
    22Contributors: laytanl
    33Requires at least: 4.0
    4 Tested up to: 5.1.1
    5 Stable Tag: 1.0.0
     4Tested up to: 5.4
     5Stable Tag: 1.0.1
    66Requires PHP: 5.6
    77License: GNU GENERAL PUBLIC LICENSE
     
    2525
    2626== Changelog ==
     271.0.1
     28Replace deprecated sanitize_url with esc_url_raw
     29
    27301.0.0
    2831Released
Note: See TracChangeset for help on using the changeset viewer.