From e137821b94ff0f74273933360ddfa887b68eee4f Mon Sep 17 00:00:00 2001 From: Michael Erdely Date: Tue, 31 Dec 2024 14:43:47 -0500 Subject: [PATCH] add what's new to help page --- src/help.php | 3 ++- src/templates/help.tpl | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/src/help.php b/src/help.php index 338689b..74b7b6a 100644 --- a/src/help.php +++ b/src/help.php @@ -54,11 +54,12 @@ if (!empty($_POST["action"])) { } try { - $stmt = $smarty->dbh()->prepare("SELECT show_helptext FROM {$opt["table_prefix"]}users WHERE userid = ?"); + $stmt = $smarty->dbh()->prepare("SELECT email, show_helptext FROM {$opt["table_prefix"]}users WHERE userid = ?"); $stmt->bindParam(1, $userid, PDO::PARAM_INT); $stmt->execute(); if ($row = $stmt->fetch()) { + $smarty->assign('email', $row["email"]); $smarty->assign('show_helptext', $row["show_helptext"]); $_SESSION['show_helptext'] = $row["show_helptext"]; } diff --git a/src/templates/help.tpl b/src/templates/help.tpl index 98b49cc..b92d63e 100644 --- a/src/templates/help.tpl +++ b/src/templates/help.tpl @@ -75,6 +75,24 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +
+
+
What's New
+
+
    +
  • 2024-12-31: Items can be marked "Public" and shared with others via +
    + + +
    +
  • +
  • 2024-12-31: Marking items as received archives them instead of deletes them
  • +
  • 2024-12-31: Items can be archived and the Item Archive can be viewed under the profile icon (top-right)
  • +
  • 2024-12-17: You are automatically a shopper for your family members
  • +
+
+
+
Gift Registry Help
@@ -141,5 +159,25 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
{include file='footer.tpl'} +