Skip to content

Commit

Permalink
Ensure links to Mostly Static Pages include the base URL (CFM-501)
Browse files Browse the repository at this point in the history
  • Loading branch information
arlen committed Mar 13, 2026
1 parent 7a6b649 commit 3c80634
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/MostlyStaticPages/columns.inc
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ $rowActions = [
[
'icon' => 'arrow_outward',
'label' => __d('operation', 'visit.msp'),
'callbackUrl' => function($entity) {
return '/' . $entity->co_id . '/' . $entity->name;
'callbackUrl' => function($entity) use ($vv_base_url) {
return $vv_base_url . '/' . $entity->name;
}
]
];

0 comments on commit 3c80634

Please sign in to comment.