Version Description
- Making sure that all setcookie as flagged as HTTPOnly
Download this release
Release Info
Developer | vasyltech |
Plugin | Advanced Access Manager |
Version | 5.9.8.1 |
Comparing to | |
See all releases |
Code changes from version 5.9.8 to 5.9.8.1
- aam.php +2 -2
- application/Backend/Feature/Subject/User.php +2 -1
- readme.txt +4 -1
aam.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* Plugin Name: Advanced Access Manager
|
5 |
* Description: Collection of features to manage your WordPress website authentication, authorization and monitoring
|
6 |
-
* Version: 5.9.8
|
7 |
* Author: Vasyl Martyniuk <vasyl@vasyltech.com>
|
8 |
* Author URI: https://vasyltech.com
|
9 |
* Text Domain: advanced-access-manager
|
@@ -66,7 +66,7 @@ class AAM {
|
|
66 |
*
|
67 |
* @access public
|
68 |
*/
|
69 |
-
|
70 |
$this->_user = $user;
|
71 |
}
|
72 |
|
3 |
/**
|
4 |
* Plugin Name: Advanced Access Manager
|
5 |
* Description: Collection of features to manage your WordPress website authentication, authorization and monitoring
|
6 |
+
* Version: 5.9.8.1
|
7 |
* Author: Vasyl Martyniuk <vasyl@vasyltech.com>
|
8 |
* Author URI: https://vasyltech.com
|
9 |
* Text Domain: advanced-access-manager
|
66 |
*
|
67 |
* @access public
|
68 |
*/
|
69 |
+
public function setUser(AAM_Core_Subject $user) {
|
70 |
$this->_user = $user;
|
71 |
}
|
72 |
|
application/Backend/Feature/Subject/User.php
CHANGED
@@ -161,7 +161,8 @@ class AAM_Backend_Feature_Subject_User {
|
|
161 |
time() - YEAR_IN_SECONDS,
|
162 |
'/',
|
163 |
parse_url(get_bloginfo('url'), PHP_URL_HOST),
|
164 |
-
is_ssl()
|
|
|
165 |
);
|
166 |
}
|
167 |
|
161 |
time() - YEAR_IN_SECONDS,
|
162 |
'/',
|
163 |
parse_url(get_bloginfo('url'), PHP_URL_HOST),
|
164 |
+
is_ssl(),
|
165 |
+
true
|
166 |
);
|
167 |
}
|
168 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: vasyltech
|
|
3 |
Tags: access control, membership, backend menu, user role, restricted content, security, jwt
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.2.2
|
6 |
-
Stable tag: 5.9.8
|
7 |
|
8 |
All you need to manage access to you WordPress websites on frontend, backend and API levels for any role, user or visitors.
|
9 |
|
@@ -80,6 +80,9 @@ https://www.youtube.com/watch?v=mj5Xa_Wc16Y
|
|
80 |
|
81 |
== Changelog ==
|
82 |
|
|
|
|
|
|
|
83 |
= 5.9.8 =
|
84 |
* Enhanced Access Policy with additional markers
|
85 |
* Fixed minor PHP warnings caused by other plugins incompatibility
|
3 |
Tags: access control, membership, backend menu, user role, restricted content, security, jwt
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.2.2
|
6 |
+
Stable tag: 5.9.8.1
|
7 |
|
8 |
All you need to manage access to you WordPress websites on frontend, backend and API levels for any role, user or visitors.
|
9 |
|
80 |
|
81 |
== Changelog ==
|
82 |
|
83 |
+
= 5.9.8.1 =
|
84 |
+
* Making sure that all setcookie as flagged as HTTPOnly
|
85 |
+
|
86 |
= 5.9.8 =
|
87 |
* Enhanced Access Policy with additional markers
|
88 |
* Fixed minor PHP warnings caused by other plugins incompatibility
|