diff options
author | Renato Botelho <renato@netgate.com> | 2015-11-16 14:56:53 -0200 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2015-11-16 14:58:30 -0200 |
commit | 59d256a17cfc9151a3336360f5df72a2056fae01 (patch) | |
tree | 289792e69437f54df63cf9340bd13baecbd23c5e /src/etc/inc/pkg-utils.inc | |
parent | 261d5071e2eb4bbc218a13fb501eece40308f0df (diff) | |
download | pfsense-59d256a17cfc9151a3336360f5df72a2056fae01.zip pfsense-59d256a17cfc9151a3336360f5df72a2056fae01.tar.gz |
Fix typo in variable name
Diffstat (limited to 'src/etc/inc/pkg-utils.inc')
-rw-r--r-- | src/etc/inc/pkg-utils.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/inc/pkg-utils.inc b/src/etc/inc/pkg-utils.inc index f2dad80..d8ebf58 100644 --- a/src/etc/inc/pkg-utils.inc +++ b/src/etc/inc/pkg-utils.inc @@ -1173,7 +1173,7 @@ function get_system_pkg_version() { $pkg_name = $meta_pkg; foreach ($info as $item) { - if ($item['name'] == $base_pkg) { + if ($item['name'] == $meta_pkg) { $pkg_info = $item; } } |