Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGS-6317] Adds $admin property #251

Merged
merged 6 commits into from
Jun 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
**Contributors:** [getpantheon](https://profiles.wordpress.org/getpantheon), [outlandish josh](https://profiles.wordpress.org/outlandish-josh), [mpvanwinkle77](https://profiles.wordpress.org/mpvanwinkle77), [danielbachhuber](https://profiles.wordpress.org/danielbachhuber), [andrew.taylor](https://profiles.wordpress.org/andrew.taylor), [jazzs3quence](https://profiles.wordpress.org/jazzs3quence), [stovak](https://profiles.wordpress.org/stovak), [jspellman](https://profiles.wordpress.org/jspellman/)
**Tags:** comments, sessions
**Requires at least:** 4.7
**Tested up to:** 6.2
**Tested up to:** 6.2.2
**Stable tag:** 1.3.6-dev
**Requires PHP:** 5.4
**License:** GPLv2 or later
Expand Down Expand Up @@ -72,6 +72,7 @@ This mu-plugin will load WP Native PHP Sessions before all other plugins, while
## Changelog ##

### Latest ###
* Fixes PHP 8.2 deprecated dynamic property error [[#251](https://github.com/pantheon-systems/wp-native-php-sessions/pull/251)] (props @miguelaxcar)
* Update CONTRIBUTING.md [[#252](https://github.com/pantheon-systems/wp-native-php-sessions/pull/252)].
* Update informational Error message for the case of headers already sent [[#249](https://github.com/pantheon-systems/wp-native-php-sessions/pull/249)].
* Add pantheon-wp-coding-standards [[#247](https://github.com/pantheon-systems/wp-native-php-sessions/pull/247)].
Expand Down
7 changes: 7 additions & 0 deletions pantheon-sessions.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ class Pantheon_Sessions {
*/
private static $instance;

/**
* The admin instance.
*
* @var \Pantheon_Sessions\Admin
*/
private $admin;

/**
* Gets a copy of the singleton instance.
*
Expand Down
3 changes: 2 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: getpantheon, outlandish josh, mpvanwinkle77, danielbachhuber, andrew.taylor, jazzs3quence, stovak, jspellman
Tags: comments, sessions
Requires at least: 4.7
Tested up to: 6.2
Tested up to: 6.2.2
Stable tag: 1.3.6-dev
Requires PHP: 5.4
License: GPLv2 or later
Expand Down Expand Up @@ -70,6 +70,7 @@ This mu-plugin will load WP Native PHP Sessions before all other plugins, while

== Changelog ==
= Latest =
* Fixes PHP 8.2 deprecated dynamic property error [[#251](https://github.com/pantheon-systems/wp-native-php-sessions/pull/251)] (props @miguelaxcar)
* Update CONTRIBUTING.md [[#252](https://github.com/pantheon-systems/wp-native-php-sessions/pull/252)].
* Update informational Error message for the case of headers already sent [[#249](https://github.com/pantheon-systems/wp-native-php-sessions/pull/249)].
* Add pantheon-wp-coding-standards [[#247](https://github.com/pantheon-systems/wp-native-php-sessions/pull/247)].
Expand Down