Changeset 3459490
- Timestamp:
- 02/12/2026 03:20:27 AM (4 weeks ago)
- Location:
- xml-sitemap-generator-for-google/trunk
- Files:
-
- 3 edited
-
includes/Dashboard.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
xml-sitemap-generator-for-google.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
xml-sitemap-generator-for-google/trunk/includes/Dashboard.php
r3455562 r3459490 184 184 185 185 // Check YouTube API Key 186 if ( ! empty( $_POST['youtube_check_api_key'] ) && $saved_settings->youtube_api_key !== $_POST['youtube_api_key']186 if ( ( ! empty( $_POST['youtube_check_api_key'] ) || $saved_settings->youtube_api_key !== $_POST['youtube_api_key'] ) 187 187 && ! empty( $_POST['youtube_api_key'] ) && is_callable( 'SGG_PRO\Classes\Video_Sitemap::request_youtube_data' ) ) { 188 188 $youtube_data = Video_Sitemap::request_youtube_data( 'dQw4w9WgXcQ', sanitize_text_field( $_POST['youtube_api_key'] ) ); … … 200 200 201 201 // Check Vimeo API Key 202 if ( ! empty( $_POST['vimeo_check_api_key'] ) && $saved_settings->vimeo_api_key !== $_POST['vimeo_api_key']202 if ( ( ! empty( $_POST['vimeo_check_api_key'] ) || $saved_settings->vimeo_api_key !== $_POST['vimeo_api_key'] ) 203 203 && ! empty( $_POST['vimeo_api_key'] ) && is_callable( 'SGG_PRO\Classes\Video_Sitemap::request_vimeo_data' ) ) { 204 204 $vimeo_data = Video_Sitemap::request_vimeo_data( '22439234', sanitize_text_field( $_POST['vimeo_api_key'] ) ); -
xml-sitemap-generator-for-google/trunk/readme.txt
r3455562 r3459490 5 5 Requires at least: 5.0 6 6 Requires PHP: 5.6 7 Tested up to: 6.9 8 Stable tag: 2.2. 77 Tested up to: 6.9.1 8 Stable tag: 2.2.8 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 300 300 == Changelog == 301 301 302 = 2.2.8 - 2026-02-12 = 303 * WordPress 6.9.1 compatible 304 * Pro Version: Check YouTube & Vimeo API keys issue fixed 305 302 306 = 2.2.7 - 2026-02-06 = 303 307 * Additional URLs appearance improved -
xml-sitemap-generator-for-google/trunk/xml-sitemap-generator-for-google.php
r3455562 r3459490 9 9 * License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 10 * Text Domain: xml-sitemap-generator-for-google 11 * Version: 2.2. 711 * Version: 2.2.8 12 12 */ 13 13 … … 16 16 } 17 17 18 define( 'GRIM_SG_VERSION', '2.2. 7' );18 define( 'GRIM_SG_VERSION', '2.2.8' ); 19 19 define( 'GRIM_SG_FILE', __FILE__ ); 20 20 define( 'GRIM_SG_PATH', dirname( GRIM_SG_FILE ) );
Note: See TracChangeset
for help on using the changeset viewer.