From 036fcfbd4cd2b656927eff490f9bd62114e907d8 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 26 Dec 2014 14:00:26 +0000 Subject: [PATCH] Settings tidyup --- settings.fragment.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/settings.fragment.php b/settings.fragment.php index 3bc2423..ef10c8b 100644 --- a/settings.fragment.php +++ b/settings.fragment.php @@ -40,6 +40,12 @@ $users = [ "user" => "873ac9ffea4dd04fa719e8920cd6938f0c23cd678af330939cff53c3d2855f34" //cheese ]; +//contact details for the site administrator. Since user can only be added by editing this file, people will need a contact address to use to ask for an account. Displayed at the bottom of the page, and will be appropriatly obfusticateed to deter spammers. +$admindetails = [ + "name" => "Administrator", + "email" => "admin@localhost" +]; + //array of links and display text to display at the top of the site $navlinks = [ [ "Home", "index.php" ], @@ -57,12 +63,6 @@ $navlinks = [ [ "Help", "index.php?action=help" ] ]; -//contact details for the site administrator. Since user can only be added by editing this file, people will need a contact address to use to ask for an account. Displayed at the bottom of the page, and will be appropriatly obfusticateed to deter spammers. -$admindetails = [ - "name" => "Administrator", - "email" => "admin@localhost" -]; - //string of css to include $css = "body { font-family: sans-serif; color: #333333; background: #f3f3f3; } textarea[name=content] { display: block; width: 100%; height: 35rem; }