Plugin Directory

Changeset 3069058


Ignore:
Timestamp:
04/11/2024 02:11:54 PM (2 years ago)
Author:
johnnytee
Message:

Release 1.3.11

Location:
wordpress-notification-bar/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wordpress-notification-bar/trunk/inc/class-plugin.php

    r719981 r3069058  
    4242            wp_enqueue_script( 'seed-wnb-js', plugins_url('inc/js/seed_wnb.js',dirname(__FILE__)), array('jquery') );
    4343            $data = array(
    44                     'msg' => strip_tags($options['msg']),
    45                     'button_link' => $options['button_link'],
    46                     'button_label' => $options['button_label'],
    47                     'button_target' => $button_target,
     44                'msg' => sanitize_text_field($options['msg']),
     45                'button_link' => sanitize_url($options['button_link']),
     46                'button_label' => sanitize_key($options['button_label']),
     47                'button_target' => sanitize_text_field($button_target),
    4848                );
    4949            wp_localize_script( 'seed-wnb-js', 'seed_wnb_js_localize', $data );
  • wordpress-notification-bar/trunk/readme.txt

    r2359057 r3069058  
    11=== Plugin Name ===
    2 Contributors: seedprod, johnnytee
    3 Donate link: http://seedprod.com/
     2Contributors: johnnytee
     3Donate link: https://johndturner.com
    44Tags: message, floating bar, notice, notification, sticky header, special offer, discount offer, offer, important, notification bar, attention bar, highlight bar
    55Requires at least: 3.0.0
     
    1212
    1313A quick and easy **notification bar** and **call to action** for your site.
    14 
    15 *   [Upgrade to the Notification Bar Pro Version Now! »](https://www.seedprod.com/wordpress-notification-bar/?utm_source=wordpress-notification-bar-plugin&utm_medium=banner&utm_campaign=wordpress-notification-bar-link-from-wordpress.org "Notifification Bar Pro Version")
    1614
    1715
     
    3634* Plus Much More...
    3735
    38 
    39 *   [Upgrade to the Notification Bar Pro Version Now! »](https://www.seedprod.com/wordpress-notification-bar/?utm_source=wordpress-notification-bar-plugin&utm_medium=banner&utm_campaign=wordpress-notification-bar-link-from-wordpress.org "Notifification Bar Pro Version")
    40 
    4136**Included Translations:**
    4237
     
    5853
    5954== Changelog ==
     55= 1.3.11 =
     56* Fixed XSS security issue.
     57
    6058= 1.3.10 =
    6159* Fixed php warnings
  • wordpress-notification-bar/trunk/wordpress-notification-bar.php

    r2262049 r3069058  
    44Plugin URI: http://seedprod.com/wordpress-notification-bar/
    55Description: Global Notification Bar for WordPress
    6 Version:  1.3.10
     6Version:  1.3.11
    77Text Domain: wordpress-notification-bar
    88Domain Path: /languages
     
    1010Author URI: http://www.seedprod.com
    1111License: GPLv2
    12 Copyright 2012  John Turner (email : john@seedprod.com, twitter : @johnturner)
     12Copyright 2012  John Turner ( twitter : @johnturner)
    1313*/
    1414
     
    2828define( 'SEED_WNB_TEXTDOMAIN', 'wordpress-notification-bar' ); // Your textdomain
    2929define( 'SEED_WNB_PLUGIN_NAME', __( 'WordPress Notification Bar', 'seed_wnb' ) ); // Plugin Name shows up on the admin settings screen.
    30 define( 'SEED_WNB_VERSION', '1.3.9' ); // Plugin Version Number. Recommend you use Semantic Versioning http://semver.org/
     30define( 'SEED_WNB_VERSION', '1.3.11' ); // Plugin Version Number. Recommend you use Semantic Versioning http://semver.org/
    3131define( 'SEED_WNB_REQUIRED_WP_VERSION', '3.0' ); // Required Version of WordPress
    3232define( 'SEED_WNB_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); // Example output: /Applications/MAMP/htdocs/wordpress/wp-content/plugins/seed_wnb/
Note: See TracChangeset for help on using the changeset viewer.