From 99e5f46afba26e7090e2ce24fe1f8e6c5769adc6 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur <eldy@users.sourceforge.net> Date: Tue, 20 Jul 2010 18:59:53 +0000 Subject: [PATCH] Fix: Remove warning --- htdocs/install/fileconf.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/install/fileconf.php b/htdocs/install/fileconf.php index fede5598795..3f39866c941 100644 --- a/htdocs/install/fileconf.php +++ b/htdocs/install/fileconf.php @@ -201,7 +201,7 @@ print $langs->trans("Examples").":<br>"; <tr> <td valign="top" class="label"> <?php echo $langs->trans("ForceHttps"); ?> -<td class="label" valign="top"><input type="checkbox" name="main_force_https"<?php if ($force_install_mainforcehttps) print ' checked="on"'; ?>></td> +<td class="label" valign="top"><input type="checkbox" name="main_force_https"<?php if (! empty($force_install_mainforcehttps)) print ' checked="on"'; ?>></td> <td class="comment"> <?php echo $langs->trans("CheckToForceHttps"); ?> </td> -- GitLab