Skip to content

Commit

Permalink
firewall: fix alias truncation (up to 5k only)
Browse files Browse the repository at this point in the history
  • Loading branch information
fichtner committed Mar 23, 2016
1 parent 2592fab commit 877b317
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/etc/rc.php_ini_setup
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ implicit_flush = true
magic_quotes_gpc = Off
max_execution_time = 900
max_input_time = 1800
max_input_vars = 5000
register_argc_argv = On
register_long_arrays = Off
variables_order = "GPCS"
Expand Down
4 changes: 2 additions & 2 deletions src/www/firewall_aliases_edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -489,12 +489,12 @@ function toggleType() {
<input type="text" class="fld_detail" name="host_url[]" value="<?=$address;?>"/>
</td>
<td>
<input type="text" name="detail[]" value="<?= isset($detail_desc[$addressid])?$detail_desc[$addressid]:"";?>"?>
<input type="text" name="detail[]" value="<?= isset($detail_desc[$addressid])?$detail_desc[$addressid]:"";?>"/>
</td>
<td>
<?php if ($addressid ==0):
?>
<input type="text" class="input-sm" id="updatefreq" name="updatefreq" value="<?=$pconfig['updatefreq'];?>" >
<input type="text" class="input-sm" id="updatefreq" name="updatefreq" value="<?=$pconfig['updatefreq'];?>"/>
<?php endif;
?>
</td>
Expand Down

0 comments on commit 877b317

Please sign in to comment.