Plugin Directory

Changeset 3495221


Ignore:
Timestamp:
03/31/2026 07:11:53 AM (5 days ago)
Author:
DaanvandenBergh
Message:

Update to version 6.3.2 from GitHub

Location:
host-webfonts-local
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • host-webfonts-local/tags/6.3.2/host-webfonts-local.php

    r3494951 r3495221  
    44 * Plugin URI: https://daan.dev/wordpress/omgf/
    55 * Description: Increase GDPR/DSGVO compliance and leverage browser cache by automatically self-hosting Google Fonts.
    6  * Version: 6.3.1
     6 * Version: 6.3.2
    77 * Author: Daan from Daan.dev
    88 * Author URI: https://daan.dev
  • host-webfonts-local/tags/6.3.2/readme.txt

    r3494951 r3495221  
    44Requires at least: 5.9
    55Tested up to: 6.9
    6 Stable tag: 6.3.1
     6Stable tag: 6.3.2
    77Requires PHP: 7.3
    88License: GPLv2 or later
     
    8888
    8989== Changelog ==
     90
     91= 6.3.2 | March 31st, 2026 =
     92* Fixed: Uncaught Error: Call to undefined function is_plugin_active(), which was introduced in 6.3.1.
    9093
    9194= 6.3.1 =
  • host-webfonts-local/tags/6.3.2/src/Compatibility.php

    r3494951 r3495221  
    4646        new Compatibility\CachingPlugins();
    4747
    48         if ( is_plugin_active( 'cloudflare/cloudflare.php' ) ) {
    49             new Compatibility\Cloudflare();
    50         }
    51 
    5248        if ( defined( 'AVADA_VERSION' ) ) {
    5349            new Compatibility\Avada();
  • host-webfonts-local/tags/6.3.2/src/Compatibility/Cloudflare.php

    r3494951 r3495221  
    3333     */
    3434    public static function maybe_install_mu_plugin() {
     35        if ( ! function_exists( 'is_plugin_active' ) ) {
     36            require_once ABSPATH . 'wp-admin/includes/plugin.php';
     37        }
     38
    3539        if ( ! is_plugin_active( 'cloudflare/cloudflare.php' ) ) {
    3640            return true;
  • host-webfonts-local/trunk/host-webfonts-local.php

    r3494951 r3495221  
    44 * Plugin URI: https://daan.dev/wordpress/omgf/
    55 * Description: Increase GDPR/DSGVO compliance and leverage browser cache by automatically self-hosting Google Fonts.
    6  * Version: 6.3.1
     6 * Version: 6.3.2
    77 * Author: Daan from Daan.dev
    88 * Author URI: https://daan.dev
  • host-webfonts-local/trunk/readme.txt

    r3494951 r3495221  
    44Requires at least: 5.9
    55Tested up to: 6.9
    6 Stable tag: 6.3.1
     6Stable tag: 6.3.2
    77Requires PHP: 7.3
    88License: GPLv2 or later
     
    8888
    8989== Changelog ==
     90
     91= 6.3.2 | March 31st, 2026 =
     92* Fixed: Uncaught Error: Call to undefined function is_plugin_active(), which was introduced in 6.3.1.
    9093
    9194= 6.3.1 =
  • host-webfonts-local/trunk/src/Compatibility.php

    r3494951 r3495221  
    4646        new Compatibility\CachingPlugins();
    4747
    48         if ( is_plugin_active( 'cloudflare/cloudflare.php' ) ) {
    49             new Compatibility\Cloudflare();
    50         }
    51 
    5248        if ( defined( 'AVADA_VERSION' ) ) {
    5349            new Compatibility\Avada();
  • host-webfonts-local/trunk/src/Compatibility/Cloudflare.php

    r3494951 r3495221  
    3333     */
    3434    public static function maybe_install_mu_plugin() {
     35        if ( ! function_exists( 'is_plugin_active' ) ) {
     36            require_once ABSPATH . 'wp-admin/includes/plugin.php';
     37        }
     38
    3539        if ( ! is_plugin_active( 'cloudflare/cloudflare.php' ) ) {
    3640            return true;
Note: See TracChangeset for help on using the changeset viewer.