Skip to content
Snippets Groups Projects
Commit 0c4333ae authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[TASK] Release version 5.5.4

parent 9e32751f
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,6 @@ use TYPO3\CMS\Core\Resource\Exception\InsufficientFolderReadPermissionsException
use TYPO3\CMS\Core\Resource\Exception\InsufficientFolderWritePermissionsException;
use TYPO3\CMS\Core\Resource\File;
use TYPO3\CMS\Core\Resource\Folder;
use TYPO3\CMS\Core\Resource\ProcessedFile;
use TYPO3\CMS\Core\Resource\ResourceFactory;
use TYPO3\CMS\Core\Site\SiteFinder;
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
......@@ -816,11 +815,12 @@ class JoblistController extends ActionController {
/**
* Gets a file in a folder.
*
* (Backwards compatible with TYPO3 10, where the Folder did not have a getFile() method yet).
*
* @param string $fileName
* @param Folder $folder
* @return null|File|ProcessedFile
* @return File|null
*/
protected function getFileInFolder(string $fileName, Folder $folder): ?File {
if (version_compare(VersionNumberUtility::getCurrentTypo3Version(), '11.0.0', '>=')) {
......
......@@ -93,9 +93,9 @@ class PluginRenderer implements \TYPO3\CMS\Backend\View\PageLayoutViewDrawItemHo
*/
protected function adaptPluginHeaderContent(&$headerContent, $row): void {
$headerContent = '<h4>' . $this->getPluginNameForHeaderContent(
(int) $row['pid'],
$row['list_type']
) . $headerContent . '</h4>';
(int) $row['pid'],
$row['list_type']
) . $headerContent . '</h4>';
}
/**
......
......@@ -6,7 +6,7 @@
"license": [
"GPL-2.0-or-later"
],
"version": "5.5.3",
"version": "5.5.4",
"support": {
"issues": "https://gitlab.sgalinski.de/typo3/sg_jobs"
},
......
......@@ -4,7 +4,7 @@ $EM_CONF['sg_jobs'] = [
'title' => 'Jobs',
'description' => 'Manage and display your Job offers.',
'category' => 'plugin',
'version' => '5.5.3',
'version' => '5.5.4',
'state' => 'stable',
'uploadfolder' => FALSE,
'createDirs' => '',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment