Skip to content

Commit

Permalink
Merge pull request #60 from manuelgerber/master
Browse files Browse the repository at this point in the history
bigbluebutton failure in update because of incompatibleclass methods
  • Loading branch information
jeph864 authored Aug 28, 2024
2 parents 94de878 + 0f77070 commit 6f31e54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions guest.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ public static function initIlias($client_id=null, $client_token=null): void
* Function; initGlobal($a_name, $a_class, $a_source_file)
* Derive from protected to public...
*
* @see \ilInitialisation::initGlobal($a_name, $a_class, $a_source_file)
* @see \ilInitialisation::initGlobal($a_name, $a_class, $a_source_file, $destroy_existing)
*/
public static function initGlobal($a_name, $a_class, $a_source_file = null): void
public static function initGlobal($a_name, $a_class, $a_source_file = null, ?bool $destroy_existing = false): void
{
parent::initGlobal($a_name, $a_class, $a_source_file);
parent::initGlobal($a_name, $a_class, $a_source_file, $destroy_existing);
}

/**
Expand Down

0 comments on commit 6f31e54

Please sign in to comment.