Plugin Directory

Changeset 3066072


Ignore:
Timestamp:
04/06/2024 06:44:31 PM (23 months ago)
Author:
jimmitchell
Message:

fix admin session check site health critical issue

Location:
jmitch-tinylytics
Files:
2 edited
15 copied

Legend:

Unmodified
Added
Removed
  • jmitch-tinylytics/tags/1.1.1/jmitch-tinylytics.php

    r3061270 r3066072  
    1010 * Requires at least: 4.6
    1111 * Test up to: 6.5
    12  * Version: 1.1.0
     12 * Version: 1.1.1
    1313 * Requires PHP: 5.6.20
    1414 * Text Domain: jmitch-tinylytics
     
    3636if ( ! defined( 'ABSPATH' )) die();
    3737
    38 define( 'TINYLYTICS__VERSION', '1.1.0' );
     38define( 'TINYLYTICS__VERSION', '1.1.1' );
    3939
    4040// Hook functions into WordPress
     
    368368function jmitch_tinylytics_start_session() {
    369369    if(!session_id()) {
    370         session_start();
     370        session_start( ['read_and_close' => true,] );
    371371    }
    372372    if ( current_user_can( 'manage_options' ) ) {
  • jmitch-tinylytics/tags/1.1.1/readme.txt

    r3061270 r3066072  
    1010Requires at least: 4.6
    1111Tested up to: 6.5
    12 Stable tag: 1.1.0
    13 Version:    1.1.0
     12Stable tag: 1.1.1
     13Version:    1.1.1
    1414Requires PHP: 5.6.20
    1515Text Domain: jmitch-tinylytics
     
    142142If you like Tinylytics, please take a moment to [give a 5-star rating](https://wordpress.org/support/plugin/jmitch-tinylytics/reviews/?rate=5#new-post). It helps to keep development and support going strong. Thank you!
    143143
     144**Version 1.1.1 (04-06-2024)**
     145
     146* Fix an issue where the admin session check would cause Site Health to show a critical issue.
     147
    144148**Version 1.1.0 (03-07-2024)**
    145149
  • jmitch-tinylytics/trunk/jmitch-tinylytics.php

    r3061270 r3066072  
    1010 * Requires at least: 4.6
    1111 * Test up to: 6.5
    12  * Version: 1.1.0
     12 * Version: 1.1.1
    1313 * Requires PHP: 5.6.20
    1414 * Text Domain: jmitch-tinylytics
     
    3636if ( ! defined( 'ABSPATH' )) die();
    3737
    38 define( 'TINYLYTICS__VERSION', '1.1.0' );
     38define( 'TINYLYTICS__VERSION', '1.1.1' );
    3939
    4040// Hook functions into WordPress
     
    368368function jmitch_tinylytics_start_session() {
    369369    if(!session_id()) {
    370         session_start();
     370        session_start( ['read_and_close' => true,] );
    371371    }
    372372    if ( current_user_can( 'manage_options' ) ) {
  • jmitch-tinylytics/trunk/readme.txt

    r3061270 r3066072  
    1010Requires at least: 4.6
    1111Tested up to: 6.5
    12 Stable tag: 1.1.0
    13 Version:    1.1.0
     12Stable tag: 1.1.1
     13Version:    1.1.1
    1414Requires PHP: 5.6.20
    1515Text Domain: jmitch-tinylytics
     
    142142If you like Tinylytics, please take a moment to [give a 5-star rating](https://wordpress.org/support/plugin/jmitch-tinylytics/reviews/?rate=5#new-post). It helps to keep development and support going strong. Thank you!
    143143
     144**Version 1.1.1 (04-06-2024)**
     145
     146* Fix an issue where the admin session check would cause Site Health to show a critical issue.
     147
    144148**Version 1.1.0 (03-07-2024)**
    145149
Note: See TracChangeset for help on using the changeset viewer.