Plugin Directory

Changeset 3351927


Ignore:
Timestamp:
08/28/2025 10:59:10 AM (6 months ago)
Author:
zealopensource
Message:

Update to version 2.0 from GitHub

Location:
push-notifications-for-web
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • push-notifications-for-web/tags/2.0/inc/admin/class.zpn.admin.action.php

    r3243760 r3351927  
    642642                        </div>';
    643643                    }
    644 
    645                     if(in_array('200', $response_code)){
    646                         echo '<div class="updated">' .
    647                         '<p>' . esc_html__( 'Push notification has been sent successfully...!', 'push-notifications-for-web' ) . '</p>' .
    648                         '</div>';
     644                    if( isset( $response_code ) ) {
     645                        if(in_array('200', $response_code)){
     646                            echo '<div class="updated">' .
     647                            '<p>' . esc_html__( 'Push notification has been sent successfully...!', 'push-notifications-for-web' ) . '</p>' .
     648                            '</div>';
     649                        }
    649650                    }
    650651
     
    743744
    744745}
     746
  • push-notifications-for-web/tags/2.0/readme.txt

    r3299335 r3351927  
    55Tested up to: 6.8
    66Requires PHP: 5.6
    7 Stable tag: 1.9
     7Stable tag: 2.0
    88License: GPLv3 or later License
    9 Version: 1.9
     9Version: 2.0
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1111
     
    7373== Upgrade Notice ==
    7474
     75= 2.0 =
     76- Bug fixed.
     77
    7578= 1.9 =
    7679- Minor changes - Doc update
  • push-notifications-for-web/tags/2.0/zealpush.php

    r3299335 r3351927  
    33 * Plugin Name: Push Notifications For Web
    44 * Plugin URL: https://wordpress.org/plugin-url/
    5  * Description: 1Best platform for sending web push notifications.
    6  * Version: 1.9
     5 * Description: Best platform for sending web push notifications.
     6 * Version: 2.0
    77 * Author: ZealousWeb
    88 * Author URI: https://www.zealousweb.com
     
    2424 *
    2525 * @package Web Push Notification
    26  * @since 1.9
     26 * @since 2.0
    2727 */
    2828
    2929if ( !defined( 'ZPN_VERSION' ) ) {
    30     define( 'ZPN_VERSION', '1.9' ); // Version of plugin
     30    define( 'ZPN_VERSION', '2.0' ); // Version of plugin
    3131}
    3232
  • push-notifications-for-web/trunk/inc/admin/class.zpn.admin.action.php

    r3243760 r3351927  
    642642                        </div>';
    643643                    }
    644 
    645                     if(in_array('200', $response_code)){
    646                         echo '<div class="updated">' .
    647                         '<p>' . esc_html__( 'Push notification has been sent successfully...!', 'push-notifications-for-web' ) . '</p>' .
    648                         '</div>';
     644                    if( isset( $response_code ) ) {
     645                        if(in_array('200', $response_code)){
     646                            echo '<div class="updated">' .
     647                            '<p>' . esc_html__( 'Push notification has been sent successfully...!', 'push-notifications-for-web' ) . '</p>' .
     648                            '</div>';
     649                        }
    649650                    }
    650651
     
    743744
    744745}
     746
  • push-notifications-for-web/trunk/readme.txt

    r3299335 r3351927  
    55Tested up to: 6.8
    66Requires PHP: 5.6
    7 Stable tag: 1.9
     7Stable tag: 2.0
    88License: GPLv3 or later License
    9 Version: 1.9
     9Version: 2.0
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
    1111
     
    7373== Upgrade Notice ==
    7474
     75= 2.0 =
     76- Bug fixed.
     77
    7578= 1.9 =
    7679- Minor changes - Doc update
  • push-notifications-for-web/trunk/zealpush.php

    r3299335 r3351927  
    33 * Plugin Name: Push Notifications For Web
    44 * Plugin URL: https://wordpress.org/plugin-url/
    5  * Description: 1Best platform for sending web push notifications.
    6  * Version: 1.9
     5 * Description: Best platform for sending web push notifications.
     6 * Version: 2.0
    77 * Author: ZealousWeb
    88 * Author URI: https://www.zealousweb.com
     
    2424 *
    2525 * @package Web Push Notification
    26  * @since 1.9
     26 * @since 2.0
    2727 */
    2828
    2929if ( !defined( 'ZPN_VERSION' ) ) {
    30     define( 'ZPN_VERSION', '1.9' ); // Version of plugin
     30    define( 'ZPN_VERSION', '2.0' ); // Version of plugin
    3131}
    3232
Note: See TracChangeset for help on using the changeset viewer.