Skip to content

Commit

Permalink
Fix PHP 8.1 deprecation with null in implode.
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianbj committed Jan 16, 2022
1 parent b34b73f commit 734568f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ProcessAdminActions.module.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static function getModuleInfo() {
'title' => 'Admin Actions',
'summary' => 'Control panel for running various admin actions',
'author' => 'Adrian Jones',
'version' => '0.8.9',
'version' => '0.8.10',
'singular' => true,
'autoload' => false,
'icon' => 'wrench',
Expand Down Expand Up @@ -675,7 +675,7 @@ private function getFunctionCode($source, $functionName) {
}
$i++;
}
return "\t".implode(null,$accumulator);
return "\t".implode('', $accumulator);
}


Expand Down

0 comments on commit 734568f

Please sign in to comment.