Skip to content

Commit 64b7b86

Browse files
authored
Merge pull request #341 from GM-Alex/next
Bump version 2.2.15
2 parents dad32dd + 05d1b0c commit 64b7b86

8 files changed

+12
-10
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.14",
6+
"version": "2.2.15",
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.14",
3+
"version": "2.2.15",
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

+3-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.7
7-
Stable tag: 2.2.14
7+
Stable tag: 2.2.15
88

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

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

6060
Version Date Changes
6161

62+
2.2.15 2021/06/07 Fix possible type issues.
63+
6264
2.2.14 2021/04/21 Fix bulk edit.
6365
Fix permission issue.
6466
Fix redirect typing issue.

src/Controller/Frontend/PostController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ private function processPostContent(WP_Post $post): string
250250
*/
251251
private function processPost(WP_Post $post): ?WP_Post
252252
{
253-
$post->post_title .= $this->adminOutput($post->post_type, $post->ID);
253+
$post->post_title .= $this->adminOutput((string) $post->post_type, $post->ID);
254254

255255
if ($this->accessHandler->checkObjectAccess($post->post_type, $post->ID) === false) {
256256
if ($this->removePostFromList($post->post_type) === true) {

src/Controller/Frontend/RedirectController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -347,10 +347,10 @@ private function extractObjectTypeAndId($pageParams, ?string &$objectType, ?stri
347347
* Redirects to a page or to content.
348348
* @param array|null $headers The headers which are given from wordpress.
349349
* @param mixed $pageParams The params of the current page.
350-
* @return array
350+
* @return array|null
351351
* @throws UserGroupTypeException
352352
*/
353-
public function redirect(?array $headers, $pageParams): array
353+
public function redirect(?array $headers, $pageParams): ?array
354354
{
355355
$fileUrl = $this->getRequestParameter('uamgetfile');
356356
$fileType = $this->getRequestParameter('uamfiletype');

src/Controller/Frontend/TermController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ private function processTerm($term, &$isEmpty = null)
232232
return null;
233233
}
234234

235-
$term->name .= $this->adminOutput($term->taxonomy, $term->term_id, $term->name);
235+
$term->name .= $this->adminOutput((string) $term->taxonomy, $term->term_id, $term->name);
236236
$term->count = $this->getVisibleElementsCount($term->taxonomy, $term->term_id);
237237
$isEmpty = $this->isCategoryEmpty($term);
238238

@@ -328,7 +328,7 @@ public function showCustomMenu(array $items): array
328328
$showItems = [];
329329

330330
foreach ($items as $key => $item) {
331-
$item->title .= $this->adminOutput($item->object, $item->object_id, $item->title);
331+
$item->title .= $this->adminOutput((string) $item->object, $item->object_id, $item->title);
332332

333333
if ($this->objectHandler->isPostType($item->object) === true) {
334334
if ($this->processPostMenuItem($item) === false) {

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.14';
53+
const VERSION = '2.2.15';
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.14
6+
* Version: 2.2.15
77
* Requires PHP: 7.2
88
* Author: Alexander Schneider
99
* Description: Manage the access to your posts, pages, categories and files.

0 commit comments

Comments
 (0)