changeset 119:99e7569c9f4f

Change the default of some boolean settings.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 22 Oct 2013 14:22:02 +0300
parents 0b27c591d620
children 2c594958050e
files createdb.php
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/createdb.php	Tue Oct 22 14:21:40 2013 +0300
+++ b/createdb.php	Tue Oct 22 14:22:02 2013 +0300
@@ -20,13 +20,13 @@
   "admTimeout"       => array(VT_INT, 15, "Administration interface timeout in minutes"),
 
   "showAdmin"        => array(VT_BOOL, false, "Always show administration interface link on the menu"),
-  "showAttendees"    => array(VT_BOOL, false, "Show attendees list"),
+  "showAttendees"    => array(VT_BOOL, true, "Show attendees list"),
   "allowRegister"    => array(VT_BOOL, false, "Enable event registration"),
   "allowVoting"      => array(VT_BOOL, false, "Enable voting (individual compos must be enabled as well)"),
 
   "showResults"      => array(VT_BOOL, false, "Enable results page"),
   "showResultsASCII" => array(VT_BOOL, true,  "Show results as ASCII instead of HTML table"),
-  "showResAuthors"   => array(VT_BOOL, false, "Show entry authors on results page"),
+  "showResAuthors"   => array(VT_BOOL, true, "Show entry authors on results page"),
 
   "requireEMail"     => array(VT_BOOL, false, "Require e-mail address in registrations"),