Summary:
Incorrect parameter type casting
Detailed Description:
in CGExtensions.module.php approx line 1872
the line
public function ShowFormattedMessage(string $msg,bool $is_error = FALSE,bool
$title = null)
incorrectly sets the type of the variable $title to boolean
line should be
public function ShowFormattedMessage(string $msg,bool $is_error = FALSE,string
$title = null)