Changeset 2374657
- Timestamp:
- 09/03/2020 04:23:37 PM (6 years ago)
- Location:
- hey-notify
- Files:
-
- 6 edited
- 1 copied
-
tags/1.1.4 (copied) (copied from hey-notify/trunk)
-
tags/1.1.4/hey-notify.php (modified) (2 diffs)
-
tags/1.1.4/includes/services/class-discord.php (modified) (1 diff)
-
tags/1.1.4/readme.txt (modified) (2 diffs)
-
trunk/hey-notify.php (modified) (2 diffs)
-
trunk/includes/services/class-discord.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hey-notify/tags/1.1.4/hey-notify.php
r2357853 r2374657 4 4 * Plugin URI: https://heynotifywp.com/ 5 5 * Description: Get notified when things happen in WordPress. 6 * Version: 1.1. 36 * Version: 1.1.4 7 7 * Author: FireTree Design, LLC <info@firetreedesign.com> 8 8 * Author URI: https://firetreedesign.com/ … … 19 19 } 20 20 21 define( 'HEY_NOTIFY_VERSION', '1.1. 3' );21 define( 'HEY_NOTIFY_VERSION', '1.1.4' ); 22 22 define( 'HEY_NOTIFY_PLUGIN_FILE', __FILE__ ); 23 23 define( 'HEY_NOTIFY_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
hey-notify/tags/1.1.4/includes/services/class-discord.php
r2357853 r2374657 179 179 $body['embeds'] = array( $embed_item ); 180 180 181 if ( '' !== $settings['username'] ) {181 if ( isset( $settings['username'] ) && '' !== $settings['username'] ) { 182 182 $body['username'] = $settings['username']; 183 183 } 184 184 185 if ( '' !== $settings['avatar'] ) {185 if ( isset( $settings['avatar'] ) && '' !== $settings['avatar'] ) { 186 186 if ( filter_var( $settings['avatar'], FILTER_VALIDATE_URL ) ) { 187 187 $body['avatar_url'] = $settings['avatar']; -
hey-notify/tags/1.1.4/readme.txt
r2357853 r2374657 5 5 Tested up to: 5.5 6 6 Requires PHP: 5.3 7 Stable tag: 1.1. 37 Stable tag: 1.1.4 8 8 License: GPLv2 or later 9 9 License URI: http://ww.gnu.org/licenses/gpl-2.0.html … … 41 41 == Changelog == 42 42 43 = 1.1.4 = 44 * Fixed an issue with the Discord service. 45 43 46 = 1.1.3 = 44 47 * Fixed Discord message titles. -
hey-notify/trunk/hey-notify.php
r2357853 r2374657 4 4 * Plugin URI: https://heynotifywp.com/ 5 5 * Description: Get notified when things happen in WordPress. 6 * Version: 1.1. 36 * Version: 1.1.4 7 7 * Author: FireTree Design, LLC <info@firetreedesign.com> 8 8 * Author URI: https://firetreedesign.com/ … … 19 19 } 20 20 21 define( 'HEY_NOTIFY_VERSION', '1.1. 3' );21 define( 'HEY_NOTIFY_VERSION', '1.1.4' ); 22 22 define( 'HEY_NOTIFY_PLUGIN_FILE', __FILE__ ); 23 23 define( 'HEY_NOTIFY_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
hey-notify/trunk/includes/services/class-discord.php
r2357853 r2374657 179 179 $body['embeds'] = array( $embed_item ); 180 180 181 if ( '' !== $settings['username'] ) {181 if ( isset( $settings['username'] ) && '' !== $settings['username'] ) { 182 182 $body['username'] = $settings['username']; 183 183 } 184 184 185 if ( '' !== $settings['avatar'] ) {185 if ( isset( $settings['avatar'] ) && '' !== $settings['avatar'] ) { 186 186 if ( filter_var( $settings['avatar'], FILTER_VALIDATE_URL ) ) { 187 187 $body['avatar_url'] = $settings['avatar']; -
hey-notify/trunk/readme.txt
r2357853 r2374657 5 5 Tested up to: 5.5 6 6 Requires PHP: 5.3 7 Stable tag: 1.1. 37 Stable tag: 1.1.4 8 8 License: GPLv2 or later 9 9 License URI: http://ww.gnu.org/licenses/gpl-2.0.html … … 41 41 == Changelog == 42 42 43 = 1.1.4 = 44 * Fixed an issue with the Discord service. 45 43 46 = 1.1.3 = 44 47 * Fixed Discord message titles.
Note: See TracChangeset
for help on using the changeset viewer.