Skip to content

Commit

Permalink
Add PR #279 which fixes a ParseDown extra PHP 8.2 deprecation notice
Browse files Browse the repository at this point in the history
  • Loading branch information
erikmh authored and ryancramerdesign committed Feb 15, 2024
1 parent caa8e7e commit f801fef
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,8 @@ protected function buildFootnoteElement()
),
);

uasort($this->DefinitionData['Footnote'], 'self::sortFootnotes');
// RJC https://github.com/processwire/processwire/pull/279
uasort($this->DefinitionData['Footnote'], self::class . '::sortFootnotes');

foreach ($this->DefinitionData['Footnote'] as $definitionId => $DefinitionData)
{
Expand Down

0 comments on commit f801fef

Please sign in to comment.