Changeset 3475862
- Timestamp:
- 03/05/2026 07:06:57 PM (4 weeks ago)
- Location:
- an-gradebook
- Files:
-
- 4 edited
- 1 copied
-
tags/6.5.3 (copied) (copied from an-gradebook/trunk)
-
tags/6.5.3/GradeBook.php (modified) (3 diffs)
-
tags/6.5.3/readme.txt (modified) (2 diffs)
-
trunk/GradeBook.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
an-gradebook/tags/6.5.3/GradeBook.php
r3471372 r3475862 4 4 Plugin URI: https://wordpress.org/plugins/an-gradebook/ 5 5 Description: A gradebook plugin for educators to create, maintain, and share grades. 6 Version: 6.5. 16 Version: 6.5.3 7 7 Author: Aori Nevo 8 8 Author URI: http://www.aorinevo.com … … 20 20 } 21 21 22 define( 'AN_GRADEBOOK_VERSION', '6.5. 1' );22 define( 'AN_GRADEBOOK_VERSION', '6.5.3' ); 23 23 24 24 require_once plugin_dir_path( __FILE__ ) . 'functions.php'; … … 97 97 98 98 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', 102 102 ) ); 103 103 } -
an-gradebook/tags/6.5.3/readme.txt
r3471372 r3475862 4 4 Requires at least: 6.0 5 5 Tested up to: 6.9 6 Stable tag: 6.5. 16 Stable tag: 6.5.3 7 7 Requires PHP: 7.4 8 8 License: GPL-2.0-or-later … … 63 63 64 64 == Changelog == 65 66 = 6.5.3 = 67 * version input on deploy workflow 68 69 = 6.5.2 = 70 * address early esc output 65 71 66 72 = 6.5.1 = -
an-gradebook/trunk/GradeBook.php
r3471372 r3475862 4 4 Plugin URI: https://wordpress.org/plugins/an-gradebook/ 5 5 Description: A gradebook plugin for educators to create, maintain, and share grades. 6 Version: 6.5. 16 Version: 6.5.3 7 7 Author: Aori Nevo 8 8 Author URI: http://www.aorinevo.com … … 20 20 } 21 21 22 define( 'AN_GRADEBOOK_VERSION', '6.5. 1' );22 define( 'AN_GRADEBOOK_VERSION', '6.5.3' ); 23 23 24 24 require_once plugin_dir_path( __FILE__ ) . 'functions.php'; … … 97 97 98 98 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', 102 102 ) ); 103 103 } -
an-gradebook/trunk/readme.txt
r3471372 r3475862 4 4 Requires at least: 6.0 5 5 Tested up to: 6.9 6 Stable tag: 6.5. 16 Stable tag: 6.5.3 7 7 Requires PHP: 7.4 8 8 License: GPL-2.0-or-later … … 63 63 64 64 == Changelog == 65 66 = 6.5.3 = 67 * version input on deploy workflow 68 69 = 6.5.2 = 70 * address early esc output 65 71 66 72 = 6.5.1 =
Note: See TracChangeset
for help on using the changeset viewer.