Changeset 3351927
- Timestamp:
- 08/28/2025 10:59:10 AM (6 months ago)
- Location:
- push-notifications-for-web
- Files:
-
- 6 edited
- 1 copied
-
tags/2.0 (copied) (copied from push-notifications-for-web/trunk)
-
tags/2.0/inc/admin/class.zpn.admin.action.php (modified) (2 diffs)
-
tags/2.0/readme.txt (modified) (2 diffs)
-
tags/2.0/zealpush.php (modified) (2 diffs)
-
trunk/inc/admin/class.zpn.admin.action.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/zealpush.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
push-notifications-for-web/tags/2.0/inc/admin/class.zpn.admin.action.php
r3243760 r3351927 642 642 </div>'; 643 643 } 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 } 649 650 } 650 651 … … 743 744 744 745 } 746 -
push-notifications-for-web/tags/2.0/readme.txt
r3299335 r3351927 5 5 Tested up to: 6.8 6 6 Requires PHP: 5.6 7 Stable tag: 1.97 Stable tag: 2.0 8 8 License: GPLv3 or later License 9 Version: 1.99 Version: 2.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html 11 11 … … 73 73 == Upgrade Notice == 74 74 75 = 2.0 = 76 - Bug fixed. 77 75 78 = 1.9 = 76 79 - Minor changes - Doc update -
push-notifications-for-web/tags/2.0/zealpush.php
r3299335 r3351927 3 3 * Plugin Name: Push Notifications For Web 4 4 * Plugin URL: https://wordpress.org/plugin-url/ 5 * Description: 1Best platform for sending web push notifications.6 * Version: 1.95 * Description: Best platform for sending web push notifications. 6 * Version: 2.0 7 7 * Author: ZealousWeb 8 8 * Author URI: https://www.zealousweb.com … … 24 24 * 25 25 * @package Web Push Notification 26 * @since 1.926 * @since 2.0 27 27 */ 28 28 29 29 if ( !defined( 'ZPN_VERSION' ) ) { 30 define( 'ZPN_VERSION', ' 1.9' ); // Version of plugin30 define( 'ZPN_VERSION', '2.0' ); // Version of plugin 31 31 } 32 32 -
push-notifications-for-web/trunk/inc/admin/class.zpn.admin.action.php
r3243760 r3351927 642 642 </div>'; 643 643 } 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 } 649 650 } 650 651 … … 743 744 744 745 } 746 -
push-notifications-for-web/trunk/readme.txt
r3299335 r3351927 5 5 Tested up to: 6.8 6 6 Requires PHP: 5.6 7 Stable tag: 1.97 Stable tag: 2.0 8 8 License: GPLv3 or later License 9 Version: 1.99 Version: 2.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html 11 11 … … 73 73 == Upgrade Notice == 74 74 75 = 2.0 = 76 - Bug fixed. 77 75 78 = 1.9 = 76 79 - Minor changes - Doc update -
push-notifications-for-web/trunk/zealpush.php
r3299335 r3351927 3 3 * Plugin Name: Push Notifications For Web 4 4 * Plugin URL: https://wordpress.org/plugin-url/ 5 * Description: 1Best platform for sending web push notifications.6 * Version: 1.95 * Description: Best platform for sending web push notifications. 6 * Version: 2.0 7 7 * Author: ZealousWeb 8 8 * Author URI: https://www.zealousweb.com … … 24 24 * 25 25 * @package Web Push Notification 26 * @since 1.926 * @since 2.0 27 27 */ 28 28 29 29 if ( !defined( 'ZPN_VERSION' ) ) { 30 define( 'ZPN_VERSION', ' 1.9' ); // Version of plugin30 define( 'ZPN_VERSION', '2.0' ); // Version of plugin 31 31 } 32 32
Note: See TracChangeset
for help on using the changeset viewer.