Skip to content

Commit

Permalink
fix: return typecasting
Browse files Browse the repository at this point in the history
  • Loading branch information
jackd248 committed Nov 8, 2024
1 parent dd4995c commit ebbdc02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Utility/ContentUtility.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public static function getExtensionRecord(?string $table, ?int $uid): array|bool
if (!$table && !$uid) {
return false;
}
return (bool)BackendUtility::getRecord($table, $uid);
return BackendUtility::getRecord($table, $uid);
}

public static function clearStatusOfExtensionRecords(string $table, int $status): void
Expand Down

0 comments on commit ebbdc02

Please sign in to comment.