N°3803 Fix error when opening dashboard page with non admin user

This commit is contained in:
Pierre Goiffon
2021-03-09 12:32:18 +01:00
parent 570b012000
commit fa7d316dbf
2 changed files with 17 additions and 10 deletions

View File

@@ -10,7 +10,10 @@ namespace Combodo\iTop\Application\UI\Base\Component\Dashlet;
class DashletFactory
{
public static function MakeForDashletBadge(string $sClassIconUrl, string $sHyperlink, string $iCount, string $sClassLabel, string $sCreateActionUrl = '', string $sCreateActionLabel = '', array $aRefreshParams = [])
public static function MakeForDashletBadge(
string $sClassIconUrl, string $sHyperlink, string $iCount, string $sClassLabel, ?string $sCreateActionUrl = '',
?string $sCreateActionLabel = '', array $aRefreshParams = []
)
{
return new DashletBadge($sClassIconUrl, $sHyperlink, $iCount, $sClassLabel, $sCreateActionUrl, $sCreateActionLabel, $aRefreshParams);
}