aboutsummaryrefslogtreecommitdiffstats
path: root/config/systempatches
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2014-05-07 15:50:27 -0400
committerjim-p <jimp@pfsense.org>2014-05-07 15:50:27 -0400
commita1db63c131fab7259d1bc865abd279c51d20bbce (patch)
tree1ac09199b780911c5ce9dacace0b5ef6410e7599 /config/systempatches
parentc6c75ae5466c3d1690d6973006bda7a2f77c167f (diff)
downloadpfsense-packages-a1db63c131fab7259d1bc865abd279c51d20bbce.tar.gz
pfsense-packages-a1db63c131fab7259d1bc865abd279c51d20bbce.tar.bz2
pfsense-packages-a1db63c131fab7259d1bc865abd279c51d20bbce.zip
Fix call-time pass-by-reference in System Patches, bump version
Diffstat (limited to 'config/systempatches')
-rw-r--r--config/systempatches/system_patches.php2
-rw-r--r--config/systempatches/system_patches_edit.php6
2 files changed, 6 insertions, 2 deletions
diff --git a/config/systempatches/system_patches.php b/config/systempatches/system_patches.php
index 7fe860bd..793448d7 100644
--- a/config/systempatches/system_patches.php
+++ b/config/systempatches/system_patches.php
@@ -67,7 +67,7 @@ if ($_GET['act'] == "del") {
}
if (($_GET['act'] == "fetch") && ($a_patches[$_GET['id']])) {
- $savemsg = patch_fetch(& $a_patches[$_GET['id']]) ? gettext("Patch Fetched Successfully") : gettext("Patch Fetch Failed");
+ $savemsg = patch_fetch($a_patches[$_GET['id']]) ? gettext("Patch Fetched Successfully") : gettext("Patch Fetch Failed");
}
if (($_GET['act'] == "test") && ($a_patches[$_GET['id']])) {
$savemsg = patch_test_apply($a_patches[$_GET['id']]) ? gettext("Patch can be applied cleanly") : gettext("Patch can NOT be applied cleanly");
diff --git a/config/systempatches/system_patches_edit.php b/config/systempatches/system_patches_edit.php
index ffa2fe13..39d0f12a 100644
--- a/config/systempatches/system_patches_edit.php
+++ b/config/systempatches/system_patches_edit.php
@@ -86,7 +86,11 @@ if ($_POST) {
$reqdfieldsn = array(gettext("Description"),gettext("URL/Commit ID"));
}
- do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
+ $pf_version=substr(trim(file_get_contents("/etc/version")),0,3);
+ if ($pf_version < 2.1)
+ do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
+ else
+ do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
if (!empty($_POST['location']) && !is_commit_id($_POST['location']) && !is_URL($_POST['location'])) {
$input_errors[] = gettext("The supplied commit ID/URL appears to be invalid.");