diff options
author | Renato Botelho <renato@netgate.com> | 2015-11-16 14:32:38 -0200 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2015-11-16 14:32:42 -0200 |
commit | 0251c7a9d9a32aa52948689c9ce9fd747e5c66fa (patch) | |
tree | 63b5247d9a89d5d71a3ce9d616866fa79dc7e266 | |
parent | a8b2bcdaffc7b1f30fa82799f90e15d3c8c93a26 (diff) | |
download | pfsense-packages-0251c7a9d9a32aa52948689c9ce9fd747e5c66fa.tar.gz pfsense-packages-0251c7a9d9a32aa52948689c9ce9fd747e5c66fa.tar.bz2 pfsense-packages-0251c7a9d9a32aa52948689c9ce9fd747e5c66fa.zip |
Make sure config item is an array before try to foreach. Bump version 1.0.8
-rw-r--r-- | config/systempatches/patches.inc | 5 | ||||
-rw-r--r-- | config/systempatches/systempatches.xml | 2 | ||||
-rw-r--r-- | pkg_config.10.xml | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/config/systempatches/patches.inc b/config/systempatches/patches.inc index 92825799..1c6ea4ba 100644 --- a/config/systempatches/patches.inc +++ b/config/systempatches/patches.inc @@ -175,6 +175,11 @@ function is_github_url($url) { function bootup_apply_patches() { global $config; + if (!isset($config['installedpackages']['patches']['item']) || + !is_array($config['installedpackages']['patches']['item'])) { + $config['installedpackages']['patches']['item'] = array(); + } + $a_patches = &$config['installedpackages']['patches']['item']; foreach ($a_patches as $patch) { diff --git a/config/systempatches/systempatches.xml b/config/systempatches/systempatches.xml index 61f3df84..01501df7 100644 --- a/config/systempatches/systempatches.xml +++ b/config/systempatches/systempatches.xml @@ -43,7 +43,7 @@ </copyright> <description>System Patches applies patches supplied by the user to the firewall.</description> <name>System Patches</name> - <version>1.0.6</version> + <version>1.0.8</version> <title>System: Patches</title> <include_file>/usr/local/pkg/patches.inc</include_file> <menu> diff --git a/pkg_config.10.xml b/pkg_config.10.xml index 5904697b..78b56b5b 100644 --- a/pkg_config.10.xml +++ b/pkg_config.10.xml @@ -1437,7 +1437,7 @@ <internal_name>System_Patches</internal_name> <descr>A package to apply and maintain custom system patches.</descr> <maintainer>jimp@pfsense.org</maintainer> - <version>1.0.7</version> + <version>1.0.8</version> <category>System</category> <status>RELEASE</status> <config_file>https://packages.pfsense.org/packages/config/systempatches/systempatches.xml</config_file> |