# HG changeset patch # User Matti Hamalainen # Date 1382440922 -10800 # Node ID 99e7569c9f4f03c085977af71cf81acfd87d9abc # Parent 0b27c591d620a8379a845ea86bd637814ba6d401 Change the default of some boolean settings. diff -r 0b27c591d620 -r 99e7569c9f4f createdb.php --- 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"),