Changeset 3050608
- Timestamp:
- 03/13/2024 04:56:03 PM (2 years ago)
- Location:
- awesome-support/trunk
- Files:
-
- 5 edited
-
awesome-support.php (modified) (2 diffs)
-
includes/admin/functions-ajax.php (modified) (1 diff)
-
includes/admin/upgrade/functions-upgrade.php (modified) (1 diff)
-
includes/admin/views/about-tab-change-log.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
awesome-support/trunk/awesome-support.php
r3040027 r3050608 11 11 * Plugin URI: https://getawesomesupport.com 12 12 * Description: Awesome Support is a great ticketing system that will help you improve your customer satisfaction by providing a unique customer support experience. 13 * Version: 6.1. 913 * Version: 6.1.10 14 14 * Author: Awesome Support Team 15 15 * Author URI: https://getawesomesupport.com … … 250 250 */ 251 251 private function setup_constants() { 252 define( 'WPAS_VERSION', '6.1. 9' );252 define( 'WPAS_VERSION', '6.1.10' ); 253 253 define( 'WPAS_DB_VERSION', '1' ); 254 254 define( 'WPAS_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) ); -
awesome-support/trunk/includes/admin/functions-ajax.php
r2670014 r3050608 32 32 */ 33 33 function wpas_skip_wizard_setup() { 34 add_option( 'wpas_skip_wizard_setup', true ); 35 wp_die(); 34 if ( current_user_can( 'administrator' ) ) { 35 add_option( 'wpas_skip_wizard_setup', true ); 36 wp_die(); 37 } 38 wp_send_json([], 401); 36 39 } 37 40 -
awesome-support/trunk/includes/admin/upgrade/functions-upgrade.php
r3040027 r3050608 906 906 wpas_upgrade_581(); 907 907 } 908 909 /** 910 * Upgrade function for version 6.1.10 911 * 912 * No new capabilities need to be added to certain roles. 913 * 914 * @since 6.1 915 * @return void 916 */ 917 function wpas_upgrade_61100() { 918 // Run the 581 upgrade option for version 6014. 919 // The 581 upgrade was the internal upgrade option during testing of the 6013 release. 920 // Therefore the two routines are the same and there is no reason to write a separate 6013 routine. 921 // But we do want early 581 adopters to get the later changes to the update routine. So 922 // we create this 6014 routine to make sure it runs for early 520 adopters. 923 wpas_upgrade_581(); 924 } -
awesome-support/trunk/includes/admin/views/about-tab-change-log.php
r3040027 r3050608 3 3 <div class="changelog"> 4 4 5 <div class="row"> 6 <div> 7 <div class="about-body"> 8 <h1>What's New In 6.1.10</h1> 9 <h3>6.1.10 includes the vulnerabilities fix and security patches. Here is a more comprehensive list:</h3> 10 <ul style="padding-left: 3em; list-style-type: disc;"> 11 <li>We fixed the vulnerability where a subscriber role could have the ability to skip the "Awesome Support: First Time Install" banner process in the admin+ dashboard.</li> 12 </ul> 13 </div> 14 </div> 15 </div> 16 17 <hr /> 5 18 <div class="row"> 6 19 <div> -
awesome-support/trunk/readme.txt
r3046167 r3050608 5 5 Requires at least: 4.0 6 6 Tested up to: 6.4 7 Stable tag: 6.1. 97 Stable tag: 6.1.10 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 292 292 == Changelog == 293 293 294 = 6.1.10 295 * We fixed the vulnerability where a subscriber role could have the ability to skip the "Awesome Support: First Time Install" banner process in the admin dashboard. 296 294 297 = 6.1.9 295 298 * We fixed when the agent was not able to choose a user when changing the ticket creator field.
Note: See TracChangeset
for help on using the changeset viewer.