Skip to content

Commit

Permalink
Fixed SSL setting always "on" error in globalsettings view
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey_ci@10335 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
dionet committed Jun 23, 2011
1 parent a34855b commit a6b8ac0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/views/admin/globalsettings.php
Expand Up @@ -288,9 +288,9 @@
$$this_opt = ' selected="selected"';
?><li><label for="force_ssl"><?php echo $clang->gT('Force HTTPS:');?></label>
<select name="force_ssl" id="force_ssl">
<option value="on" <?php echo $opt_force_ssl_on;?>'><?php echo $clang->gT('On');?></option>
<option value="off" <?php echo $opt_force_ssl_off;?>'><?php echo $clang->gT('Off');?></option>
.<option value="neither" '.$opt_force_ssl_neither.'><?php echo $clang->gT('Don\'t force on or off');?></option>
<option value="on" <?php echo $opt_force_ssl_on;?>><?php echo $clang->gT('On');?></option>
<option value="off" <?php echo $opt_force_ssl_off;?>><?php echo $clang->gT('Off');?></option>
<option value="neither" <?php echo $opt_force_ssl_neither;?>><?php echo $clang->gT('Don\'t force on or off');?></option>
</select></li>
<li><span style='font-size:0.7em;'><?php echo $warning_force_ssl;?></span></li>
<?php unset($thisforce_ssl,$opt_force_ssl_on,$opt_force_ssl_off,$opt_force_ssl_neither,$warning_force_ssl,$this_opt); ?>
Expand Down

0 comments on commit a6b8ac0

Please sign in to comment.