Changeset 3181569
- Timestamp:
- 11/04/2024 03:10:00 PM (17 months ago)
- Location:
- streamweasels-twitch-integration/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
includes/class-streamweasels-twitch.php (modified) (3 diffs)
-
streamweasels.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
streamweasels-twitch-integration/trunk/README.txt
r3173108 r3181569 4 4 Requires at least: 5.0 5 5 Tested up to: 6.6 6 Stable tag: 1.9. 06 Stable tag: 1.9.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 125 125 126 126 == Changelog == 127 128 = 1.9.1 = 129 * Fixed an error with nonce generation 127 130 128 131 = 1.9.0 = -
streamweasels-twitch-integration/trunk/includes/class-streamweasels-twitch.php
r3173108 r3181569 323 323 324 324 public function swti_fetch_video(WP_REST_Request $request) { 325 326 $nonce = $request->get_header('X-WP-Nonce'); 325 327 326 328 if (!$this->nonceCheck) { … … 373 375 function swti_fetch_users(WP_REST_Request $request) { 374 376 377 $nonce = $request->get_header('X-WP-Nonce'); 378 375 379 if (!$this->nonceCheck) { 376 380 if (!wp_verify_nonce($nonce, 'wp_rest')) { … … 415 419 416 420 function swti_fetch_games(WP_REST_Request $request) { 421 422 $nonce = $request->get_header('X-WP-Nonce'); 417 423 418 424 if (!$this->nonceCheck) { -
streamweasels-twitch-integration/trunk/streamweasels.php
r3173108 r3181569 17 17 * Plugin URI: https://www.streamweasels.com/ 18 18 * Description: Embed Twitch streams with our collection of Twitch Blocks and Shortcodes. 19 * Version: 1.9. 019 * Version: 1.9.1 20 20 * Author: StreamWeasels 21 21 * Author URI: https://www.streamweasels.com … … 34 34 * Rename this for your plugin and update it as you release new versions. 35 35 */ 36 define( 'STREAMWEASELS_VERSION', '1.9. 0' );36 define( 'STREAMWEASELS_VERSION', '1.9.1' ); 37 37 if ( function_exists( 'sti_fs' ) ) { 38 38 sti_fs()->set_basename( false, __FILE__ );
Note: See TracChangeset
for help on using the changeset viewer.