update app_name and use it in the footer

This commit is contained in:
Michael Erdely 2024-10-27 19:14:08 -04:00
parent e90f0d6d47
commit 10fc830f61
Signed by: mike
SSH key fingerprint: SHA256:ukbnfrRMaRYlBZXENtBTyO2jLnql5AA5m+SzZCfYQe0
2 changed files with 2 additions and 2 deletions

View file

@ -78,7 +78,7 @@ function getGlobalOptions() {
"email_xmailer" => "PHP/" . phpversion(), "email_xmailer" => "PHP/" . phpversion(),
/* Application name. */ /* Application name. */
"app_name" => "Gift Registry", "app_name" => "Gift Wishlist",
/* Whether or not to show brief blurbs in certain spots which describe how /* Whether or not to show brief blurbs in certain spots which describe how
features work. features work.

View file

@ -1,4 +1,4 @@
<footer class="bg-body-secondary text-center mt-4 p-3"> <footer class="bg-body-secondary text-center mt-4 p-3">
<p><b>Gift Registry</b><br /> <p><b>{$opt.app_name}</b><br />
<em>Inspired by <a href="https://github.com/generalpf/phpgiftreg">PHP Gift Registry version 2.1.2</a></em></p> <em>Inspired by <a href="https://github.com/generalpf/phpgiftreg">PHP Gift Registry version 2.1.2</a></em></p>
</footer> </footer>