Changeset 3069058
- Timestamp:
- 04/11/2024 02:11:54 PM (2 years ago)
- Location:
- wordpress-notification-bar/trunk
- Files:
-
- 3 edited
-
inc/class-plugin.php (modified) (1 diff)
-
readme.txt (modified) (4 diffs)
-
wordpress-notification-bar.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-notification-bar/trunk/inc/class-plugin.php
r719981 r3069058 42 42 wp_enqueue_script( 'seed-wnb-js', plugins_url('inc/js/seed_wnb.js',dirname(__FILE__)), array('jquery') ); 43 43 $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), 48 48 ); 49 49 wp_localize_script( 'seed-wnb-js', 'seed_wnb_js_localize', $data ); -
wordpress-notification-bar/trunk/readme.txt
r2359057 r3069058 1 1 === Plugin Name === 2 Contributors: seedprod,johnnytee3 Donate link: http ://seedprod.com/2 Contributors: johnnytee 3 Donate link: https://johndturner.com 4 4 Tags: message, floating bar, notice, notification, sticky header, special offer, discount offer, offer, important, notification bar, attention bar, highlight bar 5 5 Requires at least: 3.0.0 … … 12 12 13 13 A 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")16 14 17 15 … … 36 34 * Plus Much More... 37 35 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 41 36 **Included Translations:** 42 37 … … 58 53 59 54 == Changelog == 55 = 1.3.11 = 56 * Fixed XSS security issue. 57 60 58 = 1.3.10 = 61 59 * Fixed php warnings -
wordpress-notification-bar/trunk/wordpress-notification-bar.php
r2262049 r3069058 4 4 Plugin URI: http://seedprod.com/wordpress-notification-bar/ 5 5 Description: Global Notification Bar for WordPress 6 Version: 1.3.1 06 Version: 1.3.11 7 7 Text Domain: wordpress-notification-bar 8 8 Domain Path: /languages … … 10 10 Author URI: http://www.seedprod.com 11 11 License: GPLv2 12 Copyright 2012 John Turner ( email : john@seedprod.com,twitter : @johnturner)12 Copyright 2012 John Turner ( twitter : @johnturner) 13 13 */ 14 14 … … 28 28 define( 'SEED_WNB_TEXTDOMAIN', 'wordpress-notification-bar' ); // Your textdomain 29 29 define( '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/30 define( 'SEED_WNB_VERSION', '1.3.11' ); // Plugin Version Number. Recommend you use Semantic Versioning http://semver.org/ 31 31 define( 'SEED_WNB_REQUIRED_WP_VERSION', '3.0' ); // Required Version of WordPress 32 32 define( '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.