Plugin Directory

Changeset 2860025


Ignore:
Timestamp:
02/04/2023 07:40:28 AM (3 years ago)
Author:
termageddon
Message:

[1.3.1] Fixed issue related to wp_cron. Updated error logging to include timestamp.

Location:
termageddon-usercentrics
Files:
3 edited
19 copied

Legend:

Unmodified
Added
Removed
  • termageddon-usercentrics/tags/1.3.1/README.txt

    r2860001 r2860025  
    55Requires at least: 3.0.1
    66Tested up to: 6.1.1
    7 Stable tag: 1.3.0
     7Stable tag: 1.3.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2626
    2727== Changelog ==
     28
     29= 1.3.1 =
     30
     31-   [FIX] Fixed potential issue with wp_cron that could an issue downloading geolocation database.
    2832
    2933= 1.3.0 =
  • termageddon-usercentrics/tags/1.3.1/includes/class-termageddon-usercentrics.php

    r2860007 r2860025  
    426426        $error_logs = get_option( $error_log_option );
    427427        if ( false !== $error_logs ) {
    428             $error_logs[] = $error;
     428            $error_logs[] = gmdate( 'Y-m-d g:i:s T' ) . '   ' . $error;
    429429            update_option( $error_log_option, $error_logs );
    430430        } else {
  • termageddon-usercentrics/tags/1.3.1/termageddon-usercentrics.php

    r2860001 r2860025  
    1515 * Plugin Name:       Termageddon + Usercentrics
    1616 * Description:       Easily integrate the Usercentrics consent solution into your website while controlling visibility for logged in users and admins.
    17  * Version:           1.3.0
     17 * Version:           1.3.1
    1818 * Author:            Termageddon
    1919 * Author URI:        https://termageddon.com
     
    3434 * Rename this for your plugin and update it as you release new versions.
    3535 */
    36 define( 'TERMAGEDDON_COOKIE_VERSION', '1.3.0' );
     36define( 'TERMAGEDDON_COOKIE_VERSION', '1.3.1' );
    3737
    3838define( 'TERMAGEDDON_COOKIE_PLUGIN_PATH', dirname( __FILE__ ) );// No trailing slash.
  • termageddon-usercentrics/trunk/README.txt

    r2860001 r2860025  
    55Requires at least: 3.0.1
    66Tested up to: 6.1.1
    7 Stable tag: 1.3.0
     7Stable tag: 1.3.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2626
    2727== Changelog ==
     28
     29= 1.3.1 =
     30
     31-   [FIX] Fixed potential issue with wp_cron that could an issue downloading geolocation database.
    2832
    2933= 1.3.0 =
  • termageddon-usercentrics/trunk/includes/class-termageddon-usercentrics.php

    r2860007 r2860025  
    426426        $error_logs = get_option( $error_log_option );
    427427        if ( false !== $error_logs ) {
    428             $error_logs[] = $error;
     428            $error_logs[] = gmdate( 'Y-m-d g:i:s T' ) . '   ' . $error;
    429429            update_option( $error_log_option, $error_logs );
    430430        } else {
  • termageddon-usercentrics/trunk/termageddon-usercentrics.php

    r2860001 r2860025  
    1515 * Plugin Name:       Termageddon + Usercentrics
    1616 * Description:       Easily integrate the Usercentrics consent solution into your website while controlling visibility for logged in users and admins.
    17  * Version:           1.3.0
     17 * Version:           1.3.1
    1818 * Author:            Termageddon
    1919 * Author URI:        https://termageddon.com
     
    3434 * Rename this for your plugin and update it as you release new versions.
    3535 */
    36 define( 'TERMAGEDDON_COOKIE_VERSION', '1.3.0' );
     36define( 'TERMAGEDDON_COOKIE_VERSION', '1.3.1' );
    3737
    3838define( 'TERMAGEDDON_COOKIE_PLUGIN_PATH', dirname( __FILE__ ) );// No trailing slash.
Note: See TracChangeset for help on using the changeset viewer.