From a32f329d71f43df93faadf8bdb9d67ed5eebb1a3 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Tue, 26 Oct 2010 10:05:12 -0400
Subject: [PATCH] Use yes / no for ssl query in updater instead of y / n

---
 install/update.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/install/update.php b/install/update.php
index ced040b..fb4df83 100644
--- a/install/update.php
+++ b/install/update.php
@@ -308,7 +308,7 @@
 $conf['apache']['vhost_port'] = $inst->free_query('ISPConfig Port', $ispconfig_port_number);
 
 // $ispconfig_ssl_default = (is_ispconfig_ssl_enabled() == true)?'y':'n';
-if(strtolower($inst->simple_query('Create new ISPConfig SSL certificate',array('y','n'),'n')) == 'y') {
+if(strtolower($inst->simple_query('Create new ISPConfig SSL certificate',array('yes','no'),'no')) == 'yes') {
 	$inst->make_ispconfig_ssl_cert();
 }
 

--
Gitblit v1.9.1