Skip to content

Commit

Permalink
refs #40439, fixes import filename php8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
jimyhuang committed Apr 24, 2024
1 parent dc423ab commit 745ca01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CRM/Event/Import/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -665,12 +665,12 @@ static function encloseScrub(&$values, $enclosure = "'") {
}
}

function errorFileName($type) {
public static function errorFileName($type) {
$fileName = CRM_Import_Parser::errorFileName($type);
return $fileName;
}

function saveFileName($type) {
public static function saveFileName($type) {
$fileName = CRM_Import_Parser::saveFileName($type);
return $fileName;
}
Expand Down

0 comments on commit 745ca01

Please sign in to comment.