Plugin Directory

Changeset 3378341


Ignore:
Timestamp:
10/14/2025 05:24:05 PM (4 months ago)
Author:
codingfix
Message:
  • Tested up to WordPress 6.8.3
  • Fixed a bug loading css in Admin area
Location:
language-switcher-for-transposh/tags/1.7.5
Files:
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • language-switcher-for-transposh/tags/1.7.5/README.txt

    r3199582 r3378341  
    44Tags: multi-language, translation
    55Requires at least: 4.0.1
    6 Tested up to: 6.7
    7 Stable tag: 1.7.4
     6Tested up to: 6.8.3
     7Stable tag: 1.7.5
    88Requires PHP: 5.6
    99Requires Plugins: transposh-translation-filter-for-wordpress
     
    356356* Tested up to WordPress 6.7
    357357
     358= 1.7.4 =
     359* Tested up to WordPress 6.8.3
     360* Fixed a bug loading css in Admin area
     361
    358362== Upgrade Notice ==
    359363
  • language-switcher-for-transposh/tags/1.7.5/admin/class-cfx-language-switcher-for-transposh-admin.php

    r3072495 r3378341  
    207207        $full_css_path = LSFT_PLUGIN_PATH . "assets/styles/$stylesheet";
    208208        if ( in_array( $stylesheet, $known_files, true ) ) {
    209             $wpfsd = new WP_Filesystem_Direct( false );
    210             $css   = $wpfsd->get_contents( $full_css_path );
     209            WP_Filesystem();
     210            global $wp_filesystem;
     211            $css   = $wp_filesystem->get_contents( $full_css_path );
    211212        }
    212213        echo esc_html( $css );
  • language-switcher-for-transposh/tags/1.7.5/cfx-language-switcher-for-transposh.php

    r3199582 r3378341  
    1616 * Plugin URI:        https://codingfix.com/language-switcher-for-transposh
    1717 * Description:       A small plugin to use a customized language switcher with Transposh plugin.
    18  * Version:           1.7.4
     18 * Version:           1.7.5
    1919 * Author:            Marco Gasi
    2020 * Author URI:        https://codingfix.com
     
    3030 * Rename this for your plugin and update it as you release new versions.
    3131 */
    32 define( 'CFX_LANGUAGE_SWITCHER_FOR_TRANSPOSH_VERSION', '1.7.4' );
     32define( 'CFX_LANGUAGE_SWITCHER_FOR_TRANSPOSH_VERSION', '1.7.5' );
    3333
    3434/**
Note: See TracChangeset for help on using the changeset viewer.