diff options
author | Daniel Stefan Haischt <dsh@pfsense.org> | 2007-01-04 14:39:23 +0000 |
---|---|---|
committer | Daniel Stefan Haischt <dsh@pfsense.org> | 2007-01-04 14:39:23 +0000 |
commit | 55b6ad84bb898c20f30cdf5d4c94c04cb21ebd22 (patch) | |
tree | f1376fd3bd1e2f1f98284e460967a34174e45487 /packages/freenas/www/services_rsyncd.php | |
parent | 6586c1a580e42dc73e639d071f20a6f037d3b2f4 (diff) | |
download | pfsense-packages-55b6ad84bb898c20f30cdf5d4c94c04cb21ebd22.tar.gz pfsense-packages-55b6ad84bb898c20f30cdf5d4c94c04cb21ebd22.tar.bz2 pfsense-packages-55b6ad84bb898c20f30cdf5d4c94c04cb21ebd22.zip |
* bug fixing
* issues not fixed: services_samba.php and disks_manage_tools.php do have layouting issues
Diffstat (limited to 'packages/freenas/www/services_rsyncd.php')
-rw-r--r-- | packages/freenas/www/services_rsyncd.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/freenas/www/services_rsyncd.php b/packages/freenas/www/services_rsyncd.php index 39a581be..e95cbb8c 100644 --- a/packages/freenas/www/services_rsyncd.php +++ b/packages/freenas/www/services_rsyncd.php @@ -231,14 +231,14 @@ echo $pfSenseHead->getHTML(); <tr> <td width="22%" valign="top" class="vncellreq"><?= gettext("TCP port"); ?></td> <td width="78%" class="vtable"> - <input name="port" type="text" class="formfld" id="port" size="20" value="<?=htmlspecialchars($pconfig['port']);?>" /> + <input name="port" type="text" class="formfld unknown" id="port" size="20" value="<?=htmlspecialchars($pconfig['port']);?>" /> <br /><?= gettext("Alternate TCP port."); ?> </td> </tr> <tr> <td width="22%" valign="top" class="vncellreq"><?= gettext("Maximum connections"); ?></td> <td width="78%" class="vtable"> - <input name="maxcon" type="text" class="formfld" id="maxcon" size="20" value="<?=htmlspecialchars($pconfig['maxcon']);?>" /> + <input name="maxcon" type="text" class="formfld unknown" id="maxcon" size="20" value="<?=htmlspecialchars($pconfig['maxcon']);?>" /> <br /><?= gettext("Maximum number of simultaneous connections. Default is 0 (unlimited)"); ?> </td> </tr> |