Changeset 3495221
- Timestamp:
- 03/31/2026 07:11:53 AM (5 days ago)
- Location:
- host-webfonts-local
- Files:
-
- 8 edited
- 1 copied
-
tags/6.3.2 (copied) (copied from host-webfonts-local/trunk)
-
tags/6.3.2/host-webfonts-local.php (modified) (1 diff)
-
tags/6.3.2/readme.txt (modified) (2 diffs)
-
tags/6.3.2/src/Compatibility.php (modified) (1 diff)
-
tags/6.3.2/src/Compatibility/Cloudflare.php (modified) (1 diff)
-
trunk/host-webfonts-local.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Compatibility.php (modified) (1 diff)
-
trunk/src/Compatibility/Cloudflare.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
host-webfonts-local/tags/6.3.2/host-webfonts-local.php
r3494951 r3495221 4 4 * Plugin URI: https://daan.dev/wordpress/omgf/ 5 5 * Description: Increase GDPR/DSGVO compliance and leverage browser cache by automatically self-hosting Google Fonts. 6 * Version: 6.3. 16 * Version: 6.3.2 7 7 * Author: Daan from Daan.dev 8 8 * Author URI: https://daan.dev -
host-webfonts-local/tags/6.3.2/readme.txt
r3494951 r3495221 4 4 Requires at least: 5.9 5 5 Tested up to: 6.9 6 Stable tag: 6.3. 16 Stable tag: 6.3.2 7 7 Requires PHP: 7.3 8 8 License: GPLv2 or later … … 88 88 89 89 == 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. 90 93 91 94 = 6.3.1 = -
host-webfonts-local/tags/6.3.2/src/Compatibility.php
r3494951 r3495221 46 46 new Compatibility\CachingPlugins(); 47 47 48 if ( is_plugin_active( 'cloudflare/cloudflare.php' ) ) {49 new Compatibility\Cloudflare();50 }51 52 48 if ( defined( 'AVADA_VERSION' ) ) { 53 49 new Compatibility\Avada(); -
host-webfonts-local/tags/6.3.2/src/Compatibility/Cloudflare.php
r3494951 r3495221 33 33 */ 34 34 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 35 39 if ( ! is_plugin_active( 'cloudflare/cloudflare.php' ) ) { 36 40 return true; -
host-webfonts-local/trunk/host-webfonts-local.php
r3494951 r3495221 4 4 * Plugin URI: https://daan.dev/wordpress/omgf/ 5 5 * Description: Increase GDPR/DSGVO compliance and leverage browser cache by automatically self-hosting Google Fonts. 6 * Version: 6.3. 16 * Version: 6.3.2 7 7 * Author: Daan from Daan.dev 8 8 * Author URI: https://daan.dev -
host-webfonts-local/trunk/readme.txt
r3494951 r3495221 4 4 Requires at least: 5.9 5 5 Tested up to: 6.9 6 Stable tag: 6.3. 16 Stable tag: 6.3.2 7 7 Requires PHP: 7.3 8 8 License: GPLv2 or later … … 88 88 89 89 == 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. 90 93 91 94 = 6.3.1 = -
host-webfonts-local/trunk/src/Compatibility.php
r3494951 r3495221 46 46 new Compatibility\CachingPlugins(); 47 47 48 if ( is_plugin_active( 'cloudflare/cloudflare.php' ) ) {49 new Compatibility\Cloudflare();50 }51 52 48 if ( defined( 'AVADA_VERSION' ) ) { 53 49 new Compatibility\Avada(); -
host-webfonts-local/trunk/src/Compatibility/Cloudflare.php
r3494951 r3495221 33 33 */ 34 34 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 35 39 if ( ! is_plugin_active( 'cloudflare/cloudflare.php' ) ) { 36 40 return true;
Note: See TracChangeset
for help on using the changeset viewer.