diff options
author | bmeeks8 <bmeeks8@bellsouth.net> | 2014-04-29 18:52:22 -0400 |
---|---|---|
committer | bmeeks8 <bmeeks8@bellsouth.net> | 2014-04-29 18:52:22 -0400 |
commit | e92e5316b6452be27f6e4d6a10629562fbe160ee (patch) | |
tree | 9e2ef36db991bc8967ef91af3a70c0cc772d3da3 /config/nmap | |
parent | f8efb383a351681cbffe2a4a873d3635b108d2b3 (diff) | |
parent | 51e511281754e3b9ae3c73b3df67b74fc11ca3c0 (diff) | |
download | pfsense-packages-e92e5316b6452be27f6e4d6a10629562fbe160ee.tar.gz pfsense-packages-e92e5316b6452be27f6e4d6a10629562fbe160ee.tar.bz2 pfsense-packages-e92e5316b6452be27f6e4d6a10629562fbe160ee.zip |
Merge branch 'master' of https://github.com/pfsense/pfsense-packages
Diffstat (limited to 'config/nmap')
-rw-r--r-- | config/nmap/nmap.inc | 2 | ||||
-rw-r--r-- | config/nmap/nmap.xml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/config/nmap/nmap.inc b/config/nmap/nmap.inc index 18708159..272f27ef 100644 --- a/config/nmap/nmap.inc +++ b/config/nmap/nmap.inc @@ -28,7 +28,7 @@ POSSIBILITY OF SUCH DAMAGE. */ -function nmap_custom_php_validation_command($post, $input_errors) { +function nmap_custom_php_validation_command($post, & $input_errors) { global $_POST, $savemsg, $config; if (empty($_POST['hostname'])) { $input_errors[] = gettext("You must enter an IP address to scan."); diff --git a/config/nmap/nmap.xml b/config/nmap/nmap.xml index 4034222a..b07b3982 100644 --- a/config/nmap/nmap.xml +++ b/config/nmap/nmap.xml @@ -46,7 +46,7 @@ <requirements>Describe your package requirements here</requirements> <faq>Currently there are no FAQ items provided.</faq> <name>nmap</name> - <version>6.01</version> + <version>6.40_2 pkg v1.2.1</version> <title>Diagnostics: NMap</title> <savetext>Scan</savetext> <preoutput>yes</preoutput> @@ -120,6 +120,6 @@ nmap_custom_add_php_command(); </custom_add_php_command> <custom_php_validation_command> - nmap_custom_php_validation_command($_POST, &$input_errors); + nmap_custom_php_validation_command($_POST, $input_errors); </custom_php_validation_command> </packagegui> |