diff options
author | doktornotor <notordoktor@gmail.com> | 2015-08-11 23:34:17 +0200 |
---|---|---|
committer | doktornotor <notordoktor@gmail.com> | 2015-08-11 23:34:17 +0200 |
commit | fb7a854584d2767abfa04e4b13636579f03709be (patch) | |
tree | 970889fdf9b4fe6b1f931138504f1c0e30d3f925 /config/systempatches | |
parent | ed6c546579d9da6d14356c7ec6dd7748d5ffcb3a (diff) | |
download | pfsense-packages-fb7a854584d2767abfa04e4b13636579f03709be.tar.gz pfsense-packages-fb7a854584d2767abfa04e4b13636579f03709be.tar.bz2 pfsense-packages-fb7a854584d2767abfa04e4b13636579f03709be.zip |
systempatches - some code style cosmetics
- Fix copyright header; add missing space.
Diffstat (limited to 'config/systempatches')
-rw-r--r-- | config/systempatches/system_patches_edit.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/systempatches/system_patches_edit.php b/config/systempatches/system_patches_edit.php index 9e1f7a49..9cde3e48 100644 --- a/config/systempatches/system_patches_edit.php +++ b/config/systempatches/system_patches_edit.php @@ -1,7 +1,9 @@ <?php /* system_patches_edit.php + part of pfSense (https://www.pfSense.org/) Copyright (C) 2012 Jim Pingle + Copyright (C) 2015 ESF, LLC All rights reserved. Redistribution and use in source and binary forms, with or without @@ -80,7 +82,7 @@ if ($_POST) { $pconfig = $_POST; /* input validation */ - if(empty($_POST['location'])) { + if (empty($_POST['location'])) { $reqdfields = explode(" ", "patch"); $reqdfieldsn = array(gettext("Patch Contents")); } else { |