Skip to content

Commit

Permalink
Fix syntax error in patches. Fixes #9844
Browse files Browse the repository at this point in the history
(cherry picked from commit 88c249e)
  • Loading branch information
jim-p committed Oct 24, 2019
1 parent 7e956b6 commit fff4cf8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sysutils/pfSense-pkg-System_Patches/Makefile
Expand Up @@ -2,7 +2,7 @@

PORTNAME= pfSense-pkg-System_Patches
PORTVERSION= 1.2
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= sysutils
MASTER_SITES= # empty
DISTFILES= # empty
Expand Down
Expand Up @@ -238,9 +238,9 @@ function patchlog($msg) {
function patch_descr($id) {
global $config;
$a_patches = &$config['installedpackages']['patches']['item'];
$descr = " (" . gettext("ID") . ": {$a_patches[$id]['uniqid']}");
$descr = " (" . gettext("ID") . ": {$a_patches[$id]['uniqid']}";
if (isset($a_patches[$id]['descr'])) {
$descr .= ", " . gettext("DESCR") . ": {$a_patches[$id]['descr']}");
$descr .= ", " . gettext("DESCR") . ": {$a_patches[$id]['descr']}";
}
$descr .= ")";
return $descr;
Expand Down

0 comments on commit fff4cf8

Please sign in to comment.