From 0ed2c0c2c241814619ed30761978393cbda94a04 Mon Sep 17 00:00:00 2001 From: Retro_Guy Date: Sat, 2 Nov 2024 07:40:13 -0700 Subject: [PATCH] Update faq.php to use css. --- Rocksolid_Light/common/faq.php | 84 +++++++++++++++++----------------- 1 file changed, 43 insertions(+), 41 deletions(-) diff --git a/Rocksolid_Light/common/faq.php b/Rocksolid_Light/common/faq.php index 50bb639..14a6f4e 100644 --- a/Rocksolid_Light/common/faq.php +++ b/Rocksolid_Light/common/faq.php @@ -3,10 +3,10 @@ /* * CHANGE THE LINE BELOW TO 'installed = true once you have edited this filter */ - $installed = true; + $installed = false; // Set this to your administrative email address - $admin = "admin@novabbs.com"; + $admin = "admin@example.com"; include "config.inc.php"; include "../spoolnews/newsportal.php"; @@ -14,11 +14,14 @@ $title .= " - Privacy and FAQ"; include "head.inc"; if(!$installed) { - echo '

'; - echo 'ADMIN: Please edit the file "faq.php" in your SITE/common directory to match your needs,
'; - echo 'and change "$installed = false" to "$installed = true" '; + echo '
'; + echo '

Admin Notice:

'; + echo '

'; + echo 'ADMIN: Please edit the file "faq.php" in your SITE/common directory to match your needs.

'; + echo 'Change "$installed = false" to "$installed = true"
'; echo 'to remove this notice and display your page.'; - echo '

'; + echo ''; // Privacy - echo '

Privacy:

'; - echo ''; - - echo 'This server does not place your ip address in the headers of messages.
'; - echo 'There is a header specific to each user that is obfuscated to allow others to block, but is not personally identifiable.
'; - echo 'Passwords are never stored on the server but email address is stored.
'; - echo 'We do not share any user data with anyone outside of our servers.
'; - echo '
'; - echo '
'; + echo '

Privacy:

'; + echo '

'; + echo 'This server does not place your ip address in the headers of messages.
'; + echo 'There is a header specific to each user that is obfuscated to allow others to block, but is not personally identifiable.
'; + echo 'Passwords are never stored on the server but email address is stored.
'; + echo 'We do not share any user data with anyone outside of our servers.
'; + echo '
'; + echo '

'; // Abuse - echo '

Abuse:

'; - echo ''; - echo 'Spamming, trolling, forging etc. will all be addressed once the admin becomes aware this is taking place.
'; - echo 'You may notify ' . $admin . ' with issues.
'; - echo 'Forging complaints must be sent by the one who is being forged.
'; - echo '
'; + echo '

Abuse:

'; + echo '

'; + echo 'Spamming, trolling, forging etc. will all be addressed once the admin becomes aware this is taking place.
'; + echo 'You may notify ' . $admin . ' with issues.
'; + echo 'Forging complaints must be sent by the one who is being forged.
'; + echo '
'; - echo 'Articles or users will not be removed for political/social/etc. opinions you (or I) don’t agree with.
'; - echo 'Please use the block filter for articles or users you do not wish to see.
'; - echo 'Articles considered illegal in the jurisdiction of the admin (U.S.) may be removed for legal reasons.
'; - echo '
'; - echo '
'; + echo 'Articles or users will not be removed for political/social/etc. opinions you (or I) don’t agree with.
'; + echo 'Please use the block filter for articles or users you do not wish to see.
'; + echo 'Articles considered illegal in the jurisdiction of the admin (U.S.) may be removed for legal reasons.
'; + echo '
'; + echo '

'; // Posting Restrictions - echo '

Posting Restrictions:

'; - echo ''; - echo 'Posting requires an account. No account is required for reading articles.
'; - echo 'Limits are placed on number of groups in crossposts, and all articles are filtered through a spam filter.
'; + echo '

Posting Restrictions:

'; + echo '

'; + echo 'Posting requires an account. No account is required for reading articles.
'; + echo 'Limits are placed on number of groups in crossposts, and all articles are filtered through a spam filter.
'; - echo 'Limits on the number of posts per hour may be imposed. If you reach this limit you should be notified how long to wait.
'; - echo 'Other restrictions may also be imposed including common crossposting abuse.
'; - echo '
'; - echo '
'; + echo 'Limits on the number of posts per hour may be imposed. If you reach this limit you should be notified how long to wait.
'; + echo 'Other restrictions may also be imposed including common crossposting abuse.
'; + echo '
'; + echo '

'; // Filtering - echo '

Filtering:

'; - echo ''; - echo 'Incoming messages are filtered by the backend NNTP server.
'; - echo 'This is meant to keep groups useable, and is NOT meant to censor speech.
'; - echo '
'; - echo '
'; - echo '

'; + echo '

Filtering:

'; + echo '

'; + echo 'Incoming messages are filtered by the backend NNTP server.
'; + echo 'This is meant to keep groups useable, and is NOT meant to censor speech.
'; + echo '
'; + echo '

'; + echo '

'; include "../spoolnews/tail.inc"; echo '';