From df0df6b1a3884cc6b4958b790f9404ed65610127 Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 15 May 2024 16:46:58 -0400 Subject: [PATCH] add title --- protected/src/templates/include/header.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/protected/src/templates/include/header.php b/protected/src/templates/include/header.php index d7d8ba6..1af9fe0 100644 --- a/protected/src/templates/include/header.php +++ b/protected/src/templates/include/header.php @@ -1,7 +1,12 @@ - <?php echo htmlspecialchars( $results['pageTitle'] )?> + +<?php + $title = $results['pageTitle'] ?? ""; + echo htmlspecialchars( $title ); +?> +