Plugin Directory

Changeset 3355639


Ignore:
Timestamp:
09/03/2025 07:50:15 PM (7 months ago)
Author:
creativform
Message:

8.9.2

  • Fixed unexpected PHP errors
Location:
cf-geoplugin
Files:
506 added
5 edited

Legend:

Unmodified
Added
Removed
  • cf-geoplugin/trunk/CHANGELOG.txt

    r3354427 r3355639  
    11== Changelog ==
     2
     3= 8.9.2 =
     4* Fixed unexpected PHP errors
    25
    36= 8.9.1 =
  • cf-geoplugin/trunk/cf-geoplugin.php

    r3354427 r3355639  
    99 * Plugin URI:        https://wpgeocontroller.com/
    1010 * Description:       Unlock the power of location-based functionality of WordPress – The ultimate all-in-one geolocation plugin for WordPress.
    11  * Version:           8.9.1
     11 * Version:           8.9.2
    1212 * Requires at least: 6.0
    1313 * Requires PHP:      7.0
  • cf-geoplugin/trunk/inc/classes/Metabox.php

    r3270891 r3355639  
    631631            $url = CFGP_U::get_url();
    632632
    633             wp_enqueue_style(CFGP_NAME . '-fontawesome', CFGP_ASSETS . '/css/font-awesome.min.css', [], (string)CFGP_VERSION);
     633            wp_enqueue_style(CFGP_NAME . '-fontawesome', CFGP_ASSETS . '/css/fonts.min.css', [], (string)CFGP_VERSION);
    634634            wp_enqueue_style(CFGP_NAME . '-metabox', CFGP_ASSETS . '/css/style-metabox.css', [CFGP_NAME . '-fontawesome'], (string)CFGP_VERSION, false);
    635635
  • cf-geoplugin/trunk/inc/classes/OS_Helper.php

    r3354427 r3355639  
    214214    }
    215215
    216     private static function composeOsName(string $platform, bool $isWin11, bool $isWin10, string $ua): string
    217     {
     216    private static function composeOsName(?string $platform, bool $isWin11, bool $isWin10, string $ua): string
     217    {
     218        if(!$platform) {
     219            return 'Unknown';
     220        }
     221   
    218222        if ($platform === 'Windows') {
    219223            if ($isWin11) return 'Windows 11';
     
    229233        if ($platform === 'Android') return 'Android';
    230234        if ($platform === 'iOS')     return 'iOS';
     235       
    231236        return 'Unknown';
    232237    }
  • cf-geoplugin/trunk/readme.txt

    r3354427 r3355639  
    66Tested up to: 6.8
    77Requires PHP: 7.0
    8 Stable tag: 8.9.1
     8Stable tag: 8.9.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    415415== Changelog ==
    416416
     417= 8.9.2 =
     418* Fixed unexpected PHP errors
     419
    417420= 8.9.1 =
    418421* Added Client Hints (UA-CH) support for accurate detection
     
    525528== Upgrade Notice ==
    526529
     530= 8.9.2 =
     531* Fixed unexpected PHP errors
     532
    527533= 8.9.1 =
    528534* Added Client Hints (UA-CH) support for accurate detection
Note: See TracChangeset for help on using the changeset viewer.