Plugin Directory

Changeset 3272757


Ignore:
Timestamp:
04/14/2025 07:56:49 PM (12 months ago)
Author:
logtivity
Message:

Fix fatal error on new installs

Location:
logtivity
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • logtivity/tags/3.1.9/Admin/Logtivity_Options.php

    r3272661 r3272757  
    100100    public function getApiKey(): string
    101101    {
    102         return $this->getOption('logtivity_site_api_key');
     102        return (string)$this->getOption('logtivity_site_api_key');
    103103    }
    104104
  • logtivity/tags/3.1.9/logtivity.php

    r3272661 r3272757  
    55 * Plugin URI:        https://logtivity.io
    66 * Description:       Record activity logs and errors logs across all your WordPress sites.
    7  * Version:           3.1.8
     7 * Version:           3.1.9
    88 * Author:            Logtivity
    99 * Text Domain:       logtivity
    1010 * Requires at least: 4.7
    1111 * Tested up to:      6.7
    12  * Stable tag:        3.1.8
     12 * Stable tag:        3.1.9
    1313 * Requires PHP:      7.4
    1414 * License:           GPLv2 or later
     
    4848     * @var string
    4949     */
    50     protected string $version = '3.1.8';
     50    protected string $version = '3.1.9';
    5151
    5252    /**
  • logtivity/tags/3.1.9/readme.txt

    r3272661 r3272757  
    55Requires at least: 4.7
    66Tested up to: 6.7.2
    7 Stable tag: 3.1.8
     7Stable tag: 3.1.9
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    262262
    263263== Changelog ==
     264
     265= 3.1.9 =
     266
     267* Fix fatal error on new installs
     268
     269_Release Date - Monday, April 14 2025_
    264270
    265271= 3.1.8 =
  • logtivity/trunk/Admin/Logtivity_Options.php

    r3272661 r3272757  
    100100    public function getApiKey(): string
    101101    {
    102         return $this->getOption('logtivity_site_api_key');
     102        return (string)$this->getOption('logtivity_site_api_key');
    103103    }
    104104
  • logtivity/trunk/logtivity.php

    r3272661 r3272757  
    55 * Plugin URI:        https://logtivity.io
    66 * Description:       Record activity logs and errors logs across all your WordPress sites.
    7  * Version:           3.1.8
     7 * Version:           3.1.9
    88 * Author:            Logtivity
    99 * Text Domain:       logtivity
    1010 * Requires at least: 4.7
    1111 * Tested up to:      6.7
    12  * Stable tag:        3.1.8
     12 * Stable tag:        3.1.9
    1313 * Requires PHP:      7.4
    1414 * License:           GPLv2 or later
     
    4848     * @var string
    4949     */
    50     protected string $version = '3.1.8';
     50    protected string $version = '3.1.9';
    5151
    5252    /**
  • logtivity/trunk/readme.txt

    r3272661 r3272757  
    55Requires at least: 4.7
    66Tested up to: 6.7.2
    7 Stable tag: 3.1.8
     7Stable tag: 3.1.9
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    262262
    263263== Changelog ==
     264
     265= 3.1.9 =
     266
     267* Fix fatal error on new installs
     268
     269_Release Date - Monday, April 14 2025_
    264270
    265271= 3.1.8 =
Note: See TracChangeset for help on using the changeset viewer.