Changeset 2380035
- Timestamp:
- 09/12/2020 11:31:50 AM (5 years ago)
- Location:
- adwised
- Files:
-
- 20 added
- 2 edited
-
tags/2.3.3 (added)
-
tags/2.3.3/AdwisedFavicon.ico (added)
-
tags/2.3.3/adwised.php (added)
-
tags/2.3.3/adwisedicon.png (added)
-
tags/2.3.3/assets (added)
-
tags/2.3.3/assets/adwised_ajaxcall.js (added)
-
tags/2.3.3/assets/adwisedicon.png (added)
-
tags/2.3.3/assets/adwisedpop.js (added)
-
tags/2.3.3/assets/icon.png (added)
-
tags/2.3.3/assets/screenshot-1.PNG (added)
-
tags/2.3.3/firebase-messaging-sw.js (added)
-
tags/2.3.3/languages (added)
-
tags/2.3.3/languages/adwised.pot (added)
-
tags/2.3.3/languages/insert-headers-and-footers.pot (added)
-
tags/2.3.3/readme.txt (added)
-
tags/2.3.3/screenshot-1.PNG (added)
-
tags/2.3.3/views (added)
-
tags/2.3.3/views/dashboard-notices.php (added)
-
tags/2.3.3/views/settings.php (added)
-
tags/2.3.3/views/sidebar.php (added)
-
trunk/adwised.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
adwised/trunk/adwised.php
r2375739 r2380035 4 4 * Plugin Name: adwised 5 5 * Plugin URI: https://wordpress.org/plugins/adwised 6 * Version: 2.3. 26 * Version: 2.3.3 7 7 * Author: Adwised 8 8 * Author URI: http://adwised.com … … 173 173 update_option('adwised_cpt_select', $_REQUEST['adwised_cpt_select']); 174 174 update_option('adwisedPushDeactivate', $_REQUEST['adwisedPushDeactivate']); 175 176 $pushConfig = new stdClass(); 177 $pushConfig->client_id = get_option('adwised_client_id'); 178 $pushConfig->topic = get_option('adwised_topic'); 179 if (get_option("adwised_welcome_dismissed_key")) 180 { 181 $currentPushConfig = get_option("adwisedPushConfig"); 182 $pushConfig->ask_location = $currentPushConfig->ask_location === NULL ? true : $currentPushConfig->ask_location; 183 $pushConfig->double_permission_active = $currentPushConfig->double_permission_active === NULL ? false : $currentPushConfig->double_permission_active; 184 } else { 185 $pushConfig->ask_location = true; 186 $pushConfig->double_permission_active = false; 187 } 188 update_option("adwisedPushConfig", $pushConfig); 189 190 175 191 176 192 // popup -
adwised/trunk/readme.txt
r2375739 r2380035 5 5 Requires PHP: 5.2.4 6 6 Tested up to: 5.3 7 Stable tag: 2.3. 27 Stable tag: 2.3.3 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.txt
Note: See TracChangeset
for help on using the changeset viewer.