Skip to content

Commit

Permalink
Fix dev/core#5278 - Missing page title on angular pages
Browse files Browse the repository at this point in the history
This regressed probably due to a combination of civicrm#28560 and civicrm#29694
  • Loading branch information
colemanw committed Jun 7, 2024
1 parent 06f913d commit 407f829
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/CRM/common/CMSPrint.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
{/if}
{else}
{if $pageTitle}
<div class="crm-title">
<div class="crm-title crm-page-title-wrapper">
<h1 class="title">{if $isDeleted}
<del>{/if}{$pageTitle}{if $isDeleted}</del>{/if}</h1>
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/CRM/common/joomla.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
{/if}

{if $pageTitle}
<div class="crm-title">
<div class="crm-title crm-page-title-wrapper">
<h1 class="title">{if $isDeleted}<del>{/if}{$pageTitle}{if $isDeleted}</del>{/if}</h1>
</div>
{/if}
Expand Down

0 comments on commit 407f829

Please sign in to comment.