Skip to content

Commit

Permalink
Add petition "start" action to $isActivePetition boolean in default.p…
Browse files Browse the repository at this point in the history
…hp (CFM-31) (#218)
  • Loading branch information
arlen authored and Ioannis committed Dec 15, 2024
1 parent 2acb6b1 commit e0fd533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/layout/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
$bodyClasses = $controller_stripped . ' ' .$action_stripped;
$isCoSelectView = $controller_stripped == 'cos' && $action_stripped == 'select';
$isDashboard = $controller_stripped == 'dashboards' && $action_stripped == 'dashboard';
$isActivePetition = $vv_action == 'dispatch' || $vv_action == 'resume';
$isActivePetition = $vv_action == 'start' || $vv_action == 'dispatch' || $vv_action == 'resume';
$generateHomeLink = (!$isCoSelectView && !empty($vv_cur_co));

// add further body classes as needed
Expand Down

0 comments on commit e0fd533

Please sign in to comment.