Changeset 2605682
- Timestamp:
- 09/27/2021 02:15:29 PM (5 years ago)
- Location:
- notix-web-push-notifications
- Files:
-
- 40 added
- 4 edited
-
tags/1.1.4 (added)
-
tags/1.1.4/README.txt (added)
-
tags/1.1.4/admin (added)
-
tags/1.1.4/admin/class-notix-admin.php (added)
-
tags/1.1.4/admin/css (added)
-
tags/1.1.4/admin/css/notix-admin.css (added)
-
tags/1.1.4/admin/img (added)
-
tags/1.1.4/admin/img/menu-icon.png (added)
-
tags/1.1.4/admin/index.php (added)
-
tags/1.1.4/admin/js (added)
-
tags/1.1.4/admin/js/notix-admin.js (added)
-
tags/1.1.4/admin/partials (added)
-
tags/1.1.4/admin/partials/notix-admin-settings-display.php (added)
-
tags/1.1.4/admin/partials/notix-admin-settings-log-display.php (added)
-
tags/1.1.4/includes (added)
-
tags/1.1.4/includes/class-notix-activator.php (added)
-
tags/1.1.4/includes/class-notix-deactivator.php (added)
-
tags/1.1.4/includes/class-notix-i18n.php (added)
-
tags/1.1.4/includes/class-notix-loader.php (added)
-
tags/1.1.4/includes/class-notix-utils.php (added)
-
tags/1.1.4/includes/class-notix.php (added)
-
tags/1.1.4/includes/index.php (added)
-
tags/1.1.4/index.php (added)
-
tags/1.1.4/languages (added)
-
tags/1.1.4/languages/notix.pot (added)
-
tags/1.1.4/notix.php (added)
-
tags/1.1.4/public (added)
-
tags/1.1.4/public/class-notix-public.php (added)
-
tags/1.1.4/public/css (added)
-
tags/1.1.4/public/css/notix-public.css (added)
-
tags/1.1.4/public/index.php (added)
-
tags/1.1.4/public/js (added)
-
tags/1.1.4/public/js/notix-public.js (added)
-
tags/1.1.4/public/partials (added)
-
tags/1.1.4/public/partials/notix-public-display-notify-tag-subscribers-popup.php (added)
-
tags/1.1.4/public/partials/notix-public-display-notify-tag-subscribers.php (added)
-
tags/1.1.4/public/partials/notix-public-display-tag.php (added)
-
tags/1.1.4/public/partials/notix-public-display.php (added)
-
tags/1.1.4/public/sw.enot.js (added)
-
tags/1.1.4/uninstall.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/admin/class-notix-admin.php (modified) (3 diffs)
-
trunk/includes/class-notix.php (modified) (1 diff)
-
trunk/notix.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
notix-web-push-notifications/trunk/README.txt
r2604160 r2605682 5 5 Requires at least: 4.9.4 6 6 Tested up to: 5.8.1 7 Stable tag: 1.1. 37 Stable tag: 1.1.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 80 80 == Changelog == 81 81 82 = 1.1.4 = 83 - Fix duplicate push notifications for madara theme 84 82 85 = 1.1.3 = 83 86 - Fix duplicate push notifications on create post -
notix-web-push-notifications/trunk/admin/class-notix-admin.php
r2604160 r2605682 171 171 } 172 172 173 if (isset($_POST['post_id_sended']) && $_POST['post_id_sended'] == $post_id) { 174 return $post_id; 175 } 176 173 177 if (!wp_verify_nonce((isset($_POST['notix_metabox_nonce']) ? 174 178 sanitize_text_field($_POST['notix_metabox_nonce']) : … … 191 195 } 192 196 197 $_POST['post_id_sended'] = $post_id; 198 193 199 Notix_Admin::notix_send_push($post_id); 194 200 } … … 196 202 public static function notix_send_push($post_id) 197 203 { 198 if ( $_POST['notix_send_checkbox'] !== 'on') {204 if (!isset($_POST['notix_send_checkbox']) || $_POST['notix_send_checkbox'] !== 'on') { 199 205 return $post_id; 200 206 } -
notix-web-push-notifications/trunk/includes/class-notix.php
r2604160 r2605682 18 18 $this->version = NOTIX_VERSION; 19 19 } else { 20 $this->version = '1.1. 3';20 $this->version = '1.1.4'; 21 21 } 22 22 $this->notix = 'notix'; -
notix-web-push-notifications/trunk/notix.php
r2604160 r2605682 4 4 * 5 5 * @link https://notix.co/ 6 * @since 1.1. 36 * @since 1.1.4 7 7 * @package Notix 8 8 * … … 10 10 * Plugin Name: Notix Push Notifications 11 11 * Description: Bring more repeat traffic to your WordPress site with Notix. Best engine for web push subscribers collection and notifications delivery. 12 * Version: 1.1. 312 * Version: 1.1.4 13 13 * Author: Notix 14 14 * Author URI: https://notix.co/
Note: See TracChangeset
for help on using the changeset viewer.