diff options
author | jim-p <jimp@pfsense.org> | 2014-05-09 14:09:17 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2014-05-09 14:09:32 -0400 |
commit | d371fb794e94ea826515229d10c3dc1fccdec777 (patch) | |
tree | 572c78d63402369055da21cbd784a6d10a6b5bde /config | |
parent | 4cad83f73d3ad96601fb0aade27280ff6f5f8510 (diff) | |
download | pfsense-packages-d371fb794e94ea826515229d10c3dc1fccdec777.tar.gz pfsense-packages-d371fb794e94ea826515229d10c3dc1fccdec777.tar.bz2 pfsense-packages-d371fb794e94ea826515229d10c3dc1fccdec777.zip |
Fix call-time pass-by-reference in checkmk, bump
Diffstat (limited to 'config')
-rw-r--r-- | config/checkmk-agent/checkmk.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/checkmk-agent/checkmk.xml b/config/checkmk-agent/checkmk.xml index 120b6634..2b4f6996 100644 --- a/config/checkmk-agent/checkmk.xml +++ b/config/checkmk-agent/checkmk.xml @@ -41,7 +41,7 @@ <requirements>Describe your package requirements here</requirements> <faq>Currently there are no FAQ items provided.</faq> <name>checkmk</name> - <version>0.5</version> + <version>0.1.1</version> <title>Check_mk Agent</title> <include_file>/usr/local/pkg/checkmk.inc</include_file> <additional_files_needed> @@ -110,7 +110,7 @@ <custom_php_command_before_form> </custom_php_command_before_form> <custom_php_validation_command> - checkmk_validate_input($_POST, &$input_errors); + checkmk_validate_input($_POST, $input_errors); </custom_php_validation_command> <custom_delete_php_command> sync_package_checkmk(); |