try to be php 8.1 compliant

This commit is contained in:
Jean-Christian Denis 2023-06-30 22:55:59 +02:00
parent 1ed4183550
commit e6d946d62f
Signed by: JcDenis
GPG key ID: 1B5B8C5B90B6C951
3 changed files with 14 additions and 7 deletions

View file

@ -386,7 +386,7 @@ class ManageFeed extends dcNsProcess
->items(array_merge(
dcCore::app()->adminurl->hiddenFormFields('admin.plugin.' . My::id(), [
'part' => 'feed',
'feed_id' => $v->id,
'feed_id' => (string) $v->id,
'action' => 'savefeed',
]),
[

View file

@ -52,8 +52,10 @@ class PostsFilter extends adminGenericFilterV2
/**
* Posts users select
*
* @return null|dcAdminFilter
*/
public function getPostUserFilter(): ?dcAdminFilter
public function getPostUserFilter()
{
$users = null;
@ -83,8 +85,10 @@ class PostsFilter extends adminGenericFilterV2
/**
* Posts categories select
*
* @return null|dcAdminFilter
*/
public function getPostCategoriesFilter(): ?dcAdminFilter
public function getPostCategoriesFilter()
{
$categories = null;
@ -135,8 +139,10 @@ class PostsFilter extends adminGenericFilterV2
/**
* Posts by month select
*
* @return null|dcAdminFilter
*/
public function getPostMonthFilter(): ?dcAdminFilter
public function getPostMonthFilter()
{
$dates = null;

View file

@ -770,8 +770,9 @@ class ZoneclearFeedServer
}
# Disable
} else {
dcCore::app()->auth = null;
dcCore::app()->auth = new dcAuth();
// auth on branch My goes readonly
//dcCore::app()->auth = null;
//dcCore::app()->auth = new dcAuth();
// restore current user
dcCore::app()->auth->checkUser($this->user ?? '');
}
@ -784,7 +785,7 @@ class ZoneclearFeedServer
*
* @return Parser|false The parsed feed
*/
public static function readFeed(string $url): false|Parser
public static function readFeed(string $url)
{
try {
$feed_reader = new Reader();