misc fixes

This commit is contained in:
notfire 2025-03-10 20:45:47 -04:00
parent 43e18b3d89
commit f41a3dcb13
No known key found for this signature in database
GPG key ID: 3AFDACAAB4E56B16
2 changed files with 2 additions and 1 deletions

View file

@ -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";

View file

@ -13,7 +13,7 @@ CREATE TABLE data (
isrespondedto BOOLEAN NOT NULL,
responsetext TEXT,
responsetime TIMESTAMPTZ,
isprivread BOOLEAN NOT NULL
isprivread BOOLEAN
);
";