diff options
author | sullrich <sullrich@pfsense.org> | 2009-11-27 23:55:37 -0500 |
---|---|---|
committer | sullrich <sullrich@pfsense.org> | 2009-11-27 23:55:37 -0500 |
commit | d823b81c0844f0ca3cda15eecda7ca3208f5b4b5 (patch) | |
tree | 0c44c1ad6b433401cb8bd030613337e3c6e4c693 /usr/local/www | |
parent | 5f97f256fdfc72e7e9f257041c48d8bdd54eed42 (diff) | |
download | pfsense-d823b81c0844f0ca3cda15eecda7ca3208f5b4b5.zip pfsense-d823b81c0844f0ca3cda15eecda7ca3208f5b4b5.tar.gz |
Use long php notation opener
Diffstat (limited to 'usr/local/www')
-rwxr-xr-x | usr/local/www/services_captiveportal.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/services_captiveportal.php b/usr/local/www/services_captiveportal.php index 8788953..3f4613a 100755 --- a/usr/local/www/services_captiveportal.php +++ b/usr/local/www/services_captiveportal.php @@ -285,7 +285,7 @@ function enable_change(enable_change) { <tr> <td width="22%" valign="top" class="vncellreq">Interface</td> <td width="78%" class="vtable"> - <select name="cinterface[]" multiple="true" size="<?count($config['interfaces'])?>" class="formselect" id="cinterface"> + <select name="cinterface[]" multiple="true" size="<?php echo count($config['interfaces']); ?>" class="formselect" id="cinterface"> <?php $interfaces = get_configured_interface_with_descr(); foreach ($interfaces as $iface => $ifacename): ?> |