Plugin Directory

Changeset 3253996


Ignore:
Timestamp:
03/11/2025 11:59:22 AM (12 months ago)
Author:
Chouby
Message:

Version 3.6.7

Location:
polylang/tags/3.6.7
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • polylang/tags/3.6.7/include/crud-posts.php

    r3221451 r3253996  
    145145        static $avoid_recursion;
    146146
    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 ) ) {
    148149            return;
    149150        }
  • polylang/tags/3.6.7/include/functions.php

    r3221451 r3253996  
    226226            implode( '<br>', $error->get_error_messages( $error_code ) ),
    227227            array(
    228                 'a'    => array( 'href' ),
     228                'a'    => array( 'href' => true ),
    229229                'br'   => array(),
    230230                'code' => array(),
  • polylang/tags/3.6.7/modules/site-health/admin-site-health.php

    r3221451 r3253996  
    291291
    292292            $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 ),
    295295                /* translators: placeholder is the flag image */
    296296                '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  
    1111 * Plugin URI:        https://polylang.pro
    1212 * Description:       Adds multilingual capability to WordPress
    13  * Version:           3.6.6
     13 * Version:           3.6.7
    1414 * Requires at least: 6.2
    1515 * Requires PHP:      7.0
     
    5454} else {
    5555    // Go on loading the plugin
    56     define( 'POLYLANG_VERSION', '3.6.6' );
     56    define( 'POLYLANG_VERSION', '3.6.7' );
    5757    define( 'PLL_MIN_WP_VERSION', '6.2' );
    5858    define( 'PLL_MIN_PHP_VERSION', '7.0' );
  • polylang/tags/3.6.7/readme.txt

    r3221451 r3253996  
    66Tested up to: 6.7
    77Requires PHP: 7.0
    8 Stable tag: 3.6.6
     8Stable tag: 3.6.7
    99License: GPLv3 or later
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    106106== Changelog ==
    107107
     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
    108114= 3.6.6 (2025-01-13) =
    109115
  • polylang/tags/3.6.7/vendor/composer/installed.php

    r3221451 r3253996  
    44        'pretty_version' => '3.6.x-dev',
    55        'version' => '3.6.9999999.9999999-dev',
    6         'reference' => '803654e02a6f2e018f832efd4ef660b433d6249a',
     6        'reference' => 'f89781f84bf98b991f68e23c4f9eef800fa730a7',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => '3.6.x-dev',
    1515            'version' => '3.6.9999999.9999999-dev',
    16             'reference' => '803654e02a6f2e018f832efd4ef660b433d6249a',
     16            'reference' => 'f89781f84bf98b991f68e23c4f9eef800fa730a7',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.