Plugin Directory

Changeset 2374657


Ignore:
Timestamp:
09/03/2020 04:23:37 PM (6 years ago)
Author:
firetree
Message:

Update to version 1.1.4 from GitHub

Location:
hey-notify
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • hey-notify/tags/1.1.4/hey-notify.php

    r2357853 r2374657  
    44 * Plugin URI: https://heynotifywp.com/
    55 * Description: Get notified when things happen in WordPress.
    6  * Version: 1.1.3
     6 * Version: 1.1.4
    77 * Author: FireTree Design, LLC <info@firetreedesign.com>
    88 * Author URI: https://firetreedesign.com/
     
    1919}
    2020
    21 define( 'HEY_NOTIFY_VERSION', '1.1.3' );
     21define( 'HEY_NOTIFY_VERSION', '1.1.4' );
    2222define( 'HEY_NOTIFY_PLUGIN_FILE', __FILE__ );
    2323define( 'HEY_NOTIFY_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • hey-notify/tags/1.1.4/includes/services/class-discord.php

    r2357853 r2374657  
    179179        $body['embeds'] = array( $embed_item );
    180180
    181         if ( '' !== $settings['username'] ) {
     181        if ( isset( $settings['username'] ) && '' !== $settings['username'] ) {
    182182            $body['username'] = $settings['username'];
    183183        }
    184184
    185         if ( '' !== $settings['avatar'] ) {
     185        if ( isset( $settings['avatar'] ) && '' !== $settings['avatar'] ) {
    186186            if ( filter_var( $settings['avatar'], FILTER_VALIDATE_URL ) ) {
    187187                $body['avatar_url'] = $settings['avatar'];
  • hey-notify/tags/1.1.4/readme.txt

    r2357853 r2374657  
    55Tested up to: 5.5
    66Requires PHP: 5.3
    7 Stable tag: 1.1.3
     7Stable tag: 1.1.4
    88License: GPLv2 or later
    99License URI: http://ww.gnu.org/licenses/gpl-2.0.html
     
    4141== Changelog ==
    4242
     43= 1.1.4 =
     44* Fixed an issue with the Discord service.
     45
    4346= 1.1.3 =
    4447* Fixed Discord message titles.
  • hey-notify/trunk/hey-notify.php

    r2357853 r2374657  
    44 * Plugin URI: https://heynotifywp.com/
    55 * Description: Get notified when things happen in WordPress.
    6  * Version: 1.1.3
     6 * Version: 1.1.4
    77 * Author: FireTree Design, LLC <info@firetreedesign.com>
    88 * Author URI: https://firetreedesign.com/
     
    1919}
    2020
    21 define( 'HEY_NOTIFY_VERSION', '1.1.3' );
     21define( 'HEY_NOTIFY_VERSION', '1.1.4' );
    2222define( 'HEY_NOTIFY_PLUGIN_FILE', __FILE__ );
    2323define( 'HEY_NOTIFY_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • hey-notify/trunk/includes/services/class-discord.php

    r2357853 r2374657  
    179179        $body['embeds'] = array( $embed_item );
    180180
    181         if ( '' !== $settings['username'] ) {
     181        if ( isset( $settings['username'] ) && '' !== $settings['username'] ) {
    182182            $body['username'] = $settings['username'];
    183183        }
    184184
    185         if ( '' !== $settings['avatar'] ) {
     185        if ( isset( $settings['avatar'] ) && '' !== $settings['avatar'] ) {
    186186            if ( filter_var( $settings['avatar'], FILTER_VALIDATE_URL ) ) {
    187187                $body['avatar_url'] = $settings['avatar'];
  • hey-notify/trunk/readme.txt

    r2357853 r2374657  
    55Tested up to: 5.5
    66Requires PHP: 5.3
    7 Stable tag: 1.1.3
     7Stable tag: 1.1.4
    88License: GPLv2 or later
    99License URI: http://ww.gnu.org/licenses/gpl-2.0.html
     
    4141== Changelog ==
    4242
     43= 1.1.4 =
     44* Fixed an issue with the Discord service.
     45
    4346= 1.1.3 =
    4447* Fixed Discord message titles.
Note: See TracChangeset for help on using the changeset viewer.