Skip to content

Commit 7af04cb

Browse files
authored
Merge pull request #327 from GM-Alex/next
Bump version 2.2.9
2 parents 3c73bad + 01125bd commit 7af04cb

8 files changed

+16
-13
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "User Access Manager plugin for Wordpress",
44
"type": "wordpress-plugin",
55
"license": "GPL-2.0",
6-
"version": "2.2.8",
6+
"version": "2.2.9",
77
"authors": [
88
{
99
"name": "Alexander Schneider",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "user-access-manager",
3-
"version": "2.2.8",
3+
"version": "2.2.9",
44
"description": "[![Build Status](https://travis-ci.org/GM-Alex/user-access-manager.svg)](https://travis-ci.org/GM-Alex/user-access-manager)",
55
"main": "index.js",
66
"directories": {

readme.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
44
Tags: admin, access, member area, members, member, member access, page, pages, post, posts, private, privacy, restrict, user, user access manager, user management
55
Requires at least: 4.7
66
Tested up to: 5.6
7-
Stable tag: 2.2.8
7+
Stable tag: 2.2.9
88

99
With the "User Access Manager"-plugin you can manage the access to your posts, pages and files.
1010

@@ -59,6 +59,9 @@ Here you found the changes in each version.
5959

6060
Version Date Changes
6161

62+
2.2.9 2021/02/24 Type fixes for Yoast seo plugin.
63+
Fix some other type issues.
64+
6265
2.2.8 2021/02/21 Some cleanup.
6366
Type fixes for the short controller.
6467
Fix some possible php notices and warnings.

src/Controller/Backend/SetupController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ public function repairDatabaseAction()
195195
public function deleteDatabaseBackupAction()
196196
{
197197
$this->verifyNonce(self::SETUP_DELETE_BACKUP_NONCE);
198-
$version = $this->getRequestParameter('uam_delete_backup');
198+
$version = (string) $this->getRequestParameter('uam_delete_backup');
199199

200200
if ($this->setupHandler->getDatabaseHandler()->deleteBackup($version) === true) {
201201
$this->setUpdateMessage(TXT_UAM_DELETE_DATABASE_BACKUP_SUCCESS);

src/Controller/Backend/TermObjectController.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ public function addTermColumnsHeader(array $defaults): array
4141

4242
/**
4343
* The function for the manage_categories_custom_column action.
44-
* @param string $content Content for the column. Multiple filter calls are possible, so we need to append.
44+
* @param string|null $content Content for the column. Multiple filter calls are possible, so we need to append.
4545
* @param string $columnName The column name.
4646
* @param int|string $id The id.
47-
* @return string $content with content appended for self::COLUMN_NAME column
47+
* @return string|null $content with content appended for self::COLUMN_NAME column
4848
* @throws UserGroupTypeException
4949
*/
50-
public function addTermColumn(string $content, string $columnName, $id): string
50+
public function addTermColumn(?string $content, string $columnName, $id): ?string
5151
{
5252
if ($columnName === self::COLUMN_NAME) {
5353
$term = $this->objectHandler->getTerm($id);

src/Controller/Frontend/FrontendController.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,14 @@ public function showAncestors(array $ancestors, $objectId, string $objectType):
126126

127127
/**
128128
* Filter for Yoast SEO Plugin
129-
* Hides the url from the site map if the user has no access
130-
* @param string $url The url to check
129+
* Hides the url from the site map if the user has no access
130+
* @param string|array $url The url to check
131131
* @param string $type The object type
132132
* @param object $object The object
133-
* @return false|string
133+
* @return false|string
134134
* @throws UserGroupTypeException
135135
*/
136-
public function getWpSeoUrl(string $url, string $type, object $object)
136+
public function getWpSeoUrl($url, string $type, object $object)
137137
{
138138
return ($this->accessHandler->checkObjectAccess($type, $object->ID) === true) ? $url : false;
139139
}

src/UserAccessManager.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
*/
5151
class UserAccessManager
5252
{
53-
const VERSION = '2.2.8';
53+
const VERSION = '2.2.9';
5454
const DB_VERSION = '1.6.1';
5555

5656
/**

user-access-manager.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: User Access Manager
44
* Plugin URI: https://wordpress.org/plugins/user-access-manager/
55
* Author URI: https://twitter.com/GM_Alex
6-
* Version: 2.2.8
6+
* Version: 2.2.9
77
* Author: Alexander Schneider
88
* Description: Manage the access to your posts, pages, categories and files.
99
* Text Domain: user-access-manager

0 commit comments

Comments
 (0)