Plugin Directory

Changeset 3475862


Ignore:
Timestamp:
03/05/2026 07:06:57 PM (4 weeks ago)
Author:
anevo
Message:

Update to version 6.5.3 from GitHub

Location:
an-gradebook
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • an-gradebook/tags/6.5.3/GradeBook.php

    r3471372 r3475862  
    44Plugin URI: https://wordpress.org/plugins/an-gradebook/
    55Description: A gradebook plugin for educators to create, maintain, and share grades.
    6 Version: 6.5.1
     6Version: 6.5.3
    77Author: Aori Nevo
    88Author URI: http://www.aorinevo.com
     
    2020}
    2121
    22 define( 'AN_GRADEBOOK_VERSION', '6.5.1' );
     22define( 'AN_GRADEBOOK_VERSION', '6.5.3' );
    2323
    2424require_once plugin_dir_path( __FILE__ ) . 'functions.php';
     
    9797
    9898    wp_localize_script( 'an-gradebook-react', 'anGradebookSettings', array(
    99         'restNonce' => wp_create_nonce( 'wp_rest' ),
    100         'restUrl'   => rest_url( 'an-gradebook/v1/' ),
    101         'userRole'  => current_user_can( 'manage_options' ) ? 'instructor' : 'student',
     99        'restNonce' => esc_attr( wp_create_nonce( 'wp_rest' ) ),
     100        'restUrl'   => esc_url( rest_url( 'an-gradebook/v1/' ) ),
     101        'userRole'  => esc_attr(current_user_can( 'manage_options' )) ? 'instructor' : 'student',
    102102    ) );
    103103}
  • an-gradebook/tags/6.5.3/readme.txt

    r3471372 r3475862  
    44Requires at least: 6.0
    55Tested up to: 6.9
    6 Stable tag: 6.5.1
     6Stable tag: 6.5.3
    77Requires PHP: 7.4
    88License: GPL-2.0-or-later
     
    6363
    6464== Changelog ==
     65
     66= 6.5.3 =
     67* version input on deploy workflow
     68
     69= 6.5.2 =
     70* address early esc output
    6571
    6672= 6.5.1 =
  • an-gradebook/trunk/GradeBook.php

    r3471372 r3475862  
    44Plugin URI: https://wordpress.org/plugins/an-gradebook/
    55Description: A gradebook plugin for educators to create, maintain, and share grades.
    6 Version: 6.5.1
     6Version: 6.5.3
    77Author: Aori Nevo
    88Author URI: http://www.aorinevo.com
     
    2020}
    2121
    22 define( 'AN_GRADEBOOK_VERSION', '6.5.1' );
     22define( 'AN_GRADEBOOK_VERSION', '6.5.3' );
    2323
    2424require_once plugin_dir_path( __FILE__ ) . 'functions.php';
     
    9797
    9898    wp_localize_script( 'an-gradebook-react', 'anGradebookSettings', array(
    99         'restNonce' => wp_create_nonce( 'wp_rest' ),
    100         'restUrl'   => rest_url( 'an-gradebook/v1/' ),
    101         'userRole'  => current_user_can( 'manage_options' ) ? 'instructor' : 'student',
     99        'restNonce' => esc_attr( wp_create_nonce( 'wp_rest' ) ),
     100        'restUrl'   => esc_url( rest_url( 'an-gradebook/v1/' ) ),
     101        'userRole'  => esc_attr(current_user_can( 'manage_options' )) ? 'instructor' : 'student',
    102102    ) );
    103103}
  • an-gradebook/trunk/readme.txt

    r3471372 r3475862  
    44Requires at least: 6.0
    55Tested up to: 6.9
    6 Stable tag: 6.5.1
     6Stable tag: 6.5.3
    77Requires PHP: 7.4
    88License: GPL-2.0-or-later
     
    6363
    6464== Changelog ==
     65
     66= 6.5.3 =
     67* version input on deploy workflow
     68
     69= 6.5.2 =
     70* address early esc output
    6571
    6672= 6.5.1 =
Note: See TracChangeset for help on using the changeset viewer.