From f41a3dcb13fc45fb0575576f715de466a548be7a Mon Sep 17 00:00:00 2001 From: notfire Date: Mon, 10 Mar 2025 20:45:47 -0400 Subject: [PATCH] misc fixes --- config.example.php | 1 + setup.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config.example.php b/config.example.php index 43c5777..9f10707 100644 --- a/config.example.php +++ b/config.example.php @@ -11,6 +11,7 @@ $pageTitle = "the cool qna"; $pageDomainEnabled = True; $pageProto = "https"; +$pagePath = "/qna"; $pageDomain = "example.com"; $pageDomainOther = $pageDomain; // you can comment out and change this to a subdomain you want to "go back to". eg your site is me.example.org but you want it to say example.org //$pageDomainOther = "me.example.com"; diff --git a/setup.php b/setup.php index 3791d77..211734e 100644 --- a/setup.php +++ b/setup.php @@ -13,7 +13,7 @@ CREATE TABLE data ( isrespondedto BOOLEAN NOT NULL, responsetext TEXT, responsetime TIMESTAMPTZ, - isprivread BOOLEAN NOT NULL + isprivread BOOLEAN ); ";