Skip to content

Commit

Permalink
[FOLLOWUP] Add type declaration for new argument
Browse files Browse the repository at this point in the history
Resolves: #102451
Releases: main, 12.4
Change-Id: I50944fe4eb4aa1557c6289f9ae8eefe67717fb75
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/83101
Reviewed-by: Oliver Bartsch <bo@cedev.de>
Tested-by: Oliver Bartsch <bo@cedev.de>
Tested-by: core-ci <typo3@b13.com>
  • Loading branch information
o-ba committed Mar 1, 2024
1 parent 02a7c96 commit e01b305
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typo3/sysext/backend/Classes/Utility/BackendUtility.php
Expand Up @@ -1157,7 +1157,7 @@ public static function getThumbnailUrl(int $fileId, array $configuration): strin
* @param bool $preferNavTitle Prefers the 'nav_title' if available over the 'title' (nessesary for Tree with options.pageTree.showNavTitle = 1)
* @return string
*/
public static function titleAttribForPages($row, $perms_clause = '', $includeAttrib = true, $preferNavTitle = false)
public static function titleAttribForPages($row, $perms_clause = '', $includeAttrib = true, bool $preferNavTitle = false)
{
if (!isset($row['uid'])) {
return '';
Expand Down

0 comments on commit e01b305

Please sign in to comment.