Skip to content

Commit 6f2da07

Browse files
committed
Cleaned variable assignment to avoid variables side-by-side with no space.
1 parent 3e85c7e commit 6f2da07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ToolkitApi/ToolkitServiceXML.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ protected function getPgmTag($pgm, $lib, $function)
173173
// no hex/CCSID, so use short form of pgm tag
174174
// (For backward compability with pre-1.6.8 XMLSERVICE)
175175
$funcString = ($function) ? " func='$function'" : "";
176-
$pgmtag = "<pgm name='$pgm' lib='$lib'$opmString$funcString>";
176+
$pgmtag = "<pgm name='" . $pgm . "' lib='" . $lib . "' " . $opmString . $funcString . ">";
177177
}
178178

179179
return $pgmtag;

0 commit comments

Comments
 (0)