Plugin Directory

Changeset 3129754


Ignore:
Timestamp:
08/01/2024 10:30:01 PM (20 months ago)
Author:
pushlydev
Message:

Release 2.1.7

Location:
pushly/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • pushly/trunk/includes/admin/class-pushly-admin-post.php

    r3129711 r3129754  
    510510                $notification_payload = [
    511511                    'ID'            => $post->ID,
    512                     'title'         => $title,
    513                     'body'          => $body,
     512                    'title'         => stripslashes(wp_specialchars_decode($title)),
     513                    'body'          => stripslashes(wp_specialchars_decode($body)),
    514514                    'landing_url'   => get_permalink( $post->ID ),
    515515                    'schedule_date' => $post->post_date_gmt,
  • pushly/trunk/includes/admin/models/notification.php

    r3129752 r3129754  
    6464
    6565            if ( ! empty( $post['image_id'] ) ) {
    66                 $image = wp_get_attachment_image_src( $post['image_id'], 'full' );
     66                $image = wp_get_attachment_image_src( $post['image_id'], 'large' );
    6767                if ( ! empty( $image ) ) {
    68                     $notification->template->channels->web->image_url = sanitize_text_field( $image[0] );
     68                    $notification->template->channels->web->image_url = $image[0];
    6969                }
    7070            }
  • pushly/trunk/pushly.php

    r3129752 r3129754  
    55 * Plugin URI:        http://pushly.com
    66 * Description:       Provide Pushly push notification capability to WordPress installations
    7  * Version:           2.1.6
     7 * Version:           2.1.7
    88 * Author:            Pushly
    99 * Author URI:        http://pushly.com/
  • pushly/trunk/readme.txt

    r3129752 r3129754  
    55Tested up to: 6.6
    66Requires PHP: 5.6.20
    7 Stable tag: 2.1.6
     7Stable tag: 2.1.7
    88License: GPLv2 or later
    99
     
    4242* Adds ability to send notifications directly from your WordPress site
    4343
    44 = 2.1.6 =
     44= 2.1.7 =
    4545* Adds Enabled Post Types setting to enable sending notifications for custom post types
Note: See TracChangeset for help on using the changeset viewer.