Plugin Directory

Changeset 3406298


Ignore:
Timestamp:
11/30/2025 08:07:07 PM (4 weeks ago)
Author:
joedolson
Message:

Add 3.6.17, remove 3.6.15. Change stable.

No release tagged.

Location:
my-calendar
Files:
1379 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • my-calendar/trunk/my-calendar-core.php

    r3334986 r3406298  
    24642464}
    24652465
    2466 add_action( 'admin_init', 'mc_dismiss_notice' );
    2467 /**
    2468  * Dismiss admin notices
    2469  */
    2470 function mc_dismiss_notice() {
    2471     if ( isset( $_GET['dismiss'] ) && 'update' === $_GET['dismiss'] ) {
    2472         $notice = ( isset( $_GET['notice'] ) ) ? sanitize_text_field( $_GET['notice'] ) : '';
    2473         if ( $notice ) {
    2474             update_option( 'mc_notice_' . $notice, 1 );
    2475         }
    2476     }
    2477 }
    2478 
    24792466add_action( 'admin_notices', 'mc_update_notice' );
    24802467/**
  • my-calendar/trunk/my-calendar.php

    r3388457 r3406298  
    1717 * License:     GPL-2.0+
    1818 * License URI: http://www.gnu.org/license/gpl-2.0.txt
    19  * Version:     3.6.16
     19 * Version:     3.6.17
    2020 */
    2121
     
    5454        return get_option( 'mc_version', '' );
    5555    }
    56     return '3.6.16';
     56    return '3.6.17';
    5757}
    5858
  • my-calendar/trunk/readme.txt

    r3388457 r3406298  
    77Requires PHP: 7.4
    88Text domain: my-calendar
    9 Stable tag: 3.6.16
     9Stable tag: 3.6.17
    1010License: GPLv3 or later
    1111
     
    109109== Changelog ==
    110110
     111= 3.6.17 =
     112
     113* Security: Broken Access Control in unused `mc_dismiss_notice()` function. Props @patchstack and Doan Dinh Van.
     114
    111115= 3.6.16 =
    112116
    113117* Bug fix: Omit `mc_id` parameter on permalinks if event is singular.
    114 * Bug fix: Hidden focusable elements inside the dialog broke focus management.
     118* Bug fix: Hidden focusable elements inside the dialog broke focus management. Props @alh0319.
    115119* Change: Switch non-modal content from using `aria-hidden` to using `inert`.
    116120
Note: See TracChangeset for help on using the changeset viewer.