Changeset 2604160
- Timestamp:
- 09/24/2021 08:48:50 AM (5 years ago)
- Location:
- notix-web-push-notifications
- Files:
-
- 40 added
- 4 edited
-
tags/1.1.3 (added)
-
tags/1.1.3/README.txt (added)
-
tags/1.1.3/admin (added)
-
tags/1.1.3/admin/class-notix-admin.php (added)
-
tags/1.1.3/admin/css (added)
-
tags/1.1.3/admin/css/notix-admin.css (added)
-
tags/1.1.3/admin/img (added)
-
tags/1.1.3/admin/img/menu-icon.png (added)
-
tags/1.1.3/admin/index.php (added)
-
tags/1.1.3/admin/js (added)
-
tags/1.1.3/admin/js/notix-admin.js (added)
-
tags/1.1.3/admin/partials (added)
-
tags/1.1.3/admin/partials/notix-admin-settings-display.php (added)
-
tags/1.1.3/admin/partials/notix-admin-settings-log-display.php (added)
-
tags/1.1.3/includes (added)
-
tags/1.1.3/includes/class-notix-activator.php (added)
-
tags/1.1.3/includes/class-notix-deactivator.php (added)
-
tags/1.1.3/includes/class-notix-i18n.php (added)
-
tags/1.1.3/includes/class-notix-loader.php (added)
-
tags/1.1.3/includes/class-notix-utils.php (added)
-
tags/1.1.3/includes/class-notix.php (added)
-
tags/1.1.3/includes/index.php (added)
-
tags/1.1.3/index.php (added)
-
tags/1.1.3/languages (added)
-
tags/1.1.3/languages/notix.pot (added)
-
tags/1.1.3/notix.php (added)
-
tags/1.1.3/public (added)
-
tags/1.1.3/public/class-notix-public.php (added)
-
tags/1.1.3/public/css (added)
-
tags/1.1.3/public/css/notix-public.css (added)
-
tags/1.1.3/public/index.php (added)
-
tags/1.1.3/public/js (added)
-
tags/1.1.3/public/js/notix-public.js (added)
-
tags/1.1.3/public/partials (added)
-
tags/1.1.3/public/partials/notix-public-display-notify-tag-subscribers-popup.php (added)
-
tags/1.1.3/public/partials/notix-public-display-notify-tag-subscribers.php (added)
-
tags/1.1.3/public/partials/notix-public-display-tag.php (added)
-
tags/1.1.3/public/partials/notix-public-display.php (added)
-
tags/1.1.3/public/sw.enot.js (added)
-
tags/1.1.3/uninstall.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/admin/class-notix-admin.php (modified) (1 diff)
-
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
r2603559 r2604160 5 5 Requires at least: 4.9.4 6 6 Tested up to: 5.8.1 7 Stable tag: 1.1. 27 Stable tag: 1.1.3 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.3 = 83 - Fix duplicate push notifications on create post 84 82 85 = 1.1.2 = 83 86 - Fix duplicate push notifications on preview posts -
notix-web-push-notifications/trunk/admin/class-notix-admin.php
r2603559 r2604160 163 163 } 164 164 165 if ( $post->post_status!== 'publish' && !in_array($post->post_type, $post_types)) {165 if (!isset($_POST['post_status']) || $_POST['post_status'] !== 'publish' && !in_array($post->post_type, $post_types)) { 166 166 return $post_id; 167 167 } -
notix-web-push-notifications/trunk/includes/class-notix.php
r2603559 r2604160 18 18 $this->version = NOTIX_VERSION; 19 19 } else { 20 $this->version = '1.1. 2';20 $this->version = '1.1.3'; 21 21 } 22 22 $this->notix = 'notix'; -
notix-web-push-notifications/trunk/notix.php
r2603559 r2604160 4 4 * 5 5 * @link https://notix.co/ 6 * @since 1.1. 26 * @since 1.1.3 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. 212 * Version: 1.1.3 13 13 * Author: Notix 14 14 * Author URI: https://notix.co/
Note: See TracChangeset
for help on using the changeset viewer.