Plugin Directory

Changeset 3050608


Ignore:
Timestamp:
03/13/2024 04:56:03 PM (2 years ago)
Author:
yeisonbp
Message:

init v6.1.10

Location:
awesome-support/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • awesome-support/trunk/awesome-support.php

    r3040027 r3050608  
    1111 * Plugin URI:        https://getawesomesupport.com
    1212 * 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.9
     13 * Version:           6.1.10
    1414 * Author:            Awesome Support Team
    1515 * Author URI:         https://getawesomesupport.com
     
    250250         */
    251251        private function setup_constants() {
    252             define( 'WPAS_VERSION',           '6.1.9' );
     252            define( 'WPAS_VERSION',           '6.1.10' );
    253253            define( 'WPAS_DB_VERSION',        '1' );
    254254            define( 'WPAS_URL',               trailingslashit( plugin_dir_url( __FILE__ ) ) );
  • awesome-support/trunk/includes/admin/functions-ajax.php

    r2670014 r3050608  
    3232 */
    3333function 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);
    3639}
    3740
  • awesome-support/trunk/includes/admin/upgrade/functions-upgrade.php

    r3040027 r3050608  
    906906    wpas_upgrade_581();
    907907}
     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 */
     917function 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  
    33<div class="changelog">
    44   
     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 /> 
    518    <div class="row">
    619        <div>
  • awesome-support/trunk/readme.txt

    r3046167 r3050608  
    55Requires at least: 4.0
    66Tested up to: 6.4
    7 Stable tag: 6.1.9
     7Stable tag: 6.1.10
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    292292== Changelog ==
    293293
     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
    294297= 6.1.9
    295298    * 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.