We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solved the following infuriating cryptic message:
File: ./system/Language/Core.php 'missingExtension' => 'The framework needs the following extension(s) installed and loaded: {0}.',
'missingExtension' => 'The framework needs the following extension(s) installed and loaded: {0}.',
File: ./system/Language/Language.php `protected function formatMessage($message, array $args = []) { if (! $this->intlSupport || $args === []) { // John_Betong - ADDED THE FOLLOWING $message = $args ? $message .= $args[0] : $message;
return $message; } if (is_array($message)) { foreach ($message as $index => $value) { $message[$index] = $this->formatMessage($value, $args); } return $message; } return MessageFormatter::formatMessage($this->locale, $message, $args);
}// endfunc `
The text was updated successfully, but these errors were encountered:
Already fixed by #4549
Sorry, something went wrong.
No branches or pull requests
Solved the following infuriating cryptic message:
File: ./system/Language/Core.php
'missingExtension' => 'The framework needs the following extension(s) installed and loaded: {0}.',
File: ./system/Language/Language.php
`protected function formatMessage($message, array $args = [])
{
if (! $this->intlSupport || $args === [])
{
// John_Betong - ADDED THE FOLLOWING
$message = $args ? $message .= $args[0] : $message;
}// endfunc
`
The text was updated successfully, but these errors were encountered: