Skip to content

Commit

Permalink
Merge pull request #1130 from drgrice1/bugfix/uninitialized-value-hotfix
Browse files Browse the repository at this point in the history
Fix an uninitialized value in the openDivSpan method of PGbasicmacros.pg (hotfix of #1127)
  • Loading branch information
Alex-Jordan authored Oct 2, 2024
2 parents 7149fcf + a1821f1 commit 10746b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions macros/core/PGbasicmacros.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1580,8 +1580,8 @@ sub openDivSpan {
WARN_MESSAGE("openDivSpan called with an invalid first argument. The entire call was discarded.");
return ();
}
my $option_ref = {};
my $html_attribs;
my $option_ref = {};
my $html_attribs = '';
if (ref($_[0]) eq 'HASH') {
$option_ref = shift;
$html_attribs = processDivSpanOptions($option_ref);
Expand Down

0 comments on commit 10746b1

Please sign in to comment.