Skip to content

Commit

Permalink
[Core] Public page missing title fix (#7121)
Browse files Browse the repository at this point in the history
Fix public pages with missing an HTML title because the template is using the incorrect variable name.
  • Loading branch information
laemtl authored Nov 12, 2020
1 parent 0bea754 commit 3ab2af2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smarty/templates/public_layout.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{$page_title}</title>
<title>{$study_title}</title>
<link rel="stylesheet" href="{$baseurl}/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="{$baseurl}/css/public_layout.css">
<link type="image/x-icon" rel="icon" href="{$baseurl}/images/favicon.ico">
Expand Down

0 comments on commit 3ab2af2

Please sign in to comment.