Merge branch 'develop' into replace-app-with-apphelper

This commit is contained in:
Art4 2024-11-28 08:11:21 +00:00
commit 9c7066ae35
2 changed files with 13 additions and 5 deletions

View file

@ -846,7 +846,7 @@ class Media
}
/**
* Update post-media entries
* Update post-media entries by id
*
* @param array $fields
* @param int $id
@ -857,6 +857,18 @@ class Media
return DBA::update('post-media', $fields, ['id' => $id]);
}
/**
* Update post-media entries
*
* @param array $fields
* @param array $condition
* @return boolean
*/
public static function update(array $fields, array $condition): bool
{
return DBA::update('post-media', $fields, $condition);
}
/**
* Checks if media attachments are associated with the provided item ID.
*

View file

@ -27,9 +27,6 @@ class OpenSearch extends BaseModule
/** @var IManageConfigValues */
private $config;
/** @var App\baseUrl */
protected $baseUrl;
/** @var string */
private $basePath;
@ -39,7 +36,6 @@ class OpenSearch extends BaseModule
$this->config = $config;
$this->basePath = $basePath->getPath();
$this->baseUrl = $baseUrl;
}
/**