Changeset 3253996
- Timestamp:
- 03/11/2025 11:59:22 AM (12 months ago)
- Location:
- polylang/tags/3.6.7
- Files:
-
- 6 edited
- 1 copied
-
. (copied) (copied from polylang/tags/3.6.6)
-
include/crud-posts.php (modified) (1 diff)
-
include/functions.php (modified) (1 diff)
-
modules/site-health/admin-site-health.php (modified) (1 diff)
-
polylang.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
polylang/tags/3.6.7/include/crud-posts.php
r3221451 r3253996 145 145 static $avoid_recursion; 146 146 147 if ( $avoid_recursion || empty( $terms ) || ! is_array( $terms ) || ! $this->model->is_translated_taxonomy( $taxonomy ) ) { 147 if ( $avoid_recursion || empty( $terms ) || ! is_array( $terms ) || empty( $tt_ids ) 148 || ! $this->model->is_translated_taxonomy( $taxonomy ) ) { 148 149 return; 149 150 } -
polylang/tags/3.6.7/include/functions.php
r3221451 r3253996 226 226 implode( '<br>', $error->get_error_messages( $error_code ) ), 227 227 array( 228 'a' => array( 'href' ),228 'a' => array( 'href' => true ), 229 229 'br' => array(), 230 230 'code' => array(), -
polylang/tags/3.6.7/modules/site-health/admin-site-health.php
r3221451 r3253996 291 291 292 292 $debug_info[ 'pll_language_' . $language->slug ] = array( 293 /* translators: placeholder is the language name */294 'label' => sprintf( __( 'Language: % s', 'polylang' ), $language->name),293 /* translators: %1$s placeholder is the language name, %2$s is the language code */ 294 'label' => sprintf( __( 'Language: %1$s - %2$s', 'polylang' ), $language->name, $language->slug ), 295 295 /* translators: placeholder is the flag image */ 296 296 'description' => sprintf( esc_html__( 'Flag used in the language switcher: %s', 'polylang' ), $this->get_flag( $language ) ), -
polylang/tags/3.6.7/polylang.php
r3221451 r3253996 11 11 * Plugin URI: https://polylang.pro 12 12 * Description: Adds multilingual capability to WordPress 13 * Version: 3.6. 613 * Version: 3.6.7 14 14 * Requires at least: 6.2 15 15 * Requires PHP: 7.0 … … 54 54 } else { 55 55 // Go on loading the plugin 56 define( 'POLYLANG_VERSION', '3.6. 6' );56 define( 'POLYLANG_VERSION', '3.6.7' ); 57 57 define( 'PLL_MIN_WP_VERSION', '6.2' ); 58 58 define( 'PLL_MIN_PHP_VERSION', '7.0' ); -
polylang/tags/3.6.7/readme.txt
r3221451 r3253996 6 6 Tested up to: 6.7 7 7 Requires PHP: 7.0 8 Stable tag: 3.6. 68 Stable tag: 3.6.7 9 9 License: GPLv3 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 106 106 == Changelog == 107 107 108 = 3.6.7 (2025-03-11) = 109 110 * Pro: Security : Fix private content disclosure. 111 * Fix links wrongly removed in notices #1627 112 * Fix all categories assigned when the default category is missing #1617 113 108 114 = 3.6.6 (2025-01-13) = 109 115 -
polylang/tags/3.6.7/vendor/composer/installed.php
r3221451 r3253996 4 4 'pretty_version' => '3.6.x-dev', 5 5 'version' => '3.6.9999999.9999999-dev', 6 'reference' => ' 803654e02a6f2e018f832efd4ef660b433d6249a',6 'reference' => 'f89781f84bf98b991f68e23c4f9eef800fa730a7', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => '3.6.x-dev', 15 15 'version' => '3.6.9999999.9999999-dev', 16 'reference' => ' 803654e02a6f2e018f832efd4ef660b433d6249a',16 'reference' => 'f89781f84bf98b991f68e23c4f9eef800fa730a7', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.