Skip to content

Commit

Permalink
FIX: wrong array key (#29317)
Browse files Browse the repository at this point in the history
Array key is 'moreinpopup' (set on line 1388)
  • Loading branch information
mc2rcanarslan authored Apr 11, 2024
1 parent 500381a commit e5da8f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/projet/class/project.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1325,7 +1325,7 @@ public function getTooltipContentArray($params)

$langs->load('projects');
$option = $params['option'] ?? '';
$moreinpopup = $params['morinpopup'] ?? '';
$moreinpopup = $params['moreinpopup'] ?? '';

$datas = [];
if ($option != 'nolink') {
Expand Down

0 comments on commit e5da8f8

Please sign in to comment.