diff dbdefs.inc.php @ 1104:0a2117349f46

s/true/TRUE/g; s/false/FALSE/g;
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 14 May 2019 14:45:36 +0300
parents c731092a83b7
children 51f24cb35fc8
line wrap: on
line diff
--- a/dbdefs.inc.php	Tue May 14 14:12:42 2019 +0300
+++ b/dbdefs.inc.php	Tue May 14 14:45:36 2019 +0300
@@ -25,25 +25,25 @@
     "userTimeout"      => [VT_INT, 120, "User pages (voting) timeout in minutes"],
     "admTimeout"       => [VT_INT, 15, "Administration interface timeout in minutes"],
 
-    "showAdmin"        => [VT_BOOL, false, "Always show administration interface link on the menu"],
-    "showAttendees"    => [VT_BOOL, true, "Show attendees list"],
+    "showAdmin"        => [VT_BOOL, FALSE, "Always show administration interface link on the menu"],
+    "showAttendees"    => [VT_BOOL, TRUE, "Show attendees list"],
 
-    "showResults"      => [VT_BOOL, false, "Enable results page"],
+    "showResults"      => [VT_BOOL, FALSE, "Enable results page"],
 
-    "showInfoTextOnAbout" => [VT_BOOL, false, "Show site info HTML on About page"],
+    "showInfoTextOnAbout" => [VT_BOOL, FALSE, "Show site info HTML on About page"],
 
-    "requireEMail"     => [VT_BOOL, false, "Require e-mail address in registrations"],
-    "allowRegister"    => [VT_BOOL, false, "Enable event registration"],
+    "requireEMail"     => [VT_BOOL, FALSE, "Require e-mail address in registrations"],
+    "allowRegister"    => [VT_BOOL, FALSE, "Enable event registration"],
 
-    "allowVoting"      => [VT_BOOL, false, "Enable voting (individual compos must be enabled as well)"],
+    "allowVoting"      => [VT_BOOL, FALSE, "Enable voting (individual compos must be enabled as well)"],
   ],
 
   //
   // News related
   //
   "news" => [
-    "showNews"         => [VT_BOOL, true, "Enable News link on main menu + News page"],
-    "showNewsOnAbout"  => [VT_BOOL, true, "Show latest news item on About page"],
+    "showNews"         => [VT_BOOL, TRUE, "Enable News link on main menu + News page"],
+    "showNewsOnAbout"  => [VT_BOOL, TRUE, "Show latest news item on About page"],
 
     "msgNewsHeader"    => [VT_TEXT, "
 <h1>The FAPper's news outlet</h1>
@@ -54,7 +54,7 @@
   // Event / schedule information
   //
   "event" => [
-    "showSchedule"     => [VT_BOOL, true, "Enable Schedule link on main menu + Schedule page"],
+    "showSchedule"     => [VT_BOOL, TRUE, "Enable Schedule link on main menu + Schedule page"],
 
     "msgEventDescription" => [VT_TEXT, "
 <h1>Event program &amp; schedule</h1>
@@ -90,7 +90,7 @@
   // Competitions
   //
   "compos" => [
-    "showCompos"       => [VT_BOOL, true, "Enable Compos link on main menu + Compos page"],
+    "showCompos"       => [VT_BOOL, TRUE, "Enable Compos link on main menu + Compos page"],
   
     "msgCompoDescription" => [VT_TEXT, "
 <h1>General</h1>
@@ -270,7 +270,7 @@
   "compoCurrEntry"    => [VT_INT, 0, "Current / next compo entry to be shown"],
   
   // Not user-manageable
-  "tempSlideSet"      => [VT_BOOL, false, "Temporary slide set"],
+  "tempSlideSet"      => [VT_BOOL, FALSE, "Temporary slide set"],
 
   "activeSlideMode"   => [VT_INT, 0, "Current active slide display mode"],
   "activeSlide"       => [VT_INT, 0, "Current active slide"],
@@ -282,7 +282,7 @@
   "lastUpdate"        => [VT_INT, 0, "Timestamp of last slide update"],
 
   "screenCmd"         => [VT_STR, "", "Off-channel showscreen command"],
-  "screenCmdSet"      => [VT_BOOL, false, "Off-channel showscreen command has been set"],
+  "screenCmdSet"      => [VT_BOOL, FALSE, "Off-channel showscreen command has been set"],
 ];